This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/src/classes.js

291 lines
7.8 KiB
JavaScript
Raw Normal View History

2020-07-26 04:14:25 -07:00
import {buildDict} from "./helpers";
2020-07-22 13:19:23 -07:00
export class ExamplePart {
constructor(variable, str) {
this.variable = variable;
this.str = str;
}
format(form) {
if (!this.variable) {
return this.str[form.plural];
}
return form[this.str[form.plural]];
}
}
export class Example {
constructor(singularParts, pluralParts, isHonorific = false) {
this.singularParts = singularParts;
this.pluralParts = pluralParts;
this.isHonorific = isHonorific;
2020-07-22 13:19:23 -07:00
}
static parse(str) {
const parts = [];
let lastPosition = 0;
for (let m of str.matchAll(/{([a-z_]+)}/g)) {
const textBefore = str.substr(lastPosition, m.index - lastPosition);
if (textBefore.length) {
parts.push(new ExamplePart(false, textBefore));
}
parts.push(new ExamplePart(true, m[0].substr(1, m[0].length - 2)));
lastPosition = m.index + m[0].length;
}
const textAfter = str.substr(lastPosition);
if (textAfter.length) {
parts.push(new ExamplePart(false, textAfter));
}
return parts;
}
format(form) {
return Example.ucfirst(this.parts.map(part => part.format(form)).join(''));
}
static ucfirst(str) {
return str[0].toUpperCase() + str.slice(1);
}
}
function clone(mainObject) {
let objectCopy = {};
for (let key in mainObject) {
if (mainObject.hasOwnProperty(key)) {
objectCopy[key] = mainObject[key];
}
}
return objectCopy;
}
export class Source {
constructor (type, author, title, extra, year, fragments = [], comment = null, link = null) {
this.type = type;
2020-07-22 13:19:23 -07:00
this.author = author;
this.title = title;
this.extra = extra;
this.year = year;
this.fragments = fragments;
this.comment = comment;
this.link = link;
}
2020-07-27 10:06:41 -07:00
static get TYPES() {
return {
'': { icon: 'clipboard-list', text: 'Wszystkie' },
Book: { icon: 'book-open', text: 'Książki' },
2020-08-25 01:41:38 -07:00
Article: { icon: 'newspaper', text: 'Prasa' },
2020-07-27 10:06:41 -07:00
// Movie: { icon:'film', text: 'Filmy' },
2020-08-25 01:41:38 -07:00
Series: { icon: 'tv', text: 'Seriale' },
Song: { icon: 'music', text: 'Muzyka' },
Other: { icon: 'comment-alt-lines', text: 'Inne' },
2020-07-27 10:06:41 -07:00
}
}
2020-07-22 13:19:23 -07:00
icon() {
2020-07-27 10:06:41 -07:00
return Source.TYPES[this.type].icon;
}
}
export const MORPHEMES = [
2020-07-22 13:19:23 -07:00
'pronoun_n',
'pronoun_g',
'pronoun_g_acc',
'pronoun_d',
'pronoun_a',
'pronoun_i',
'pronoun_l',
'pronoun_all',
'adjective_n',
'adjective_ll',
'adjective_middle',
'verb_end_inter',
'verb_end_about',
2020-07-22 13:19:23 -07:00
'verb_middle',
'verb_nasal',
'verb_go',
'verb_o',
'honorific',
];
const escape = s => {
2020-07-26 04:14:25 -07:00
if (Array.isArray(s)) {
s = s.join('&');
}
2020-07-22 13:19:23 -07:00
return (s || '')
2020-07-24 13:11:34 -07:00
.replace(/,/g, '')
.replace(/!/g, '')
.replace(/\./g, '')
//.replace(/\/', '%2F')
.replace(/#/g, '%23')
2020-07-26 04:14:25 -07:00
.replace(/\?/g, '%3F');
2020-07-22 13:19:23 -07:00
}
export class Template {
constructor (canonicalName, description, morphemes, plural, pluralHonorific, sources = [], aliases = [], history = null) {
this.canonicalName = canonicalName;
2020-07-22 13:19:23 -07:00
this.description = description;
this.morphemes = morphemes
this.plural = plural;
this.pluralHonorific = pluralHonorific;
2020-07-22 13:19:23 -07:00
this.sources = sources;
2020-07-24 07:26:03 -07:00
this.aliases = aliases;
2020-07-24 11:21:30 -07:00
this.history = history;
2020-07-22 13:19:23 -07:00
}
pronoun() {
return this.morphemes['pronoun_n'];
}
2020-07-26 04:14:25 -07:00
nameOptions() {
const options = new Set();
const optionsN = this.morphemes.pronoun_n.split('&');
const optionsG = this.morphemes.pronoun_g.split('&');
for (let i in optionsN) {
options.add(optionsN[i] + '/' + optionsG[i < optionsG.length - 1 ? i : optionsG.length - 1]);
}
return [...options]
}
name(glue = ' lub ') {
return this.nameOptions().join(glue)
2020-07-22 13:19:23 -07:00
}
clone() {
return new Template(this.canonicalName, this.description, clone(this.morphemes), this.plural, this.pluralHonorific);
2020-07-22 13:19:23 -07:00
}
equals(other) {
return this.toString() === other.toString();
}
2020-07-26 04:14:25 -07:00
merge(other) {
if (this.plural !== other.plural || this.pluralHonorific !== other.pluralHonorific) {
// Cannot mix plurality
return null;
}
return new Template(
this.canonicalName + '&' + other.canonicalName,
2020-07-26 04:14:25 -07:00
Array.isArray(this.description) ? [...this.description, other.description] : [this.description, other.description],
buildDict(function* (that, other) {
for (let morpheme of MORPHEMES) {
yield [morpheme, (that.morphemes[morpheme] || '') + '&' + (other.morphemes[morpheme] || '')]
}
}, this, other),
this.plural,
this.pluralHonorific,
);
}
getMorpheme(morpheme, counter = 0) {
if (!this.morphemes[morpheme]) {
return null;
}
const options = this.morphemes[morpheme].split('&');
return options[counter % options.length]
}
2020-07-22 13:19:23 -07:00
toArray() {
return [
...Object.values(this.morphemes).map(s => escape(s)),
this.plural ? 1 : 0,
this.pluralHonorific ? 1 : 0,
2020-07-22 13:19:23 -07:00
escape(this.description),
];
}
toString() {
return this.toArray().join(',');
}
static from(data) {
if (data.length === MORPHEMES.length + 2) {
data.push('');
}
if (data.length !== MORPHEMES.length + 3
2020-07-22 13:19:23 -07:00
|| data[0].length === 0
|| data[data.length - 1].length > 48
|| ![0, 1].includes(parseInt(data[MORPHEMES.length]))
|| ![0, 1].includes(parseInt(data[MORPHEMES.length + 1]))
2020-07-26 05:52:01 -07:00
|| data.slice(1, data.length - 3).filter(s => s.length > 12).length
2020-07-22 13:19:23 -07:00
) {
return null;
}
const m = {}
for (let i in MORPHEMES) {
m[MORPHEMES[parseInt(i)]] = data[parseInt(i)];
2020-07-22 13:19:23 -07:00
}
return new Template(m.pronoun_n, data[data.length - 1], m, parseInt(data[MORPHEMES.length]) === 1, parseInt(data[MORPHEMES.length + 1]) === 1)
2020-07-22 13:19:23 -07:00
}
}
2020-08-04 07:15:41 -07:00
export class Noun {
constructor({id, masc, fem, neutr, mascPl, femPl, neutrPl, approved, base_id}) {
this.id = id;
this.masc = masc.split('|');
this.fem = fem.split('|');
this.neutr = neutr.split('|');
this.mascPl = mascPl.split('|');
this.femPl = femPl.split('|');
this.neutrPl = neutrPl.split('|');
this.approved = !!approved;
this.base = base_id;
}
matches(filter) {
if (!filter) {
return true;
}
for (let field of ['masc', 'fem', 'neutr', 'mascPl', 'femPl', 'neutrPl']) {
for (let value of this[field]) {
if (value.indexOf(filter) > -1) {
return true;
}
}
}
return false;
}
}
export class NounTemplate {
constructor(masc, fem, neutr, mascPl, femPl, neutrPl) {
this.masc = masc;
this.fem = fem;
this.neutr = neutr;
this.mascPl = mascPl;
this.femPl = femPl;
this.neutrPl = neutrPl;
}
fill(stem) {
return {
masc: this.masc.map(e => stem + e),
fem: this.fem.map(e => stem + e),
neutr: this.neutr.map(e => stem + e),
mascPl: this.mascPl.map(e => stem + e),
femPl: this.femPl.map(e => stem + e),
neutrPl: this.neutrPl.map(e => stem + e),
base: null,
}
}
toString() {
return Object.values(this)
.map(es => es.map(e => '-' + e).join('/'))
.join(', ')
;
}
}