2020-08-05 11:24:05 -07:00
|
|
|
import {Source, Example, NounTemplate} from './classes'
|
2020-07-25 10:21:52 -07:00
|
|
|
import { buildDict, buildList } from './helpers';
|
2020-07-26 06:27:36 -07:00
|
|
|
import { parseTemplates, getTemplate } from './buildTemplate';
|
|
|
|
|
|
|
|
import templatesRaw from '../data/templates.tsv';
|
|
|
|
export const templates = parseTemplates(templatesRaw);
|
2020-07-25 10:21:52 -07:00
|
|
|
|
|
|
|
import examplesRaw from '../data/examples.tsv';
|
|
|
|
export const examples = buildList(function* () {
|
|
|
|
for (let e of examplesRaw) {
|
|
|
|
yield new Example(
|
|
|
|
Example.parse(e.singular),
|
|
|
|
Example.parse(e.plural || e.singular),
|
|
|
|
e.isHonorific,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
import sourcesRaw from '../data/sources.tsv';
|
|
|
|
export const sources = buildDict(function* () {
|
|
|
|
for (let s of sourcesRaw) {
|
|
|
|
yield [
|
|
|
|
s.key,
|
|
|
|
new Source(
|
|
|
|
s.type,
|
|
|
|
s.author,
|
|
|
|
s.title,
|
|
|
|
s.extra,
|
|
|
|
s.year,
|
|
|
|
s.fragments ? s.fragments.replace(/\|/g, '\n').split('@') : [],
|
|
|
|
s.comment,
|
|
|
|
s.link,
|
|
|
|
)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-26 06:27:36 -07:00
|
|
|
export const sourcesForMultipleForms = {
|
2020-08-20 01:15:42 -07:00
|
|
|
'on&ona': ['genderneutralizacja', 'niebTlum', 'jurewicz', 'krolowaZimy', 'mlotThora', 'statekUmarlych', 'starWarsKoPo'],
|
2020-09-01 02:47:41 -07:00
|
|
|
'ona&onu': ['liniaOporuMix'],
|
2020-09-05 05:17:33 -07:00
|
|
|
'ono/jego&ono/jej': ['kazmierczak'],
|
2020-07-26 06:27:36 -07:00
|
|
|
}
|
2020-07-26 06:15:56 -07:00
|
|
|
|
2020-07-26 06:27:36 -07:00
|
|
|
export const getSources = (selectedTemplate) => {
|
|
|
|
if (!selectedTemplate) {
|
2020-07-27 08:26:40 -07:00
|
|
|
return {};
|
2020-07-26 06:27:36 -07:00
|
|
|
}
|
|
|
|
|
2020-07-27 08:26:40 -07:00
|
|
|
let sources = {};
|
2020-07-26 06:43:17 -07:00
|
|
|
for (let multiple in sourcesForMultipleForms) {
|
|
|
|
if (sourcesForMultipleForms.hasOwnProperty(multiple)) {
|
2020-09-05 12:45:30 -07:00
|
|
|
if (multiple === selectedTemplate.canonicalName) {
|
2020-07-27 08:26:40 -07:00
|
|
|
sources[multiple] = sourcesForMultipleForms[multiple];
|
2020-07-26 06:43:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-26 06:27:36 -07:00
|
|
|
for (let option of selectedTemplate.nameOptions()) {
|
|
|
|
const template = getTemplate(templates, option);
|
|
|
|
if (template && template.sources.length) {
|
2020-07-27 08:26:40 -07:00
|
|
|
sources[option] = template.sources;
|
2020-07-26 06:27:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return sources;
|
|
|
|
}
|
2020-08-05 11:24:05 -07:00
|
|
|
|
2020-09-04 08:07:32 -07:00
|
|
|
import nounTemplatesRaw from '../data/nounTemplates.tsv';
|
|
|
|
export const nounTemplates = buildList(function* () {
|
|
|
|
for (let t of nounTemplatesRaw) {
|
|
|
|
yield new NounTemplate(
|
|
|
|
t.masc.replace(/-/g, '').split('/'),
|
|
|
|
t.fem.replace(/-/g, '').split('/'),
|
|
|
|
t.neutr.replace(/-/g, '').split('/'),
|
|
|
|
t.mascPl.replace(/-/g, '').split('/'),
|
|
|
|
t.femPl.replace(/-/g, '').split('/'),
|
|
|
|
t.neutrPl.replace(/-/g, '').split('/'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2020-08-05 11:24:05 -07:00
|
|
|
|
2020-08-24 01:38:12 -07:00
|
|
|
export const separators = ['ono/jego', 'onu/jenu', 'oni/ich', 'onæ/jæ', 'vono/vego', 'on&ona'];
|