// import 'font-awesome/scss/font-awesome.scss'; import './sass/main.scss'; import Inferno from 'inferno'; import Component from 'inferno-component'; import dictionary from './managers/DictionaryData'; if (process.env.NODE_ENV !== 'production') { require('inferno-devtools'); } import {Header} from './components/structure/Header'; import {MainDisplay} from './components/MainDisplay'; import {Footer} from './components/structure/Footer'; class App extends Component { constructor (props) { super(props); this.state = { name: dictionary.name, specification: dictionary.specification, description: dictionary.description, partsOfSpeech: dictionary.partsOfSpeech, displayedWords: [], searchConfig: null, } } get dictionaryInfo () { const {name, specification, description, partsOfSpeech} = this.state; const info = { name, specification, description, partsOfSpeech, }; return info; } updatePartsOfSpeech () { this.setState({ partsOfSpeech: dictionary.partsOfSpeech, }); } updateDisplayedWords () { // const {searchIn, searchTerm, filteredPartsOfSpeech} = this.state.searchConfig; // TODO: Sort out searching to remove this temporary solution. dictionary.wordsPromise.then(words => { this.setState({ displayedWords: words, }) }); } search (searchConfig) { this.setState({ searchConfig: searchConfig, }); } render () { return (