import './index.html'; import './sass/main.scss'; import React from 'react'; import ReactDOM from 'react-dom'; import {Header} from './components/Header'; import {Footer} from './components/Footer'; import {WordForm} from './components/WordForm'; import {Button} from './components/Button'; import {InfoDisplay} from './components/InfoDisplay'; import {EditDictionaryForm} from './components/EditDictionaryForm'; import {Dictionary} from './components/Dictionary'; import {dynamicSort} from './js/helpers'; const defaultDictionaryName = 'New', defaultListTypeName = 'Dictionary', defaultDictionaryDescription = 'A new dictionary.', defaultDictionaryCreatedBy = 'Someone', defaultDictionaryPartsOfSpeech = 'Noun,Adjective,Verb,Adverb,Preposition,Pronoun,Conjunction'; class Lexiconga extends React.Component { constructor(props) { super(props); this.showConsoleMessages = this.props.showConsoleMessages || false; this.state = { scroll: { x: 0, y: 0 }, details: { name: defaultDictionaryName, listTypeName: defaultListTypeName, description: defaultDictionaryDescription, createdBy: defaultDictionaryCreatedBy, nextWordId: 1, externalID: 0 }, words: [], settings: { allowDuplicates: false, caseSensitive: false, partsOfSpeech: defaultDictionaryPartsOfSpeech, sortByEquivalent: false, isComplete: false, isPublic: false } }; this.defaultDictionaryJSON = JSON.stringify(this.state.dictionaryDetails); //Saves a stringifyed default dictionary. this.previousDictionary = {}; } saveChanges(changesObject) { let updatedDetails = this.state.details; let updatedSettings = this.state.settings; updatedDetails.name = changesObject.name; updatedDetails.listTypeName = changesObject.listTypeName; updatedDetails.description = changesObject.description; updatedSettings.partsOfSpeech = changesObject.partsOfSpeech; updatedSettings.allowDuplicates = changesObject.allowDuplicates; updatedSettings.caseSensitive = changesObject.caseSensitive; updatedSettings.sortByEquivalent = changesObject.sortByEquivalent; updatedSettings.isComplete = changesObject.isComplete; updatedSettings.isPublic = changesObject.isPublic; this.setState({ details: updatedDetails, settings: updatedSettings }, () => { this.saveLocalDictionary(); }); } sortWords(array) { let sortMethod; if (this.state.settings.sortByEquivalent) { sortMethod = ['simpleDefinition', 'partOfSpeech']; } else { sortMethod = ['name', 'partOfSpeech']; } return array.sort(dynamicSort(sortMethod)); } addWord(wordObject) { let newWord = { name: wordObject.name || 'errorWord', pronunciation: wordObject.pronunciation || '', partOfSpeech: wordObject.partOfSpeech || '', simpleDefinition: wordObject.simpleDefinition || '', longDefinition: wordObject.longDefinition || '', wordId: this.state.details.nextWordId } let updatedWords = this.state.words.concat([newWord]); updatedWords = this.sortWords(updatedWords); let updatedDetails = this.state.details; updatedDetails.nextWordId += 1; this.setState({ words: updatedWords, details: updatedDetails }, () => { if (this.showConsoleMessages) { console.log('New word ' + newWord.name + ' added successfully'); } }); } firstIndexWordWithId(id) { let resultIndex = -1; for (let i = 0; i < this.state.words.length; i++) { let word = this.state.words[i]; if (word.wordId === id) { resultIndex = i; break; } } return resultIndex; } updateWord(wordId, wordObject) { let index = this.firstIndexWordWithId(wordId); if (index >= 0) { if (this.showConsoleMessages) console.log('Updating ' + this.state.words[index].name + ' to ' + wordObject.name); let updatedWords = this.state.words; updatedWords[index].name = wordObject.name; updatedWords[index].pronunciation = wordObject.pronunciation; updatedWords[index].partOfSpeech = wordObject.partOfSpeech; updatedWords[index].simpleDefinition = wordObject.simpleDefinition; updatedWords[index].longDefinition = wordObject.longDefinition; updatedWords = this.sortWords(updatedWords); this.setState({words: updatedWords}, () => { if (this.showConsoleMessages) { console.log('Updated successfully'); } }); } else { console.log('Could not update. No word with id of ' + wordId.toString()); } } dictionaryIsDefault(dictionary) { if (this.showConsoleMessages) { console.log('Name: ' + dictionary.name + '\nDescription: ' + dictionary.description + '\n# Words: ' + dictionary.words.length); } return dictionary.words.length <= 0 && dictionary.description === defaultDictionaryDescription && dictionary.name === defaultDictionaryName; } saveLocalDictionary() { let saveDictionary = { name: this.state.details.name, listTypeName: this.state.details.listTypeName, description: this.state.details.description, createdBy: this.state.details.createdBy, words: this.state.words, nextWordId: this.state.details.nextWordId, settings: this.state.settings, externalID: this.state.details.externalID }; if (!this.dictionaryIsDefault(saveDictionary)) { localStorage.setItem('dictionary', JSON.stringify(saveDictionary)); console.log('Saved "' + this.state.details.name + '" dictionary locally'); } else { if (this.showConsoleMessages) console.log('Current dictionary is default, so it wasn\'t saved'); } } loadLocalDictionary() { if (localStorage.getItem('dictionary')){ let localDictionary = JSON.parse(localStorage.getItem('dictionary')); if (!this.dictionaryIsDefault(localDictionary)) { this.setState({ details: { name: localDictionary.name, listTypeName: localDictionary.listTypeName || defaultListTypeName, description: localDictionary.description, createdBy: localDictionary.createdBy, nextWordId: localDictionary.nextWordId, externalID: localDictionary.externalID }, words: localDictionary.words.slice(), settings: { allowDuplicates: localDictionary.settings.allowDuplicates, caseSensitive: localDictionary.settings.caseSensitive, partsOfSpeech: localDictionary.settings.partsOfSpeech, sortByEquivalent: localDictionary.settings.sortByEquivalent, isComplete: localDictionary.settings.isComplete, isPublic: localDictionary.settings.isPublic } }, () => { if (this.showConsoleMessages) { console.log('Loaded local "' + this.state.details.name + '" dictionary successfully'); } }); } else { if (this.showConsoleMessages) console.log('Locally saved dictionary is default'); } } else { if (this.showConsoleMessages) console.log('No saved local dictionary'); } } render() { return (