2019-12-04 22:25:16 +00:00
|
|
|
|
import React, { useState, useReducer } from 'react';
|
2019-11-26 22:42:19 +00:00
|
|
|
|
import './PhonoChangeApplier.scss';
|
2019-12-04 06:11:21 +00:00
|
|
|
|
|
|
|
|
|
// import ls from 'local-storage';
|
2019-11-26 22:42:19 +00:00
|
|
|
|
|
2019-11-26 23:09:51 +00:00
|
|
|
|
import ProtoLang from './components/ProtoLang';
|
2019-11-27 02:44:07 +00:00
|
|
|
|
import Features from './components/Features';
|
2019-11-29 23:36:55 +00:00
|
|
|
|
import Epochs from './components/Epochs';
|
2019-11-30 05:48:37 +00:00
|
|
|
|
import Options from './components/Options';
|
2019-11-30 07:49:51 +00:00
|
|
|
|
import Output from './components/Output';
|
2019-11-26 23:09:51 +00:00
|
|
|
|
|
2019-12-12 06:19:54 +00:00
|
|
|
|
import {stateReducer} from './reducers/stateReducer';
|
|
|
|
|
import {initState} from './reducers/stateReducer.init';
|
2019-12-04 22:25:16 +00:00
|
|
|
|
|
2019-11-26 22:42:19 +00:00
|
|
|
|
const PhonoChangeApplier = () => {
|
2019-12-04 22:25:16 +00:00
|
|
|
|
const [ state, dispatch ] = useReducer(
|
|
|
|
|
stateReducer,
|
|
|
|
|
{},
|
|
|
|
|
initState
|
|
|
|
|
)
|
2019-12-17 06:22:37 +00:00
|
|
|
|
// ! DONE
|
2019-12-04 01:18:53 +00:00
|
|
|
|
const [ lexicon, setLexicon ] = useState(['mun', 'tʰu', 'tɯm', 'utʰ']);
|
2019-12-17 06:22:37 +00:00
|
|
|
|
|
|
|
|
|
// ! UNDONE
|
2019-11-29 22:57:40 +00:00
|
|
|
|
const [ phonemes, setPhonemes ] = useState(
|
2019-12-04 06:11:21 +00:00
|
|
|
|
{
|
|
|
|
|
n: [ 'occlusive', 'sonorant', 'obstruent', 'nasal', 'alveolar' ],
|
|
|
|
|
m: [ 'occlusive', 'sonorant', 'obstruent', 'nasal', 'bilabial' ],
|
|
|
|
|
u: [ 'continuant', 'sonorant', 'syllabic', 'high', 'back', 'rounded' ],
|
|
|
|
|
ɯ: [ 'continuant', 'sonorant', 'syllabic', 'high', 'back', 'unrounded' ],
|
|
|
|
|
t: [ 'occlusive', 'plosive', 'obstruent', 'alveolar' ],
|
|
|
|
|
tʰ: [ 'occlusive', 'plosive', 'obstruent', 'alveolar', 'aspirated' ],
|
|
|
|
|
}
|
2019-11-27 07:34:00 +00:00
|
|
|
|
);
|
2019-12-04 20:23:14 +00:00
|
|
|
|
const [ epochs, setEpochs ] = useState([{name: 'epoch 1', changes:['[+ rounded]>[- rounded + unrounded]/_#']}]);
|
2019-11-30 06:54:52 +00:00
|
|
|
|
const [ options, setOptions ] = useState({output: 'default', save: false})
|
2019-11-30 08:00:09 +00:00
|
|
|
|
const [ results, setResults ] = useState([])
|
2019-11-30 23:58:44 +00:00
|
|
|
|
const [ errors, setErrors ] = useState({})
|
2019-12-04 06:11:21 +00:00
|
|
|
|
const [ features, setFeatures ] = useState(
|
|
|
|
|
['occlusive', 'sonorant', 'obstruent', 'nasal', 'alveolar','bilabial',
|
|
|
|
|
'continuant','syllabic','high','back','rounded','unrounded', 'plosive','aspirated'])
|
2019-12-04 05:40:12 +00:00
|
|
|
|
|
2019-11-30 07:37:32 +00:00
|
|
|
|
const runChanges = e => {
|
|
|
|
|
e.preventDefault();
|
2019-11-30 23:58:44 +00:00
|
|
|
|
|
|
|
|
|
let ruleError = epochs.reduce((errorObject, epoch) => {
|
2019-11-30 23:13:10 +00:00
|
|
|
|
epoch.changes.map((change, index) => {
|
2019-12-04 05:40:12 +00:00
|
|
|
|
if (!change.match(/>.*\/.*_/)) {
|
|
|
|
|
errorObject[epoch.name]
|
|
|
|
|
? errorObject[epoch.name].push(index)
|
|
|
|
|
: errorObject[epoch.name] = [index]
|
|
|
|
|
errorObject[epoch.name].ruleSyntaxError = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO validate phoneme syntax
|
|
|
|
|
let decomposedChange = change.split('>');
|
|
|
|
|
decomposedChange = [decomposedChange[0], ...decomposedChange[1].split('/')]
|
|
|
|
|
decomposedChange = [decomposedChange[0], decomposedChange[1], ...decomposedChange[2].split('_')];
|
|
|
|
|
|
2019-11-30 23:13:10 +00:00
|
|
|
|
})
|
|
|
|
|
return errorObject;
|
|
|
|
|
}, {})
|
2019-11-30 21:50:37 +00:00
|
|
|
|
|
2019-12-04 05:40:12 +00:00
|
|
|
|
|
2019-11-30 23:58:44 +00:00
|
|
|
|
if (Object.entries(ruleError).length) return setErrors(ruleError)
|
|
|
|
|
setErrors({});
|
|
|
|
|
|
2019-12-04 01:18:53 +00:00
|
|
|
|
// decompose Lexical Items
|
|
|
|
|
// moving window on phonemes of each lexical item
|
|
|
|
|
let lexicalFeatureBundles = []
|
|
|
|
|
lexicon.forEach(lexeme => {
|
|
|
|
|
let lexemeBundle = [];
|
|
|
|
|
let startingIndex = 0;
|
|
|
|
|
let lastIndex = lexeme.length - 1;
|
|
|
|
|
[...lexeme].forEach((_, index) => {
|
|
|
|
|
if (phonemes[lexeme.slice(startingIndex, index + 1)] && index !== lastIndex) return;
|
|
|
|
|
if (phonemes[lexeme.slice(startingIndex, index + 1)]) return lexemeBundle.push(phonemes[lexeme.slice(startingIndex)])
|
|
|
|
|
if (index !== 0 && index !== lastIndex) lexemeBundle.push(phonemes[lexeme.slice(startingIndex, index)])
|
|
|
|
|
if (index === lastIndex) {
|
|
|
|
|
lexemeBundle.push(phonemes[lexeme.slice(startingIndex, index)])
|
|
|
|
|
lexemeBundle.push(phonemes[lexeme.slice(index)])
|
|
|
|
|
}
|
|
|
|
|
startingIndex = index;
|
|
|
|
|
})
|
2019-12-04 20:23:14 +00:00
|
|
|
|
lexemeBundle.unshift(['#'])
|
|
|
|
|
lexemeBundle.push(['#'])
|
2019-12-04 05:40:12 +00:00
|
|
|
|
lexicalFeatureBundles.push(lexemeBundle);
|
2019-12-04 01:18:53 +00:00
|
|
|
|
})
|
2019-12-04 20:23:14 +00:00
|
|
|
|
console.log(lexicalFeatureBundles)
|
2019-12-04 05:40:12 +00:00
|
|
|
|
|
2019-12-04 06:11:21 +00:00
|
|
|
|
// decompose rules
|
|
|
|
|
let allEpochs = epochs.map(epoch => {
|
|
|
|
|
let ruleBundle = epoch.changes.map(rule => {
|
|
|
|
|
return {
|
2019-12-04 20:23:14 +00:00
|
|
|
|
input: rule.split('>')[0].replace(/\[|\]|\+/g, '').trim(),
|
2019-12-04 06:11:21 +00:00
|
|
|
|
result: rule.split('>')[1].split('/')[0],
|
2019-12-04 20:23:14 +00:00
|
|
|
|
preInput: rule.split('/')[1].split('_')[0].replace(/\[|\]|\+/g, '').trim(),
|
|
|
|
|
postInput: rule.split('/')[1].split('_')[1].replace(/\[|\]|\+/g, '').trim(),
|
2019-12-04 06:11:21 +00:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
return {epoch: epoch.name, rules: ruleBundle}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
console.log(allEpochs)
|
2019-12-04 01:18:53 +00:00
|
|
|
|
// apply sound changes
|
2019-12-04 20:23:14 +00:00
|
|
|
|
allEpochs.reduce((diachronicLexicon, epoch) => {
|
|
|
|
|
let startingLexicon = diachronicLexicon.length
|
|
|
|
|
? diachronicLexicon[diachronicLexicon.length - 1]
|
|
|
|
|
: lexicalFeatureBundles;
|
|
|
|
|
let currentRules = epoch.rules;
|
|
|
|
|
let resultingLexicon = startingLexicon.forEach(lexeme => {
|
|
|
|
|
currentRules.forEach(rule => {
|
|
|
|
|
let ruleEnvironment = [[rule.preInput], [rule.input], [rule.postInput]];
|
|
|
|
|
console.log(ruleEnvironment)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
diachronicLexicon.push(resultingLexicon)
|
|
|
|
|
},[])
|
2019-12-04 01:18:53 +00:00
|
|
|
|
|
|
|
|
|
// handle output
|
2019-11-30 07:37:32 +00:00
|
|
|
|
}
|
2019-11-27 02:39:40 +00:00
|
|
|
|
|
2019-11-26 23:09:51 +00:00
|
|
|
|
return (
|
|
|
|
|
<div className="PhonoChangeApplier" data-testid="PhonoChangeApplier">
|
2019-12-16 22:52:38 +00:00
|
|
|
|
<ProtoLang lexicon={state.lexicon} dispatch={dispatch}/>
|
2019-12-18 03:10:48 +00:00
|
|
|
|
<Features phones={state.phones} features={state.features} dispatch={dispatch}/>
|
2019-12-19 05:24:26 +00:00
|
|
|
|
<Epochs epochs={state.epochs} dispatch={dispatch} />
|
|
|
|
|
<Options options={state.options} dispatch={dispatch}/>
|
2019-11-30 08:00:09 +00:00
|
|
|
|
<Output results={results} setResults={setResults}/>
|
2019-11-26 23:09:51 +00:00
|
|
|
|
</div>
|
|
|
|
|
);
|
2019-11-26 22:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default PhonoChangeApplier;
|