Compare commits

...

7 Commits

Author SHA1 Message Date
adueck b9cdc63258 touchup of inflection of inanimate fem. ending in ee 2024-06-13 15:03:42 -04:00
adueck 2d8fd52aae fixed error on inflection table 2024-06-13 15:00:47 -04:00
adueck 7b3ac0dab9 inflection table touchup 2024-06-13 14:27:54 -04:00
adueck 38746a1f2d bump for publish 2024-06-13 14:25:34 -04:00
adueck 89b13ff8ae imporve inflection table 2024-06-13 14:25:09 -04:00
adueck 34dade4a2c comment out ماماګان for now on parser 2024-06-13 11:20:07 -04:00
adueck 2cb2e892ae fixed inflection of yeys 2024-06-13 11:10:12 -04:00
11 changed files with 171 additions and 86 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "pashto-inflector", "name": "pashto-inflector",
"version": "7.0.11", "version": "7.1.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "pashto-inflector", "name": "pashto-inflector",
"version": "7.0.11", "version": "7.1.3",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "pashto-inflector", "name": "pashto-inflector",
"version": "7.0.11", "version": "7.1.3",
"author": "lingdocs.com", "author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com", "homepage": "https://verbs.lingdocs.com",

View File

@ -16,10 +16,11 @@ import useStickyState from "./components/src/useStickyState";
import EPExplorer from "./components/src/ep-explorer/EPExplorer"; import EPExplorer from "./components/src/ep-explorer/EPExplorer";
import VPBuilderDemo from "./demo-components/VPBuilderDemo"; import VPBuilderDemo from "./demo-components/VPBuilderDemo";
import { entryFeeder } from "./demo-components/entryFeeder"; import { entryFeeder } from "./demo-components/entryFeeder";
import { Hider } from "./components/library"; import Hider from "./components/src/Hider";
import InflectionDemo from "./demo-components/InflectionDemo"; import InflectionDemo from "./demo-components/InflectionDemo";
import SpellingDemo from "./demo-components/SpellingDemo"; import SpellingDemo from "./demo-components/SpellingDemo";
import ParserDemo from "./demo-components/ParserDemo"; import ParserDemo from "./demo-components/ParserDemo";
import InflectionTable from "./components/src/InflectionsTable";
function App() { function App() {
const [showingTextOptions, setShowingTextOptions] = useStickyState<boolean>( const [showingTextOptions, setShowingTextOptions] = useStickyState<boolean>(
@ -39,6 +40,17 @@ function App() {
document.documentElement.setAttribute("data-theme", theme); document.documentElement.setAttribute("data-theme", theme);
}, [theme]); }, [theme]);
// const infout = inflectWord({
// ts: 1527814202,
// i: 12761,
// p: "کرسي",
// f: "kUrsee",
// g: "kUrsee",
// e: "chair, seat, stool",
// r: 3,
// c: "n. f.",
// });
return ( return (
<> <>
<main className="flex-shrink-0 mb-4"> <main className="flex-shrink-0 mb-4">
@ -97,6 +109,13 @@ function App() {
on GitHub on GitHub
</p> </p>
</div> </div>
{/* for testing inflection table */}
{/* {typeof infout === "object" && infout.inflections && (
<InflectionTable
inf={infout.inflections}
textOptions={textOptions}
/>
)} */}
<h2 className="mb-3">Demos:</h2> <h2 className="mb-3">Demos:</h2>
<Hider <Hider
label="Verb Conjugation / Verb Phrase Engine" label="Verb Conjugation / Verb Phrase Engine"

View File

@ -1,12 +1,12 @@
{ {
"name": "@lingdocs/ps-react", "name": "@lingdocs/ps-react",
"version": "7.0.11", "version": "7.1.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lingdocs/ps-react", "name": "@lingdocs/ps-react",
"version": "7.0.11", "version": "7.1.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.3", "@formkit/auto-animate": "^1.0.0-beta.3",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lingdocs/ps-react", "name": "@lingdocs/ps-react",
"version": "7.0.11", "version": "7.1.3",
"description": "Pashto inflector library module with React components", "description": "Pashto inflector library module with React components",
"main": "dist/components/library.js", "main": "dist/components/library.js",
"module": "dist/components/library.js", "module": "dist/components/library.js",

View File

@ -39,43 +39,93 @@ import { isPluralInflections } from "../../lib/src/p-text-helpers";
// </>; // </>;
// } // }
const InflectionTable = ({ inf, textOptions, hideTitle }: { const InflectionTable = ({
inf: T.Inflections | T.PluralInflections, inf,
textOptions: T.TextOptions, textOptions,
hideTitle?: boolean, hideTitle,
}: {
inf: T.Inflections | T.PluralInflections;
textOptions: T.TextOptions;
hideTitle?: boolean;
}) => { }) => {
// const [showingExplanation, setShowingExplanation] = useState(false); // const [showingExplanation, setShowingExplanation] = useState(false);
/* istanbul ignore next */ // Insanely can't see the modal to close it /* istanbul ignore next */ // Insanely can't see the modal to close it
// const handleCloseExplanation = () => setShowingExplanation(false); // const handleCloseExplanation = () => setShowingExplanation(false);
// const handleShowExplanation = () => setShowingExplanation(true); // const handleShowExplanation = () => setShowingExplanation(true);
const isPluralInfs = isPluralInflections(inf); const isPluralInfs = isPluralInflections(inf);
return ( console.log({ inf });
<div className={!hideTitle ? "" : "mt-4"}> return (
{!hideTitle && <div style={{ display: "flex", justifyContent: !isPluralInfs ? "space-between" : "left" }}> <div className={!hideTitle ? "" : "mt-4"}>
{!isPluralInfs && <h5>Inflections</h5>} {!hideTitle && (
{/* {!isPluralInfs && <div className="clickable mr-2" onClick={handleShowExplanation} data-testid="help-button"> <div
style={{
display: "flex",
justifyContent: !isPluralInfs ? "space-between" : "left",
}}
>
{!isPluralInfs && <h5>Inflections</h5>}
{/* {!isPluralInfs && <div className="clickable mr-2" onClick={handleShowExplanation} data-testid="help-button">
<i className={`fa fa-question-circle`}></i> <i className={`fa fa-question-circle`}></i>
</div>} */} </div>} */}
</div>} </div>
<table className="table" style={{ tableLayout: "fixed" }}> )}
<thead> <table
<tr> className="table"
<th scope="col" style={{ width: "3.5rem" }}></th> style={{ tableLayout: "fixed", textAlign: "center" }}
{"masc" in inf && <th scope="col" style={{ maxWidth: "10rem", textAlign: "left" }}>Masculine</th>} >
{"fem" in inf && <th scope="col" style={{ maxWidth: "10rem", textAlign: "left" }}>Feminine</th>} <thead>
</tr> <tr>
</thead> <th scope="col" style={{ width: "3.5rem" }}></th>
<tbody> {"masc" in inf && (
{(!isPluralInfs ? ["Plain", "1st", "2nd"] : ["Plural", "2nd Inf."]).map((title, i) => ( <th
<tr key={title}> scope="col"
<th scope="row">{title}</th> style={{
{"masc" in inf && <TableCell item={inf.masc[i]} textOptions={textOptions} />} maxWidth: "10rem",
{"fem" in inf && <TableCell item={inf.fem[i]} textOptions={textOptions} />} textAlign: "center",
</tr> borderLeft: "1px solid #dee2e6",
))} ...("fem" in inf
</tbody> ? {
</table> borderRight: "1px solid #dee2e6",
{/* {(!hideTitle && !isPluralInfs) && <Modal show={showingExplanation} onHide={handleCloseExplanation}> }
: {}),
}}
>
Masculine
</th>
)}
{"fem" in inf && (
<th
scope="col"
style={{ maxWidth: "10rem", textAlign: "center" }}
>
Feminine
</th>
)}
</tr>
</thead>
<tbody>
{(!isPluralInfs
? ["Plain", "1st", "2nd"]
: ["Plural", "2nd Inf."]
).map((title, i) => (
<tr key={title}>
<th scope="row">{title}</th>
{"masc" in inf && (
<TableCell
item={inf.masc[i]}
textOptions={textOptions}
colSpan={"fem" in inf && i === 2 ? 2 : 1}
center
/>
)}
{"fem" in inf && (!("masc" in inf) || i < 2) && (
<TableCell item={inf.fem[i]} textOptions={textOptions} center />
)}
</tr>
))}
</tbody>
</table>
{/* {(!hideTitle && !isPluralInfs) && <Modal show={showingExplanation} onHide={handleCloseExplanation}>
<Modal.Header closeButton> <Modal.Header closeButton>
<Modal.Title>About {isPluralInfs ? "Inflections" : "Arabic Plural"}</Modal.Title> <Modal.Title>About {isPluralInfs ? "Inflections" : "Arabic Plural"}</Modal.Title>
</Modal.Header> </Modal.Header>
@ -86,8 +136,8 @@ const InflectionTable = ({ inf, textOptions, hideTitle }: {
</button> </button>
</Modal.Footer> </Modal.Footer>
</Modal>} */} </Modal>} */}
</div> </div>
); );
}; };
export default InflectionTable; export default InflectionTable;

View File

@ -24,11 +24,13 @@ function TableCell({
textOptions, textOptions,
center, center,
noBorder, noBorder,
colSpan,
}: { }: {
item: T.PsString[]; item: T.PsString[];
textOptions: T.TextOptions; textOptions: T.TextOptions;
center?: boolean; center?: boolean;
noBorder?: boolean; noBorder?: boolean;
colSpan?: 1 | 2;
}) { }) {
const [version, setVersion] = useState(0); const [version, setVersion] = useState(0);
useEffect(() => setVersion(0), [item]); useEffect(() => setVersion(0), [item]);
@ -37,7 +39,12 @@ function TableCell({
} }
const w = item[version] || item[0]; const w = item[version] || item[0];
return ( return (
<td style={{ ...(noBorder ? { border: "none" } : {}) }}> <td
colSpan={colSpan || 1}
style={{
...(noBorder ? { border: "none" } : { border: "2px solid #dee2e6" }),
}}
>
<div <div
style={{ style={{
display: "flex", display: "flex",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lingdocs/inflect", "name": "@lingdocs/inflect",
"version": "7.0.11", "version": "7.1.3",
"description": "Pashto inflector library", "description": "Pashto inflector library",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/lib/library.d.ts", "types": "dist/lib/library.d.ts",

View File

@ -44,6 +44,8 @@ const lafz = wordQuery("لفظ", "noun");
// TODO: زړو should not be hearts // TODO: زړو should not be hearts
// bundled plural // bundled plural
// TODO: FIX ماماګان
const tests: { const tests: {
category: string; category: string;
cases: { cases: {
@ -1141,30 +1143,31 @@ const tests: {
}, },
], ],
}, },
{ // TODO: FIX THIS!!
input: "ماماګان", // {
output: [ // input: "ماماګان",
{ // output: [
inflected: false, // {
selection: { // inflected: false,
...makeNounSelection(maamaa, undefined), // selection: {
number: "plural", // ...makeNounSelection(maamaa, undefined),
}, // number: "plural",
}, // },
], // },
}, // ],
{ // },
input: "ماماګانو", // {
output: [ // input: "ماماګانو",
{ // output: [
inflected: true, // {
selection: { // inflected: true,
...makeNounSelection(maamaa, undefined), // selection: {
number: "plural", // ...makeNounSelection(maamaa, undefined),
}, // number: "plural",
}, // },
], // },
}, // ],
// },
{ {
input: "ډاکټران", input: "ډاکټران",
output: [ output: [

View File

@ -94,7 +94,7 @@ const adjectives: {
[{ p: "وروستی", f: "wroostáy" }], [{ p: "وروستی", f: "wroostáy" }],
[{ p: "وروستي", f: "wroostée" }], [{ p: "وروستي", f: "wroostée" }],
[ [
{ p: "وروستیو", f: "wroostíyo" }, { p: "وروستیو", f: "wroostúyo" },
{ p: "وروستو", f: "wroostó" }, { p: "وروستو", f: "wroostó" },
], ],
], ],
@ -102,7 +102,7 @@ const adjectives: {
[{ p: "وروستۍ", f: "wroostúy" }], [{ p: "وروستۍ", f: "wroostúy" }],
[{ p: "وروستۍ", f: "wroostúy" }], [{ p: "وروستۍ", f: "wroostúy" }],
[ [
{ p: "وروستیو", f: "wroostíyo" }, { p: "وروستیو", f: "wroostúyo" },
{ p: "وروستو", f: "wroostó" }, { p: "وروستو", f: "wroostó" },
], ],
], ],
@ -453,7 +453,7 @@ const nouns: {
[{ p: "ترورزی", f: "trorzáy" }], [{ p: "ترورزی", f: "trorzáy" }],
[{ p: "ترورزي", f: "trorzée" }], [{ p: "ترورزي", f: "trorzée" }],
[ [
{ p: "ترورزیو", f: "trorzíyo" }, { p: "ترورزیو", f: "trorzúyo" },
{ p: "ترورزو", f: "trorzó" }, { p: "ترورزو", f: "trorzó" },
], ],
], ],
@ -461,7 +461,7 @@ const nouns: {
[{ p: "ترورزۍ", f: "trorzúy" }], [{ p: "ترورزۍ", f: "trorzúy" }],
[{ p: "ترورزۍ", f: "trorzúy" }], [{ p: "ترورزۍ", f: "trorzúy" }],
[ [
{ p: "ترورزیو", f: "trorzíyo" }, { p: "ترورزیو", f: "trorzúyo" },
{ p: "ترورزو", f: "trorzó" }, { p: "ترورزو", f: "trorzó" },
], ],
], ],
@ -530,7 +530,7 @@ const nouns: {
[{ p: "پلوی", f: "palawáy" }], [{ p: "پلوی", f: "palawáy" }],
[{ p: "پلوي", f: "palawée" }], [{ p: "پلوي", f: "palawée" }],
[ [
{ p: "پلویو", f: "palawíyo" }, { p: "پلویو", f: "palawúyo" },
{ p: "پلوو", f: "palawó" }, { p: "پلوو", f: "palawó" },
], ],
], ],
@ -538,7 +538,7 @@ const nouns: {
[{ p: "پلوۍ", f: "palawúy" }], [{ p: "پلوۍ", f: "palawúy" }],
[{ p: "پلوۍ", f: "palawúy" }], [{ p: "پلوۍ", f: "palawúy" }],
[ [
{ p: "پلویو", f: "palawíyo" }, { p: "پلویو", f: "palawúyo" },
{ p: "پلوو", f: "palawó" }, { p: "پلوو", f: "palawó" },
], ],
], ],
@ -573,7 +573,7 @@ const nouns: {
[{ p: "سړی", f: "saRáy" }], [{ p: "سړی", f: "saRáy" }],
[{ p: "سړي", f: "saRée" }], [{ p: "سړي", f: "saRée" }],
[ [
{ p: "سړیو", f: "saRíyo" }, { p: "سړیو", f: "saRúyo" },
{ p: "سړو", f: "saRó" }, { p: "سړو", f: "saRó" },
], ],
], ],
@ -598,7 +598,7 @@ const nouns: {
[{ p: "سیلانی", f: "saylaanáy" }], [{ p: "سیلانی", f: "saylaanáy" }],
[{ p: "سیلاني", f: "saylaanée" }], [{ p: "سیلاني", f: "saylaanée" }],
[ [
{ p: "سیلانیو", f: "saylaaníyo" }, { p: "سیلانیو", f: "saylaanúyo" },
{ p: "سیلانو", f: "saylaanó" }, { p: "سیلانو", f: "saylaanó" },
], ],
], ],
@ -628,7 +628,7 @@ const nouns: {
[{ p: "ترېلی", f: "treláy" }], [{ p: "ترېلی", f: "treláy" }],
[{ p: "ترېلي", f: "trelée" }], [{ p: "ترېلي", f: "trelée" }],
[ [
{ p: "ترېلیو", f: "trelíyo" }, { p: "ترېلیو", f: "trelúyo" },
{ p: "ترېلو", f: "treló" }, { p: "ترېلو", f: "treló" },
], ],
], ],
@ -1385,7 +1385,10 @@ const nouns: {
fem: [ fem: [
[{ p: "دوستي", f: "dostee" }], [{ p: "دوستي", f: "dostee" }],
[{ p: "دوستۍ", f: "dostúy" }], [{ p: "دوستۍ", f: "dostúy" }],
[{ p: "دوستیو", f: "dostúyo" }], [
{ p: "دوستیو", f: "dostúyo" },
{ p: "دوستو", f: "dostó" },
],
], ],
}, },
}, },
@ -1407,7 +1410,7 @@ const nouns: {
[{ p: "کرسۍ", f: "kUrsúy" }], [{ p: "کرسۍ", f: "kUrsúy" }],
[{ p: "کرسۍ", f: "kUrsúy" }], [{ p: "کرسۍ", f: "kUrsúy" }],
[ [
{ p: "کرسیو", f: "kUrsíyo" }, { p: "کرسیو", f: "kUrsúyo" },
{ p: "کرسو", f: "kUrsó" }, { p: "کرسو", f: "kUrsó" },
], ],
], ],

View File

@ -294,7 +294,7 @@ function inflectEmphasizedYayUnisex(p: string, f: string): T.UnisexInflections {
[{ p, f }], [{ p, f }],
[{ p: `${baseP}ي`, f: `${baseF}ée` }], [{ p: `${baseP}ي`, f: `${baseF}ée` }],
[ [
{ p: `${baseP}یو`, f: `${baseF}íyo` }, { p: `${baseP}یو`, f: `${baseF}úyo` },
{ p: `${baseP}و`, f: `${baseF}ó` }, { p: `${baseP}و`, f: `${baseF}ó` },
], ],
], ],
@ -302,7 +302,7 @@ function inflectEmphasizedYayUnisex(p: string, f: string): T.UnisexInflections {
[{ p: `${baseP}ۍ`, f: `${baseF}úy` }], [{ p: `${baseP}ۍ`, f: `${baseF}úy` }],
[{ p: `${baseP}ۍ`, f: `${baseF}úy` }], [{ p: `${baseP}ۍ`, f: `${baseF}úy` }],
[ [
{ p: `${baseP}یو`, f: `${baseF}íyo` }, { p: `${baseP}یو`, f: `${baseF}úyo` },
{ p: `${baseP}و`, f: `${baseF}ó` }, { p: `${baseP}و`, f: `${baseF}ó` },
], ],
], ],
@ -363,7 +363,7 @@ function inflectRegularEmphasizedYayMasc(p: string, f: string): T.Inflections {
[{ p, f }], [{ p, f }],
[{ p: `${baseP}ي`, f: `${baseF}ée` }], [{ p: `${baseP}ي`, f: `${baseF}ée` }],
[ [
{ p: `${baseP}یو`, f: `${baseF}íyo` }, { p: `${baseP}یو`, f: `${baseF}úyo` },
{ p: `${baseP}و`, f: `${baseF}ó` }, { p: `${baseP}و`, f: `${baseF}ó` },
], ],
], ],
@ -443,7 +443,10 @@ function inflectRegularInanEeFem(p: string, f: string): T.Inflections {
fem: [ fem: [
[{ p, f }], [{ p, f }],
[{ p: `${baseP}ۍ`, f: `${baseF}úy` }], [{ p: `${baseP}ۍ`, f: `${baseF}úy` }],
[{ p: `${baseP}یو`, f: `${baseF}úyo` }], [
{ p: `${baseP}یو`, f: `${baseF}úyo` },
{ p: `${baseP}و`, f: `${baseF}ó` },
],
], ],
}; };
} }
@ -456,7 +459,7 @@ function inflectRegularUyFem(p: string, f: string): T.Inflections {
[{ p, f: `${baseF}úy` }], [{ p, f: `${baseF}úy` }],
[{ p, f: `${baseF}úy` }], [{ p, f: `${baseF}úy` }],
[ [
{ p: `${baseP}یو`, f: `${baseF}íyo` }, { p: `${baseP}یو`, f: `${baseF}úyo` },
{ p: `${baseP}و`, f: `${baseF}ó` }, { p: `${baseP}و`, f: `${baseF}ó` },
], ],
], ],