mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-23 04:23:30 +01:00
This also includes a bunch of tweaks to make the tests work in both PhantomJS and modern browsers like Chrome. Basically - introduce some more async into the test code so that the coreData.get promise is guaranteed to settle. Because in PhantomJS the promise is polyfilled, and Chrome it's native, they work slightly differently.
273 lines
7.8 KiB
JavaScript
273 lines
7.8 KiB
JavaScript
import { dispatch as d3_dispatch } from 'd3-dispatch';
|
|
import { select as d3_select, event as d3_event } from 'd3-selection';
|
|
|
|
import { t } from '../../util/locale';
|
|
import { actionChangeTags } from '../../actions/change_tags';
|
|
import { services } from '../../services/index';
|
|
import { svgIcon } from '../../svg/icon';
|
|
import { uiCombobox } from '../combobox';
|
|
import { utilDetect } from '../../util/detect';
|
|
import { utilGetSetValue, utilNoAuto, utilRebind } from '../../util';
|
|
|
|
|
|
export function uiFieldWikipedia(field, context) {
|
|
const dispatch = d3_dispatch('change');
|
|
const wikipedia = services.wikipedia;
|
|
const wikidata = services.wikidata;
|
|
let _lang = d3_select(null);
|
|
let _title = d3_select(null);
|
|
let _wikiURL = '';
|
|
let _entity;
|
|
|
|
// A concern here in switching to async data means that _dataWikipedia will not
|
|
// be available the first time through, so things like the fetchers and
|
|
// the language() function will not work immediately.
|
|
let _dataWikipedia = [];
|
|
context.data().get('wikipedia')
|
|
.then(d => _dataWikipedia = d)
|
|
.catch(() => { /* ignore */ });
|
|
|
|
|
|
const langCombo = uiCombobox(context, 'wikipedia-lang')
|
|
.fetcher((value, callback) => {
|
|
const v = value.toLowerCase();
|
|
callback(_dataWikipedia
|
|
.filter(d => {
|
|
return d[0].toLowerCase().indexOf(v) >= 0 ||
|
|
d[1].toLowerCase().indexOf(v) >= 0 ||
|
|
d[2].toLowerCase().indexOf(v) >= 0;
|
|
})
|
|
.map(d => ({ value: d[1] }))
|
|
);
|
|
});
|
|
|
|
const titleCombo = uiCombobox(context, 'wikipedia-title')
|
|
.fetcher((value, callback) => {
|
|
if (!value && _entity) {
|
|
value = context.entity(_entity.id).tags.name || '';
|
|
}
|
|
const searchfn = value.length > 7 ? wikipedia.search : wikipedia.suggestions;
|
|
searchfn(language()[2], value, (query, data) => {
|
|
callback( data.map(d => ({ value: d })) );
|
|
});
|
|
});
|
|
|
|
|
|
function wiki(selection) {
|
|
let wrap = selection.selectAll('.form-field-input-wrap')
|
|
.data([0]);
|
|
|
|
wrap = wrap.enter()
|
|
.append('div')
|
|
.attr('class', `form-field-input-wrap form-field-input-${field.type}`)
|
|
.merge(wrap);
|
|
|
|
|
|
let langContainer = wrap.selectAll('.wiki-lang-container')
|
|
.data([0]);
|
|
|
|
langContainer = langContainer.enter()
|
|
.append('div')
|
|
.attr('class', 'wiki-lang-container')
|
|
.merge(langContainer);
|
|
|
|
|
|
_lang = langContainer.selectAll('input.wiki-lang')
|
|
.data([0]);
|
|
|
|
_lang = _lang.enter()
|
|
.append('input')
|
|
.attr('type', 'text')
|
|
.attr('class', 'wiki-lang')
|
|
.attr('placeholder', t('translate.localized_translation_language'))
|
|
.call(utilNoAuto)
|
|
.call(langCombo)
|
|
.merge(_lang);
|
|
|
|
utilGetSetValue(_lang, language()[1]);
|
|
|
|
_lang
|
|
.on('blur', changeLang)
|
|
.on('change', changeLang);
|
|
|
|
|
|
let titleContainer = wrap.selectAll('.wiki-title-container')
|
|
.data([0]);
|
|
|
|
titleContainer = titleContainer.enter()
|
|
.append('div')
|
|
.attr('class', 'wiki-title-container')
|
|
.merge(titleContainer);
|
|
|
|
_title = titleContainer.selectAll('input.wiki-title')
|
|
.data([0]);
|
|
|
|
_title = _title.enter()
|
|
.append('input')
|
|
.attr('type', 'text')
|
|
.attr('class', 'wiki-title')
|
|
.attr('id', `preset-input-${field.safeid}`)
|
|
.attr('maxlength', context.maxCharsForTagValue() - 4)
|
|
.call(utilNoAuto)
|
|
.call(titleCombo)
|
|
.merge(_title);
|
|
|
|
_title
|
|
.on('blur', blur)
|
|
.on('change', change);
|
|
|
|
|
|
let link = titleContainer.selectAll('.wiki-link')
|
|
.data([0]);
|
|
|
|
link = link.enter()
|
|
.append('button')
|
|
.attr('class', 'form-field-button wiki-link')
|
|
.attr('tabindex', -1)
|
|
.attr('title', t('icons.view_on', { domain: 'wikipedia.org' }))
|
|
.call(svgIcon('#iD-icon-out-link'))
|
|
.merge(link);
|
|
|
|
link
|
|
.on('click', () => {
|
|
d3_event.preventDefault();
|
|
if (_wikiURL) window.open(_wikiURL, '_blank');
|
|
});
|
|
}
|
|
|
|
|
|
function language() {
|
|
const value = utilGetSetValue(_lang).toLowerCase();
|
|
const locale = utilDetect().locale.toLowerCase();
|
|
let localeLanguage;
|
|
return _dataWikipedia.find(d => {
|
|
if (d[2] === locale) localeLanguage = d;
|
|
return d[0].toLowerCase() === value || d[1].toLowerCase() === value || d[2] === value;
|
|
}) || localeLanguage || ['English', 'English', 'en'];
|
|
}
|
|
|
|
|
|
function changeLang() {
|
|
utilGetSetValue(_lang, language()[1]);
|
|
change(true);
|
|
}
|
|
|
|
|
|
function blur() {
|
|
change(true);
|
|
}
|
|
|
|
|
|
function change(skipWikidata) {
|
|
let value = utilGetSetValue(_title);
|
|
const m = value.match(/https?:\/\/([-a-z]+)\.wikipedia\.org\/(?:wiki|\1-[-a-z]+)\/([^#]+)(?:#(.+))?/);
|
|
const l = m && _dataWikipedia.find(d => m[1] === d[2]);
|
|
let syncTags = {};
|
|
|
|
if (l) {
|
|
// Normalize title http://www.mediawiki.org/wiki/API:Query#Title_normalization
|
|
value = decodeURIComponent(m[2]).replace(/_/g, ' ');
|
|
if (m[3]) {
|
|
let anchor;
|
|
// try {
|
|
// leave this out for now - #6232
|
|
// Best-effort `anchordecode:` implementation
|
|
// anchor = decodeURIComponent(m[3].replace(/\.([0-9A-F]{2})/g, '%$1'));
|
|
// } catch (e) {
|
|
anchor = decodeURIComponent(m[3]);
|
|
// }
|
|
value += '#' + anchor.replace(/_/g, ' ');
|
|
}
|
|
value = value.slice(0, 1).toUpperCase() + value.slice(1);
|
|
utilGetSetValue(_lang, l[1]);
|
|
utilGetSetValue(_title, value);
|
|
}
|
|
|
|
if (value) {
|
|
syncTags.wikipedia = (language()[2] + ':' + value).substr(0, context.maxCharsForTagValue());
|
|
} else {
|
|
syncTags.wikipedia = undefined;
|
|
}
|
|
|
|
dispatch.call('change', this, syncTags);
|
|
|
|
|
|
if (skipWikidata || !value || !language()[2]) return;
|
|
|
|
// attempt asynchronous update of wikidata tag..
|
|
const initGraph = context.graph();
|
|
const initEntityID = _entity.id;
|
|
|
|
wikidata.itemsByTitle(language()[2], value, (err, data) => {
|
|
if (err || !data || !Object.keys(data).length) return;
|
|
|
|
// If graph has changed, we can't apply this update.
|
|
if (context.graph() !== initGraph) return;
|
|
|
|
const qids = Object.keys(data);
|
|
const value = qids && qids.find(id => id.match(/^Q\d+$/));
|
|
let currTags = Object.assign({}, context.entity(initEntityID).tags); // shallow copy
|
|
|
|
currTags.wikidata = value;
|
|
|
|
// Coalesce the update of wikidata tag into the previous tag change
|
|
context.overwrite(
|
|
actionChangeTags(initEntityID, currTags),
|
|
context.history().undoAnnotation()
|
|
);
|
|
|
|
// do not dispatch.call('change') here, because entity_editor
|
|
// changeTags() is not intended to be called asynchronously
|
|
});
|
|
}
|
|
|
|
|
|
wiki.tags = (tags) => {
|
|
const value = tags[field.key] || '';
|
|
const m = value.match(/([^:]+):([^#]+)(?:#(.+))?/);
|
|
const l = m && _dataWikipedia.find(d => m[1] === d[2]);
|
|
let anchor = m && m[3];
|
|
|
|
// value in correct format
|
|
if (l) {
|
|
utilGetSetValue(_lang, l[1]);
|
|
utilGetSetValue(_title, m[2] + (anchor ? ('#' + anchor) : ''));
|
|
if (anchor) {
|
|
try {
|
|
// Best-effort `anchorencode:` implementation
|
|
anchor = encodeURIComponent(anchor.replace(/ /g, '_')).replace(/%/g, '.');
|
|
} catch (e) {
|
|
anchor = anchor.replace(/ /g, '_');
|
|
}
|
|
}
|
|
_wikiURL = 'https://' + m[1] + '.wikipedia.org/wiki/' +
|
|
m[2].replace(/ /g, '_') + (anchor ? ('#' + anchor) : '');
|
|
|
|
// unrecognized value format
|
|
} else {
|
|
utilGetSetValue(_title, value);
|
|
if (value && value !== '') {
|
|
utilGetSetValue(_lang, '');
|
|
_wikiURL = `https://en.wikipedia.org/wiki/Special:Search?search=${value}`;
|
|
} else {
|
|
_wikiURL = '';
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
wiki.entity = function(val) {
|
|
if (!arguments.length) return _entity;
|
|
_entity = val;
|
|
return wiki;
|
|
};
|
|
|
|
|
|
wiki.focus = () => {
|
|
_title.node().focus();
|
|
};
|
|
|
|
|
|
return utilRebind(wiki, dispatch, 'on');
|
|
}
|