Lexiconga/src/components/management/IPAField.jsx

135 lines
3.5 KiB
React
Raw Normal View History

import Inferno from 'inferno';
import Component from 'inferno-component';
const phondueUsage = require('../../../vendor/KeyboardFire/phondue/usage.html');
const digraphs = require('../../../vendor/KeyboardFire/phondue/digraphs.json');
import Helper from '../../Helper';
import { IPATable } from './IPATable';
export class IPAField extends Component {
/*
Modified from KeyboardFire's Phondue project (https://github.com/KeyboardFire/phondue)
to fit React/Inferno and Lexiconga
*/
constructor (props) {
super(props);
this.state = {
value: props.value || '',
doShowHelp: false,
doShowTable: false,
}
this.field = null;
}
2017-05-19 06:27:16 +02:00
componentWillReceiveProps (nextProps) {
this.setState({
value: nextProps.value,
2017-05-19 06:27:16 +02:00
});
}
showHelp () {
if (this.state.doShowHelp) {
return (
<div className='modal is-active'>
<div className='modal-background'
onClick={ () => this.setState({ doShowHelp: false }) } />
<div className='modal-card'>
<header className='modal-card-head'>
<h3 className='modal-card-title'>
IPA Shortcuts
</h3>
<button className='delete'
onClick={ () => this.setState({ doShowHelp: false }) } />
</header>
<section className='modal-card-body'>
<div className='content'
dangerouslySetInnerHTML={{
__html: phondueUsage,
}} />
</section>
</div>
</div>
);
}
}
showTable () {
if (this.state.doShowTable) {
return (
<IPATable
value={ this.state.value }
close={ () => this.setState({ doShowTable: false }) }
update={ (newValue) => this.setState({ value: newValue }, this.field.focus()) } />
);
}
}
showButtons () {
if (!this.props.isDisplayOnly) {
return (
<div>
<div className='help'>
<a className='button is-small'
onClick={ () => this.setState({ doShowHelp: true }) }>
Field Help
</a>
&nbsp;
<a className='button is-small'
onClick={ () => this.setState({ doShowTable: true }) }>
Show IPA Table
</a>
</div>
{ this.showHelp() } { this.showTable() }
</div>
);
}
}
onInput (event) {
let val = event.target.value,
pos = this.field.selectionStart || val.length;
if (event.key) {
const key = event.key,
digraph = digraphs[val.substr(pos - 1, 1) + key];
if (digraph) {
event.preventDefault();
val = val.slice(0, pos - 1) + digraph + val.slice(pos);
}
}
if (val !== this.state.value) {
this.setState({ value: val }, () => {
this.field.focus();
this.field.setSelectionRange(pos, pos);
});
}
}
render () {
return (
<div className='field'>
<label className='label'>Pronunciation</label>
<p className='control'>
<input className='input' type='text'
placeholder='[prə.ˌnʌn.si.ˈeɪ.ʃən]'
disabled={ !!this.props.isDisplayOnly }
ref={ (input) => this.field = input }
value={ this.state.value }
onInput={ (event) => this.onInput(event) }
onKeyDown={ (event) => this.onInput(event) }
onChange={ () => this.props.onChange(this.state.value) } />
</p>
{ this.showButtons() }
</div>
);
}
}