import variables from 'modules/variables'; import { PureComponent } from 'react'; import { toast } from 'react-toastify'; import { TextField } from '@mui/material'; import EventBus from 'modules/helpers/eventbus'; export default class Text extends PureComponent { constructor(props) { super(props); this.state = { value: localStorage.getItem(this.props.name) || '', }; } handleChange = (e) => { let { value } = e.target; // Alex wanted font to work with montserrat and Montserrat, so I made it work if (this.props.upperCaseFirst === true) { value = value.charAt(0).toUpperCase() + value.slice(1); } localStorage.setItem(this.props.name, value); this.setState({ value, }); if (this.props.element) { if (!document.querySelector(this.props.element)) { document.querySelector('.reminder-info').style.display = 'flex'; return localStorage.setItem('showReminder', true); } } EventBus.dispatch('refresh', this.props.category); }; resetItem = () => { this.handleChange({ target: { value: this.props.default || '', }, }); toast(variables.language.getMessage(variables.languagecode, 'toasts.reset')); }; render() { return ( <> {this.props.textarea === true ? ( ) : ( )} {variables.language.getMessage( variables.languagecode, 'modals.main.settings.buttons.reset', )} ); } }