cleanup
This commit is contained in:
parent
d7b4aa681c
commit
984b5326a9
@ -44,28 +44,6 @@ function promiseCallback(promise, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
function sortTags(tags) {
|
||||
return tags.sort((v1, v2) => {
|
||||
const order1 = v1.order;
|
||||
const order2 = v2.order;
|
||||
if (order1 < order2) {
|
||||
return -1;
|
||||
} else if (order1 > order2) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
const name1 = v1.name;
|
||||
const name2 = v2.name;
|
||||
if (name1 < name2) {
|
||||
return -1;
|
||||
} else if (name1 > name2) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
}
|
||||
|
||||
function sortTermDefs(definitions) {
|
||||
return definitions.sort((v1, v2) => {
|
||||
const sl1 = v1.source.length;
|
||||
@ -139,6 +117,95 @@ function splitField(field) {
|
||||
return field.length === 0 ? [] : field.split(' ');
|
||||
}
|
||||
|
||||
function sortTags(tags) {
|
||||
return tags.sort((v1, v2) => {
|
||||
const order1 = v1.order;
|
||||
const order2 = v2.order;
|
||||
if (order1 < order2) {
|
||||
return -1;
|
||||
} else if (order1 > order2) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
const name1 = v1.name;
|
||||
const name2 = v2.name;
|
||||
if (name1 < name2) {
|
||||
return -1;
|
||||
} else if (name1 > name2) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
}
|
||||
|
||||
function formatField(field, definition, mode) {
|
||||
const markers = [
|
||||
'audio',
|
||||
'character',
|
||||
'dictionary',
|
||||
'expression',
|
||||
'expression-furigana',
|
||||
'glossary',
|
||||
'glossary-list',
|
||||
'kunyomi',
|
||||
'onyomi',
|
||||
'reading',
|
||||
'sentence',
|
||||
'tags',
|
||||
'url',
|
||||
];
|
||||
|
||||
for (const marker of markers) {
|
||||
let value = definition[marker] || null;
|
||||
switch (marker) {
|
||||
case 'expression':
|
||||
if (mode === 'term_kana' && definition.reading) {
|
||||
value = definition.reading;
|
||||
}
|
||||
break;
|
||||
case 'expression-furigana':
|
||||
if (mode === 'term_kana' && definition.reading) {
|
||||
value = definition.reading;
|
||||
} else {
|
||||
value = `<ruby>${definition.expression}<rt>${definition.reading}</rt></ruby>`;
|
||||
}
|
||||
break;
|
||||
case 'reading':
|
||||
if (mode === 'term_kana') {
|
||||
value = null;
|
||||
}
|
||||
break;
|
||||
case 'glossary-list':
|
||||
if (definition.glossary) {
|
||||
if (definition.glossary.length > 1) {
|
||||
value = '<ol style="white-space: pre; text-align: left; overflow-x: auto;">';
|
||||
for (const gloss of definition.glossary) {
|
||||
value += `<li>${gloss}</li>`;
|
||||
}
|
||||
value += '</ol>';
|
||||
} else {
|
||||
value = `<p style="white-space: pre; overflow-x: auto;">${definition.glossary.join('')}</p>`;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'tags':
|
||||
if (definition.tags) {
|
||||
value = definition.tags.map(t => t.name);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (value !== null && typeof(value) !== 'string') {
|
||||
value = value.join(', ');
|
||||
}
|
||||
|
||||
field = field.replace(`{${marker}}`, value || '');
|
||||
}
|
||||
|
||||
return field;
|
||||
}
|
||||
|
||||
function loadJson(url) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const xhr = new XMLHttpRequest();
|
||||
|
@ -120,73 +120,6 @@ class Yomichan {
|
||||
chrome.tabs.sendMessage(tabId, {action, params}, () => null);
|
||||
}
|
||||
|
||||
formatField(field, definition, mode) {
|
||||
const markers = [
|
||||
'audio',
|
||||
'character',
|
||||
'dictionary',
|
||||
'expression',
|
||||
'expression-furigana',
|
||||
'glossary',
|
||||
'glossary-list',
|
||||
'kunyomi',
|
||||
'onyomi',
|
||||
'reading',
|
||||
'sentence',
|
||||
'tags',
|
||||
'url',
|
||||
];
|
||||
|
||||
for (const marker of markers) {
|
||||
let value = definition[marker] || null;
|
||||
switch (marker) {
|
||||
case 'expression':
|
||||
if (mode === 'term_kana' && definition.reading) {
|
||||
value = definition.reading;
|
||||
}
|
||||
break;
|
||||
case 'expression-furigana':
|
||||
if (mode === 'term_kana' && definition.reading) {
|
||||
value = definition.reading;
|
||||
} else {
|
||||
value = `<ruby>${definition.expression}<rt>${definition.reading}</rt></ruby>`;
|
||||
}
|
||||
break;
|
||||
case 'reading':
|
||||
if (mode === 'term_kana') {
|
||||
value = null;
|
||||
}
|
||||
break;
|
||||
case 'glossary-list':
|
||||
if (definition.glossary) {
|
||||
if (definition.glossary.length > 1) {
|
||||
value = '<ol style="white-space: pre; text-align: left; overflow-x: auto;">';
|
||||
for (const gloss of definition.glossary) {
|
||||
value += `<li>${gloss}</li>`;
|
||||
}
|
||||
value += '</ol>';
|
||||
} else {
|
||||
value = `<p style="white-space: pre; overflow-x: auto;">${definition.glossary.join('')}</p>`;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'tags':
|
||||
if (definition.tags) {
|
||||
value = definition.tags.map(t => t.name);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (value !== null && typeof(value) !== 'string') {
|
||||
value = value.join(', ');
|
||||
}
|
||||
|
||||
field = field.replace(`{${marker}}`, value || '');
|
||||
}
|
||||
|
||||
return field;
|
||||
}
|
||||
|
||||
formatNote(definition, mode) {
|
||||
const note = {fields: {}, tags: this.options.ankiCardTags};
|
||||
|
||||
@ -218,7 +151,7 @@ class Yomichan {
|
||||
}
|
||||
|
||||
for (const name in fields) {
|
||||
note.fields[name] = this.formatField(fields[name], definition, mode);
|
||||
note.fields[name] = formatField(fields[name], definition, mode);
|
||||
}
|
||||
|
||||
return note;
|
||||
|
Loading…
Reference in New Issue
Block a user