modules/ui/keepRight_editor.js (160 lines of code) (raw):
import { dispatch as d3_dispatch } from 'd3-dispatch';
import { select as d3_select } from 'd3-selection';
import { t } from '../core/localizer';
import { services } from '../services';
import { modeBrowse } from '../modes/browse';
import { svgIcon } from '../svg/icon';
import { uiKeepRightDetails } from './keepRight_details';
import { uiKeepRightHeader } from './keepRight_header';
import { uiViewOnKeepRight } from './view_on_keepRight';
import { utilNoAuto, utilRebind } from '../util';
export function uiKeepRightEditor(context) {
const dispatch = d3_dispatch('change');
const qaDetails = uiKeepRightDetails(context);
const qaHeader = uiKeepRightHeader(context);
let _qaItem;
function keepRightEditor(selection) {
const headerEnter = selection.selectAll('.header')
.data([0])
.enter()
.append('div')
.attr('class', 'header fillL');
headerEnter
.append('button')
.attr('class', 'close')
.on('click', () => context.enter(modeBrowse(context)))
.call(svgIcon('#iD-icon-close'));
headerEnter
.append('h3')
.html(t.html('QA.keepRight.title'));
let body = selection.selectAll('.body')
.data([0]);
body = body.enter()
.append('div')
.attr('class', 'body')
.merge(body);
const editor = body.selectAll('.qa-editor')
.data([0]);
editor.enter()
.append('div')
.attr('class', 'modal-section qa-editor')
.merge(editor)
.call(qaHeader.issue(_qaItem))
.call(qaDetails.issue(_qaItem))
.call(keepRightSaveSection);
const footer = selection.selectAll('.footer')
.data([0]);
footer.enter()
.append('div')
.attr('class', 'footer')
.merge(footer)
.call(uiViewOnKeepRight(context).what(_qaItem));
}
function keepRightSaveSection(selection) {
const isSelected = (_qaItem && _qaItem.id === context.selectedErrorID());
const isShown = (_qaItem && (isSelected || _qaItem.newComment || _qaItem.comment));
let saveSection = selection.selectAll('.qa-save')
.data(
(isShown ? [_qaItem] : []),
d => `${d.id}-${d.status || 0}`
);
// exit
saveSection.exit()
.remove();
// enter
const saveSectionEnter = saveSection.enter()
.append('div')
.attr('class', 'qa-save save-section cf');
saveSectionEnter
.append('h4')
.attr('class', '.qa-save-header')
.html(t.html('QA.keepRight.comment'));
saveSectionEnter
.append('textarea')
.attr('class', 'new-comment-input')
.attr('placeholder', t('QA.keepRight.comment_placeholder'))
.attr('maxlength', 1000)
.property('value', d => d.newComment || d.comment)
.call(utilNoAuto)
.on('input', changeInput)
.on('blur', changeInput);
// update
saveSection = saveSectionEnter
.merge(saveSection)
.call(qaSaveButtons);
function changeInput() {
const input = d3_select(this);
let val = input.property('value').trim();
if (val === _qaItem.comment) {
val = undefined;
}
// store the unsaved comment with the issue itself
_qaItem = _qaItem.update({ newComment: val });
const qaService = services.keepRight;
if (qaService) {
qaService.replaceItem(_qaItem); // update keepright cache
}
saveSection
.call(qaSaveButtons);
}
}
function qaSaveButtons(selection) {
const isSelected = (_qaItem && _qaItem.id === context.selectedErrorID());
let buttonSection = selection.selectAll('.buttons')
.data((isSelected ? [_qaItem] : []), d => d.status + d.id);
// exit
buttonSection.exit()
.remove();
// enter
const buttonEnter = buttonSection.enter()
.append('div')
.attr('class', 'buttons');
buttonEnter
.append('button')
.attr('class', 'button comment-button action')
.html(t.html('QA.keepRight.save_comment'));
buttonEnter
.append('button')
.attr('class', 'button close-button action');
buttonEnter
.append('button')
.attr('class', 'button ignore-button action');
// update
buttonSection = buttonSection
.merge(buttonEnter);
buttonSection.select('.comment-button') // select and propagate data
.attr('disabled', d => d.newComment ? null : true)
.on('click.comment', function(d3_event, d) {
this.blur(); // avoid keeping focus on the button - #4641
const qaService = services.keepRight;
if (qaService) {
qaService.postUpdate(d, (err, item) => dispatch.call('change', item));
}
});
buttonSection.select('.close-button') // select and propagate data
.html(d => {
const andComment = (d.newComment ? '_comment' : '');
return t.html(`QA.keepRight.close${andComment}`);
})
.on('click.close', function(d3_event, d) {
this.blur(); // avoid keeping focus on the button - #4641
const qaService = services.keepRight;
if (qaService) {
d.newStatus = 'ignore_t'; // ignore temporarily (item fixed)
qaService.postUpdate(d, (err, item) => dispatch.call('change', item));
}
});
buttonSection.select('.ignore-button') // select and propagate data
.html(d => {
const andComment = (d.newComment ? '_comment' : '');
return t.html(`QA.keepRight.ignore${andComment}`);
})
.on('click.ignore', function(d3_event, d) {
this.blur(); // avoid keeping focus on the button - #4641
const qaService = services.keepRight;
if (qaService) {
d.newStatus = 'ignore'; // ignore permanently (false positive)
qaService.postUpdate(d, (err, item) => dispatch.call('change', item));
}
});
}
// NOTE: Don't change method name until UI v3 is merged
keepRightEditor.error = function(val) {
if (!arguments.length) return _qaItem;
_qaItem = val;
return keepRightEditor;
};
return utilRebind(keepRightEditor, dispatch, 'on');
}