mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
119 lines
3.1 KiB
JavaScript
119 lines
3.1 KiB
JavaScript
import { interpolateRgb as d3_interpolateRgb } from 'd3-interpolate';
|
|
|
|
import {
|
|
event as d3_event,
|
|
select as d3_select
|
|
} from 'd3-selection';
|
|
|
|
import { d3keybinding as d3_keybinding } from '../lib/d3.keybinding.js';
|
|
|
|
import { t } from '../util/locale';
|
|
import { modeSave } from '../modes';
|
|
import { svgIcon } from '../svg';
|
|
import { uiCmd } from './cmd';
|
|
import { uiTooltipHtml } from './tooltipHtml';
|
|
import { tooltip } from '../util/tooltip';
|
|
|
|
|
|
export function uiSave(context) {
|
|
var history = context.history(),
|
|
key = uiCmd('⌘S');
|
|
|
|
|
|
function saving() {
|
|
return context.mode().id === 'save';
|
|
}
|
|
|
|
|
|
function save() {
|
|
d3_event.preventDefault();
|
|
if (!context.inIntro() && !saving() && history.hasChanges()) {
|
|
context.enter(modeSave(context));
|
|
}
|
|
}
|
|
|
|
|
|
function getBackground(numChanges) {
|
|
var step;
|
|
if (numChanges === 0) {
|
|
return null;
|
|
} else if (numChanges <= 50) {
|
|
step = numChanges / 50;
|
|
return d3_interpolateRgb('#fff', '#ff8')(step); // white -> yellow
|
|
} else {
|
|
step = Math.min((numChanges - 50) / 50, 1.0);
|
|
return d3_interpolateRgb('#ff8', '#f88')(step); // yellow -> red
|
|
}
|
|
}
|
|
|
|
|
|
return function(selection) {
|
|
var numChanges = 0;
|
|
|
|
function updateCount() {
|
|
var _ = history.difference().summary().length;
|
|
if (_ === numChanges) return;
|
|
numChanges = _;
|
|
|
|
tooltipBehavior
|
|
.title(uiTooltipHtml(
|
|
t(numChanges > 0 ? 'save.help' : 'save.no_changes'), key)
|
|
);
|
|
|
|
var background = getBackground(numChanges);
|
|
|
|
button
|
|
.classed('disabled', numChanges === 0)
|
|
.classed('has-count', numChanges > 0)
|
|
.style('background', background);
|
|
|
|
button.select('span.count')
|
|
.text(numChanges)
|
|
.style('background', background)
|
|
.style('border-color', background);
|
|
}
|
|
|
|
|
|
var tooltipBehavior = tooltip()
|
|
.placement('bottom')
|
|
.html(true)
|
|
.title(uiTooltipHtml(t('save.no_changes'), key));
|
|
|
|
var button = selection
|
|
.append('button')
|
|
.attr('class', 'save col12 disabled')
|
|
.attr('tabindex', -1)
|
|
.on('click', save)
|
|
.call(tooltipBehavior);
|
|
|
|
button
|
|
.call(svgIcon('#icon-save', 'pre-text'))
|
|
.append('span')
|
|
.attr('class', 'label')
|
|
.text(t('save.title'));
|
|
|
|
button
|
|
.append('span')
|
|
.attr('class', 'count')
|
|
.text('0');
|
|
|
|
updateCount();
|
|
|
|
|
|
var keybinding = d3_keybinding('save')
|
|
.on(key, save, true);
|
|
|
|
d3_select(document)
|
|
.call(keybinding);
|
|
|
|
context.history()
|
|
.on('change.save', updateCount);
|
|
|
|
context
|
|
.on('enter.save', function() {
|
|
button.property('disabled', saving());
|
|
if (saving()) button.call(tooltipBehavior.hide);
|
|
});
|
|
};
|
|
}
|