Files
iD/modules/ui/tools/save.js
Quincy Morgan a1af118f0e Ensure locales and presets are loaded before the UI loads (close #7406)
Consolidate localization behavior and init to a coreLocalizer function and singleton
Explicitly support `en-US` locale
Rename coreData to coreFileFetcher and export a singleton rather than using a property of coreContext
Add `apiConnections` property of coreContext to simplify adding a source switcher
Replace some init functions with re-callable, promise-supporting `ensureLoaded` functions
Make coreContext itself load the UI if a container has been specified at init time
Fix code tests
2020-03-31 12:23:31 -07:00

138 lines
3.3 KiB
JavaScript

import { interpolateRgb as d3_interpolateRgb } from 'd3-interpolate';
import { event as d3_event } from 'd3-selection';
import { t } from '../../core/localizer';
import { modeSave } from '../../modes';
import { svgIcon } from '../../svg';
import { uiCmd } from '../cmd';
import { uiTooltip } from '../tooltip';
export function uiToolSave(context) {
var tool = {
id: 'save',
label: t('save.title')
};
var button = null;
var tooltipBehavior = null;
var history = context.history();
var key = uiCmd('⌘S');
var _numChanges = 0;
function isSaving() {
var mode = context.mode();
return mode && mode.id === 'save';
}
function isDisabled() {
return _numChanges === 0 || isSaving();
}
function save() {
d3_event.preventDefault();
if (!context.inIntro() && !isSaving() && history.hasChanges()) {
context.enter(modeSave(context));
}
}
function bgColor() {
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
}
}
function updateCount() {
var val = history.difference().summary().length;
if (val === _numChanges) return;
_numChanges = val;
if (tooltipBehavior) {
tooltipBehavior
.title(t(_numChanges > 0 ? 'save.help' : 'save.no_changes'))
.keys([key]);
}
if (button) {
button
.classed('disabled', isDisabled())
.style('background', bgColor(_numChanges));
button.select('span.count')
.text(_numChanges);
}
}
tool.render = function(selection) {
tooltipBehavior = uiTooltip()
.placement('bottom')
.title(t('save.no_changes'))
.keys([key])
.scrollContainer(context.container().select('.top-toolbar'));
button = selection
.append('button')
.attr('class', 'save disabled bar-button')
.on('click', save)
.call(tooltipBehavior);
button
.call(svgIcon('#iD-icon-save'));
button
.append('span')
.attr('class', 'count')
.attr('aria-hidden', 'true')
.text('0');
updateCount();
context.keybinding()
.on(key, save, true);
context.history()
.on('change.save', updateCount);
context
.on('enter.save', function() {
if (button) {
button
.classed('disabled', isDisabled());
if (isSaving()) {
button.call(tooltipBehavior.hide);
}
}
});
};
tool.uninstall = function() {
context.keybinding()
.off(key, true);
context.history()
.on('change.save', null);
context
.on('enter.save', null);
button = null;
tooltipBehavior = null;
};
return tool;
}