2021-09-12 00:55:17 -07:00
|
|
|
import React, {Component} from 'react';
|
2019-01-22 00:41:13 -08:00
|
|
|
|
2019-01-25 02:19:22 -08:00
|
|
|
import './App.scss';
|
2021-09-12 01:18:32 -07:00
|
|
|
import {declineSaimiar} from './saimiar_morphology.ts';
|
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
|
|
|
|
|
|
|
function makeRequest(queryString, jsonHandler) {
|
2021-09-12 00:55:17 -07:00
|
|
|
const effectiveUrl = `${backendUrl}/${queryString}`;
|
|
|
|
fetch(`${effectiveUrl}`)
|
|
|
|
.then((resp) => resp.json())
|
|
|
|
.then((json) => {
|
|
|
|
jsonHandler(json);
|
|
|
|
});
|
2019-01-24 02:56:41 -08:00
|
|
|
}
|
|
|
|
|
2019-01-28 23:08:43 -08:00
|
|
|
function renderConlangName(name) {
|
2021-09-12 00:55:17 -07:00
|
|
|
if (name === 'saimiar') {
|
|
|
|
return 'Saimiar';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'elesu') {
|
|
|
|
return 'Elésu';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'juteyuji') {
|
|
|
|
return 'Juteyuji';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'tukvaysi') {
|
|
|
|
return 'Tukvaysi';
|
|
|
|
}
|
2019-01-28 23:08:43 -08:00
|
|
|
}
|
|
|
|
|
2021-09-12 01:07:30 -07:00
|
|
|
const Entry = (props) => {
|
2021-09-12 00:55:17 -07:00
|
|
|
const {conlang} = props;
|
|
|
|
if (conlang === 'saimiar') {
|
|
|
|
return <SaiEntry entry={ props.entry } />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return <div>Unknown entry type for { conlang }</div>;
|
2021-09-12 01:07:30 -07:00
|
|
|
};
|
2019-01-28 23:08:43 -08:00
|
|
|
|
2021-09-12 01:07:30 -07:00
|
|
|
const SaiEntry = (props) => {
|
2021-09-12 00:55:17 -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
|
|
|
|
2019-07-23 02:54:10 -07:00
|
|
|
function formatMorphology(entry) {
|
2021-09-12 00:55:17 -07:00
|
|
|
const decl = declineSaimiar(entry);
|
|
|
|
if (!decl) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
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 00:55:17 -07:00
|
|
|
</span>);
|
2019-07-23 02:54:10 -07:00
|
|
|
}
|
|
|
|
|
2021-09-12 01:07:30 -07:00
|
|
|
const Results = (props) => {
|
|
|
|
const content = () => {
|
|
|
|
const {conlang} = props;
|
|
|
|
const num = props.searchResults.length;
|
2021-09-12 00:55:17 -07:00
|
|
|
const renderedName = renderConlangName(conlang);
|
2021-09-12 01:07:30 -07:00
|
|
|
const searchType = (props.direction === 'toConlang') ? `English -> ${renderedName}` : `${renderedName} -> English`;
|
2021-09-12 00:55:17 -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 00:55:17 -07:00
|
|
|
</div>);
|
2021-09-12 01:07:30 -07:00
|
|
|
const entries = props.searchResults.map(
|
2021-09-12 00:55:17 -07:00
|
|
|
(entry, _idx) => <Entry entry={ entry } key= { entry.id } conlang={ conlang } />,
|
|
|
|
);
|
|
|
|
return [header].concat(entries);
|
2021-09-12 01:07:30 -07:00
|
|
|
};
|
2021-09-12 00:55:17 -07:00
|
|
|
|
2021-09-12 01:07:30 -07:00
|
|
|
const results = props.searchResults;
|
|
|
|
return (
|
|
|
|
<div className="results">
|
|
|
|
{ results ? content() : 'No search' }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
2019-01-26 01:18:27 -08:00
|
|
|
|
2019-01-22 00:41:13 -08:00
|
|
|
class App extends Component {
|
2021-09-12 00:55:17 -07:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.input = React.createRef();
|
|
|
|
this.handleLangChange = this.handleLangChange.bind(this);
|
|
|
|
|
|
|
|
this.searchEng = this.searchEng.bind(this);
|
|
|
|
this.searchSaimiar = this.searchSaimiar.bind(this);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
searchResults: null,
|
|
|
|
conlang: 'saimiar',
|
|
|
|
direction: null,
|
|
|
|
searchTerm: null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
searchSaimiar(_evt) {
|
|
|
|
const searchTerm = this.input.current.value;
|
|
|
|
const request = `saimiar?sai=like.*${searchTerm}*`;
|
|
|
|
if (searchTerm === '') {
|
|
|
|
this.setState({searchResults: null, searchTerm: null, direction: null});
|
|
|
|
} else {
|
|
|
|
makeRequest(request, (json) => {
|
|
|
|
this.setState({searchResults: json, searchTerm, direction: 'toEnglish'});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
searchEng(_evt) {
|
|
|
|
const searchTerm = this.input.current.value;
|
|
|
|
const request = `saimiar?eng=like.*${searchTerm}*`;
|
|
|
|
if (searchTerm === '') {
|
|
|
|
this.setState({searchResults: null, searchTerm: null});
|
|
|
|
} else {
|
|
|
|
makeRequest(request, (json) => {
|
|
|
|
this.setState({searchResults: json, searchTerm, direction: 'toConlang'});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleLangChange(evt) {
|
|
|
|
const conlang = evt.target.value;
|
|
|
|
this.setState({conlang});
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<main>
|
|
|
|
<div className="container">
|
|
|
|
<div className="search">
|
|
|
|
<h1>Kucinako</h1>
|
|
|
|
<div className="textInput">
|
|
|
|
<input className="textInput" type="text" ref={ this.input } />
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<select ref={ this.langSelection } onChange={ this.handleLangChange } defaultValue="saimiar">
|
|
|
|
<option value="saimiar">Saimiar</option>
|
|
|
|
<option value="elesu">Elesu</option>
|
|
|
|
<option value="tukvaysi">Tukvaysi</option>
|
|
|
|
<option value="juteyuji">Juteyuji</option>
|
|
|
|
</select>
|
|
|
|
<button onClick={ this.searchSaimiar } className="searchButton">Saimiar</button>
|
|
|
|
<button onClick={ this.searchEng } className="searchButton">English</button>
|
|
|
|
</div>
|
|
|
|
<Results
|
|
|
|
searchResults={ this.state.searchResults }
|
|
|
|
searchTerm= { this.state.searchTerm }
|
|
|
|
conlang={ this.state.conlang }
|
|
|
|
direction={ this.state.direction }
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
2019-01-22 00:41:13 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|