rename pos to partOfSpeech
This commit is contained in:
parent
7ec28bea54
commit
4203fda906
@ -112,11 +112,11 @@ function dictTermsUndupe(definitions) {
|
||||
|
||||
function dictTermsCompressTags(definitions) {
|
||||
let lastDictionary = '';
|
||||
let lastPos = '';
|
||||
let lastPartOfSpeech = '';
|
||||
|
||||
for (const definition of definitions) {
|
||||
const dictionary = JSON.stringify(definition.definitionTags.filter(tag => tag.category === 'dictionary').map(tag => tag.name).sort());
|
||||
const pos = JSON.stringify(definition.definitionTags.filter(tag => tag.category === 'pos').map(tag => tag.name).sort());
|
||||
const partOfSpeech = JSON.stringify(definition.definitionTags.filter(tag => tag.category === 'partOfSpeech').map(tag => tag.name).sort());
|
||||
|
||||
const filterOutCategories = [];
|
||||
|
||||
@ -124,13 +124,13 @@ function dictTermsCompressTags(definitions) {
|
||||
filterOutCategories.push('dictionary');
|
||||
} else {
|
||||
lastDictionary = dictionary;
|
||||
lastPos = '';
|
||||
lastPartOfSpeech = '';
|
||||
}
|
||||
|
||||
if (lastPos === pos) {
|
||||
filterOutCategories.push('pos');
|
||||
if (lastPartOfSpeech === partOfSpeech) {
|
||||
filterOutCategories.push('partOfSpeech');
|
||||
} else {
|
||||
lastPos = pos;
|
||||
lastPartOfSpeech = partOfSpeech;
|
||||
}
|
||||
|
||||
definition.definitionTags = definition.definitionTags.filter(tag => !filterOutCategories.includes(tag.category));
|
||||
|
@ -92,7 +92,7 @@ hr {
|
||||
background-color: #5cb85c;
|
||||
}
|
||||
|
||||
.tag-pos {
|
||||
.tag-partOfSpeech {
|
||||
background-color: #565656;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user