2021-09-12 22:12:39 -07:00
|
|
|
import React, {useState} from 'react';
|
2019-01-22 00:41:13 -08:00
|
|
|
|
2019-01-25 02:19:22 -08:00
|
|
|
import './App.scss';
|
2021-09-12 02:22:50 -07:00
|
|
|
import {declineSaimiar} from './saimiar_morphology';
|
2021-09-12 22:12:39 -07:00
|
|
|
import {SaiEntryProps, JutEntryProps} from './dbtypes';
|
2019-01-25 02:19:22 -08:00
|
|
|
|
2021-09-12 00:55:17 -07:00
|
|
|
const backendUrl = 'https://kucinakobackend.ichigo.everydayimshuflin.com';
|
2019-01-24 02:56:41 -08:00
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
enum Conlang {
|
2021-09-12 20:48:11 -07:00
|
|
|
Saimiar = 'saimiar',
|
|
|
|
Elesu = 'elesu',
|
|
|
|
Tukvaysi = 'tukvaysi',
|
|
|
|
Juteyuji = 'juteyuji',
|
2019-01-24 02:56:41 -08:00
|
|
|
}
|
|
|
|
|
2021-09-12 21:11:52 -07:00
|
|
|
enum SearchDirection {
|
|
|
|
ToConlang,
|
|
|
|
ToEnglish
|
|
|
|
}
|
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
const renderConlang = (conlang: Conlang): string => {
|
|
|
|
if (conlang === Conlang.Saimiar) {
|
2021-09-12 02:07:44 -07:00
|
|
|
return 'Saimiar';
|
|
|
|
}
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
if (conlang === Conlang.Elesu) {
|
2021-09-12 02:07:44 -07:00
|
|
|
return 'Elésu';
|
|
|
|
}
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
if (conlang === Conlang.Juteyuji) {
|
2021-09-12 02:07:44 -07:00
|
|
|
return 'Juteyuji';
|
|
|
|
}
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
if (conlang === Conlang.Tukvaysi) {
|
2021-09-12 02:07:44 -07:00
|
|
|
return 'Tukvaysi';
|
|
|
|
}
|
2021-09-12 17:22:00 -07:00
|
|
|
};
|
|
|
|
|
2021-09-12 22:55:46 -07:00
|
|
|
function buildRequest(searchTerm: string, conlang: Conlang, direction: SearchDirection, jsonHandler: (json: Object) => void) {
|
|
|
|
const specForConlang = {
|
|
|
|
[Conlang.Saimiar]: 'sai',
|
|
|
|
[Conlang.Juteyuji]: 'sai',
|
|
|
|
[Conlang.Tukvaysi]: 'tuk',
|
|
|
|
[Conlang.Elesu]: 'elesu',
|
|
|
|
};
|
|
|
|
|
|
|
|
const conlangDb = conlang.toString();
|
|
|
|
const field = direction === SearchDirection.ToConlang ? 'eng' : specForConlang[conlang];
|
|
|
|
const query = `${conlangDb}?${field}=like.*${searchTerm}*`;
|
|
|
|
const effectiveUri = `${backendUrl}/${query}`;
|
|
|
|
|
|
|
|
fetch(`${effectiveUri}`)
|
2021-09-12 17:22:00 -07:00
|
|
|
.then((resp) => resp.json())
|
|
|
|
.then((json) => {
|
|
|
|
jsonHandler(json);
|
|
|
|
});
|
2019-01-28 23:08:43 -08:00
|
|
|
}
|
|
|
|
|
2021-09-12 21:35:46 -07:00
|
|
|
interface EntryProps {
|
|
|
|
conlang: Conlang;
|
|
|
|
entry: SaiEntryProps | JutEntryProps;
|
|
|
|
key: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Entry = (props: EntryProps) => {
|
2021-09-12 02:07:44 -07:00
|
|
|
const {conlang} = props;
|
2021-09-12 17:22:00 -07:00
|
|
|
if (conlang === Conlang.Saimiar) {
|
2021-09-12 21:35:46 -07:00
|
|
|
return <SaiEntry entry={ props.entry as SaiEntryProps } />;
|
2021-09-12 02:07:44 -07:00
|
|
|
}
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 20:48:11 -07:00
|
|
|
if (conlang === Conlang.Juteyuji) {
|
2021-09-12 21:35:46 -07:00
|
|
|
return <JutEntry entry={ props.entry as JutEntryProps } />;
|
2021-09-12 20:48:11 -07:00
|
|
|
}
|
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
return <div>Conlang { conlang } not yet supported</div>;
|
2021-09-12 01:07:30 -07:00
|
|
|
};
|
2019-01-28 23:08:43 -08:00
|
|
|
|
2021-09-12 21:35:46 -07:00
|
|
|
const SaiEntry = (props: {entry: SaiEntryProps}) => {
|
2021-09-12 02:07:44 -07:00
|
|
|
const {entry} = props;
|
|
|
|
const synCategory = entry.syn_category;
|
|
|
|
const isNominal = synCategory === 'nominal';
|
|
|
|
return (
|
|
|
|
<div className="searchResult" key={ entry.id }>
|
|
|
|
<b>{ entry.sai }</b> - { entry.eng }
|
|
|
|
<br />
|
|
|
|
<span className="synclass">
|
|
|
|
<i>{ entry.syn_category }</i>
|
|
|
|
{ entry.morph_type ? `\t\t${entry.morph_type}` : null }
|
|
|
|
<br/>
|
|
|
|
{ isNominal ? formatMorphology(entry) : null }
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
);
|
2021-09-12 01:07:30 -07:00
|
|
|
};
|
2019-01-26 01:34:35 -08:00
|
|
|
|
2021-09-12 21:35:46 -07:00
|
|
|
const JutEntry = (props: {entry: JutEntryProps}) => {
|
2021-09-12 20:48:11 -07:00
|
|
|
const {entry} = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="searchResult" key={ entry.id }>
|
|
|
|
<b>{ entry.jut }</b> - { entry.eng }
|
|
|
|
<br/>
|
|
|
|
<span className="synclass">
|
|
|
|
{ entry.syn_category === 'noun' ? entry.gender : null }
|
|
|
|
</span>
|
|
|
|
</div>);
|
|
|
|
};
|
|
|
|
|
2019-07-23 02:54:10 -07:00
|
|
|
function formatMorphology(entry) {
|
2021-09-12 02:07:44 -07:00
|
|
|
const decl = declineSaimiar(entry);
|
|
|
|
if (!decl) {
|
|
|
|
return '';
|
|
|
|
}
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 02:07:44 -07:00
|
|
|
return (<span style={ {fontSize: 'medium', color: '#6a3131'} } >
|
2021-09-11 20:14:59 -07:00
|
|
|
Abs: <i>{decl.abs}</i>, Erg: <i>{decl.erg}</i>,
|
|
|
|
Adp: <i>{decl.adp}</i>,
|
|
|
|
All: <i>{decl.all}</i>,
|
|
|
|
Loc: <i>{decl.loc}</i>,
|
|
|
|
Ell: <i>{decl.ell}</i>,
|
|
|
|
Inst: <i>{decl.inst}</i>,
|
|
|
|
Rel: <i>{decl.rel}</i>
|
2021-09-12 02:07:44 -07:00
|
|
|
</span>);
|
2019-07-23 02:54:10 -07:00
|
|
|
}
|
|
|
|
|
2021-09-12 21:35:46 -07:00
|
|
|
interface ResultsProps {
|
2021-09-12 21:43:26 -07:00
|
|
|
searchResults: Array<any>;
|
2021-09-12 21:35:46 -07:00
|
|
|
searchTerm: string;
|
|
|
|
conlang: Conlang;
|
|
|
|
direction: SearchDirection;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Results = (props: ResultsProps) => {
|
2021-09-12 02:07:44 -07:00
|
|
|
const content = () => {
|
|
|
|
const {conlang} = props;
|
|
|
|
const num = props.searchResults.length;
|
2021-09-12 20:48:11 -07:00
|
|
|
|
2021-09-12 17:22:00 -07:00
|
|
|
const renderedName = renderConlang(conlang);
|
2021-09-12 21:11:52 -07:00
|
|
|
const searchType = (props.direction === SearchDirection.ToConlang) ? `English -> ${renderedName}` : `${renderedName} -> English`;
|
2021-09-12 02:07:44 -07:00
|
|
|
const header = (
|
|
|
|
<div className="searchResultHeader" key="header">
|
2021-09-12 01:07:30 -07:00
|
|
|
Searched for <b>{ props.searchTerm }</b>, { searchType }, found { num } result(s)
|
2021-09-12 02:07:44 -07:00
|
|
|
</div>);
|
|
|
|
const entries = props.searchResults.map(
|
|
|
|
(entry, _idx) => <Entry entry={ entry } key= { entry.id } conlang={ conlang } />,
|
|
|
|
);
|
|
|
|
return [header].concat(entries);
|
|
|
|
};
|
|
|
|
|
|
|
|
const results = props.searchResults;
|
|
|
|
return (
|
|
|
|
<div className="results">
|
|
|
|
{ results ? content() : 'No search' }
|
|
|
|
</div>
|
|
|
|
);
|
2021-09-12 01:07:30 -07:00
|
|
|
};
|
2019-01-26 01:18:27 -08:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const App = (_props) => {
|
|
|
|
const [searchResults, setSearchResults] = useState(null);
|
|
|
|
const [conlang, setConlang] = useState(Conlang.Saimiar);
|
|
|
|
const [direction, setDirection] = useState(null);
|
|
|
|
const [searchTerm, setSearchTerm] = useState(null);
|
2021-09-12 02:22:50 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const [searchBoxInput, setSearchBoxInput] = useState('');
|
2021-09-12 02:07:44 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const searchConlang = (_evt) => {
|
|
|
|
const searchTerm = searchBoxInput;
|
2021-09-12 02:07:44 -07:00
|
|
|
if (searchTerm === '') {
|
2021-09-12 22:12:39 -07:00
|
|
|
setSearchResults(null);
|
|
|
|
setSearchTerm(null);
|
|
|
|
setDirection(null);
|
2021-09-12 22:55:46 -07:00
|
|
|
return;
|
2021-09-12 02:07:44 -07:00
|
|
|
}
|
|
|
|
|
2021-09-12 22:55:46 -07:00
|
|
|
if (conlang === Conlang.Saimiar || conlang === Conlang.Juteyuji) {
|
|
|
|
buildRequest(searchTerm, conlang, SearchDirection.ToEnglish, (json) => {
|
2021-09-12 22:12:39 -07:00
|
|
|
setSearchResults(json);
|
|
|
|
setSearchTerm(searchTerm);
|
|
|
|
setDirection(SearchDirection.ToEnglish);
|
2021-09-12 20:48:11 -07:00
|
|
|
});
|
2021-09-12 22:55:46 -07:00
|
|
|
} else {
|
|
|
|
console.error(`Conlang ${conlang} not supported`);
|
2021-09-12 20:48:11 -07:00
|
|
|
}
|
2021-09-12 22:12:39 -07:00
|
|
|
};
|
2021-09-12 20:48:11 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const searchEng = (_evt) => {
|
|
|
|
const searchTerm = searchBoxInput;
|
2021-09-12 02:07:44 -07:00
|
|
|
if (searchTerm === '') {
|
2021-09-12 22:12:39 -07:00
|
|
|
setSearchResults(null);
|
|
|
|
setSearchTerm(null);
|
2021-09-12 22:55:46 -07:00
|
|
|
setDirection(null);
|
2021-09-12 02:07:44 -07:00
|
|
|
} else {
|
2021-09-12 22:55:46 -07:00
|
|
|
buildRequest(searchTerm, conlang, SearchDirection.ToConlang, (json) => {
|
2021-09-12 22:12:39 -07:00
|
|
|
setSearchResults(json);
|
|
|
|
setSearchTerm(searchTerm);
|
|
|
|
setDirection(SearchDirection.ToConlang);
|
2021-09-12 02:07:44 -07:00
|
|
|
});
|
|
|
|
}
|
2021-09-12 22:12:39 -07:00
|
|
|
};
|
2021-09-12 02:07:44 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const handleLangChange = (evt) => {
|
2021-09-12 17:22:00 -07:00
|
|
|
const conlang: Conlang = evt.target.value as Conlang;
|
2021-09-12 22:12:39 -07:00
|
|
|
setConlang(conlang);
|
|
|
|
setSearchResults(null);
|
|
|
|
};
|
2021-09-12 02:07:44 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
const conlangs = [Conlang.Saimiar, Conlang.Elesu, Conlang.Tukvaysi, Conlang.Juteyuji];
|
|
|
|
const langSelectDropdown = (
|
|
|
|
<select value={conlang} onChange={ handleLangChange }>
|
|
|
|
{conlangs.map((conlang) => <option value={conlang} key={conlang}>{renderConlang(conlang)}</option>)}
|
|
|
|
</select>
|
|
|
|
);
|
2021-09-12 17:22:00 -07:00
|
|
|
|
2021-09-12 22:12:39 -07:00
|
|
|
return (
|
|
|
|
<main>
|
|
|
|
<div className="container">
|
|
|
|
<div className="search">
|
2021-09-12 22:17:30 -07:00
|
|
|
<h1>Kucinako - Wordbook of Arzhanai languages</h1>
|
|
|
|
<p><b>Kucinako</b> is a dictionary for searching for words in various languages of the world Arzhanø, and their English
|
|
|
|
equivalents.</p>
|
2021-09-12 22:12:39 -07:00
|
|
|
<div className="textInput">
|
|
|
|
<input className="textInput" type="text" value={ searchBoxInput } onChange={ (evt) => {
|
|
|
|
setSearchBoxInput(evt.target.value);
|
|
|
|
} } />
|
2021-09-12 02:07:44 -07:00
|
|
|
</div>
|
2021-09-12 22:12:39 -07:00
|
|
|
<br/>
|
|
|
|
{ langSelectDropdown }
|
|
|
|
<button onClick={ searchConlang } className="searchButton">{renderConlang(conlang)}</button>
|
|
|
|
<button onClick={ searchEng } className="searchButton">English</button>
|
2021-09-12 02:07:44 -07:00
|
|
|
</div>
|
2021-09-12 22:12:39 -07:00
|
|
|
<Results
|
|
|
|
searchResults={ searchResults }
|
|
|
|
searchTerm= { searchTerm }
|
|
|
|
conlang={ conlang }
|
|
|
|
direction={ direction }
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
);
|
|
|
|
};
|
2019-01-22 00:41:13 -08:00
|
|
|
|
|
|
|
export default App;
|