cleanup
This commit is contained in:
parent
0c2948721b
commit
0846fee749
|
@ -16,9 +16,15 @@ import { makePsString, removeFVarients } from "./accent-and-ps-utils";
|
|||
* @param s
|
||||
*/
|
||||
export function accentOnFront(s: T.PsString): T.PsString;
|
||||
export function accentOnFront(s: T.LengthOptions<T.PsString>): T.LengthOptions<T.PsString>;
|
||||
export function accentOnFront(s: T.SingleOrLengthOpts<T.PsString>): T.SingleOrLengthOpts<T.PsString>;
|
||||
export function accentOnFront(s: T.SingleOrLengthOpts<T.PsString>): T.SingleOrLengthOpts<T.PsString> {
|
||||
export function accentOnFront(
|
||||
s: T.LengthOptions<T.PsString>
|
||||
): T.LengthOptions<T.PsString>;
|
||||
export function accentOnFront(
|
||||
s: T.SingleOrLengthOpts<T.PsString>
|
||||
): T.SingleOrLengthOpts<T.PsString>;
|
||||
export function accentOnFront(
|
||||
s: T.SingleOrLengthOpts<T.PsString>
|
||||
): T.SingleOrLengthOpts<T.PsString> {
|
||||
if ("long" in s) {
|
||||
return {
|
||||
short: accentOnFront(s.short),
|
||||
|
@ -43,10 +49,8 @@ export function accentPastParticiple(s: T.PsString): T.PsString {
|
|||
const secondLast = syls[syls.length - 2];
|
||||
const thirdLast = syls[syls.length - 3];
|
||||
const lastLetterOfThirdLast = thirdLast.slice(-1);
|
||||
return (
|
||||
(secondLast === "ul") && (lastLetterOfThirdLast === "y")
|
||||
);
|
||||
}
|
||||
return secondLast === "ul" && lastLetterOfThirdLast === "y";
|
||||
};
|
||||
// remove all accents
|
||||
const accentsRemoved = removeAccents(s.f);
|
||||
// split up the syllables (preserving the spaces)
|
||||
|
@ -58,7 +62,11 @@ export function accentPastParticiple(s: T.PsString): T.PsString {
|
|||
}
|
||||
|
||||
export function splitUpSyllables(f: string): string[] {
|
||||
return f.match(/ |([^a|á|e|é|i|í|o|ó|u|ú| ]*(aa|áa|a|á|ey|éy|ee|ée|e|é|oo|óo|o|ó|i|í|u|ú)[^a|á|e|é|i|í|o|ó|u|ú| ]*)/ig) || [] as string[];
|
||||
return (
|
||||
f.match(
|
||||
/ |([^a|á|e|é|i|í|o|ó|u|ú| ]*(aa|áa|a|á|ey|éy|ee|ée|e|é|oo|óo|o|ó|i|í|u|ú)[^a|á|e|é|i|í|o|ó|u|ú| ]*)/gi
|
||||
) || ([] as string[])
|
||||
);
|
||||
}
|
||||
|
||||
export function countSyllables(f: T.PsString | string): number {
|
||||
|
@ -72,14 +80,17 @@ export function countSyllables(f: T.PsString | string): number {
|
|||
* @param syls - an array of syllables in phonetic strings without accents (including spaces as extra items)
|
||||
* @param n - the number of syllables from the end to put the accent
|
||||
*/
|
||||
export function accentFSylsOnNFromEnd(syls: string[] | string, n: number): string {
|
||||
export function accentFSylsOnNFromEnd(
|
||||
syls: string[] | string,
|
||||
n: number
|
||||
): string {
|
||||
if (typeof syls === "string") {
|
||||
return accentFSylsOnNFromEnd(splitUpSyllables(syls), n);
|
||||
}
|
||||
return [
|
||||
...syls.slice(0, syls.length - (n + 1)), // before accent
|
||||
accentLetter(syls[syls.length - (n + 1)]), // syllable to be accented
|
||||
...(n !== 0) ? syls.slice(syls.length-n) : [], // after syllable to be accented
|
||||
...(n !== 0 ? syls.slice(syls.length - n) : []), // after syllable to be accented
|
||||
].join("");
|
||||
}
|
||||
|
||||
|
@ -89,14 +100,12 @@ export function accentOnNFromEnd(ps: T.PsString, n: number): T.PsString {
|
|||
// TODO: enable this and fix the tests it breaks!!!
|
||||
// don't add accent if only one syllable
|
||||
// if (fSyls.length === 1) return makePsString(ps.p, fNoAccents);
|
||||
return makePsString(
|
||||
ps.p,
|
||||
accentFSylsOnNFromEnd(fSyls, n),
|
||||
);
|
||||
return makePsString(ps.p, accentFSylsOnNFromEnd(fSyls, n));
|
||||
}
|
||||
|
||||
const accentReplacer = [
|
||||
{ vowel: "a", accented: "á" },
|
||||
{ vowel: "ă", accented: "á" },
|
||||
{ vowel: "e", accented: "é" },
|
||||
{ vowel: "i", accented: "í" },
|
||||
{ vowel: "o", accented: "ó" },
|
||||
|
@ -105,7 +114,7 @@ const accentReplacer = [
|
|||
];
|
||||
|
||||
export function accentLetter(s: string): string {
|
||||
return s.replace(/a|e|i|o|u|U/, (match) => {
|
||||
return s.replace(/a|ă|e|i|o|u|U/, (match) => {
|
||||
const r = accentReplacer.find((x) => x.vowel === match);
|
||||
/* istanbul ignore next */
|
||||
return r?.accented || "";
|
||||
|
@ -119,28 +128,31 @@ export function accentPsSyllable(ps: T.PsString): T.PsString {
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
export function removeAccentsWLength(s: T.SingleOrLengthOpts<T.PsString[]>): T.SingleOrLengthOpts<T.PsString[]> {
|
||||
export function removeAccentsWLength(
|
||||
s: T.SingleOrLengthOpts<T.PsString[]>
|
||||
): T.SingleOrLengthOpts<T.PsString[]> {
|
||||
if ("long" in s) {
|
||||
return {
|
||||
long: removeAccentsWLength(s.long) as T.PsString[],
|
||||
short: removeAccentsWLength(s.short) as T.PsString[],
|
||||
...s.mini ? {
|
||||
...(s.mini
|
||||
? {
|
||||
mini: removeAccentsWLength(s.mini) as T.PsString[],
|
||||
} : {},
|
||||
}
|
||||
: {}),
|
||||
};
|
||||
}
|
||||
return removeAccents(s);
|
||||
}
|
||||
|
||||
|
||||
export function removeAccents(s: T.PsString): T.PsString;
|
||||
export function removeAccents(s: string): string;
|
||||
export function removeAccents(s: T.PsString[]): T.PsString[];
|
||||
export function removeAccents(s: T.PsString | string | T.PsString[]): T.PsString | string | T.PsString[] {
|
||||
export function removeAccents(
|
||||
s: T.PsString | string | T.PsString[]
|
||||
): T.PsString | string | T.PsString[] {
|
||||
if (Array.isArray(s)) {
|
||||
return s.map(t => removeAccents(t));
|
||||
return s.map((t) => removeAccents(t));
|
||||
}
|
||||
if (typeof s !== "string") {
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue