feat: custom quote option

This commit is contained in:
David Ralph
2021-03-18 17:58:23 +00:00
parent 418d658658
commit 47817e06ac
6 changed files with 89 additions and 20 deletions

View File

@@ -2,18 +2,67 @@ import React from 'react';
import Checkbox from '../Checkbox';
export default function QuoteSettings (props) {
const { quote } = props.language.sections;
import { toast } from 'react-toastify';
return (
<div>
<h2>{quote.title}</h2>
<Checkbox name='quote' text={props.language.enabled}/>
<Checkbox name='authorLink' text={quote.author_link}/>
<h3>{quote.buttons}</h3>
<Checkbox name='copyButton' text={quote.copy}/>
<Checkbox name='tweetButton' text={quote.tweet}/>
<Checkbox name='favouriteQuoteEnabled' text={quote.favourite}/>
</div>
);
export default class QuoteSettings extends React.PureComponent {
constructor(...args) {
super(...args);
this.state = {
customQuote: localStorage.getItem('customQuote'),
customQuoteAuthor: localStorage.getItem('customQuoteAuthor') || 'Unknown'
};
}
resetItem(key) {
switch (key) {
case 'customQuote':
localStorage.setItem('customQuote', '');
this.setState({
customQuote: ''
});
break;
case 'customQuoteAuthor':
localStorage.setItem('customQuoteAuthor', '');
this.setState({
customQuoteAuthor: 'Unknown'
});
break;
default:
toast('resetItem requires a key!');
}
toast(this.props.language.toasts.reset);
}
componentDidUpdate() {
localStorage.setItem('customQuote', this.state.customQuote);
localStorage.setItem('customQuoteAuthor', this.state.customQuoteAuthor);
}
render() {
const { quote } = this.props.language.sections;
return (
<div>
<h2>{quote.title}</h2>
<Checkbox name='quote' text={this.props.language.enabled}/>
<Checkbox name='authorLink' text={quote.author_link}/>
<ul>
<p>{quote.custom} <span className='modalLink' onClick={() => this.resetItem('customQuote')}>{this.props.language.buttons.reset}</span></p>
<input type='text' value={this.state.customQuote} onChange={(e) => this.setState({ customQuote: e.target.value })}></input>
</ul>
<ul>
<p>{quote.custom_author} <span className='modalLink' onClick={() => this.resetItem('customQuoteAuthor')}>{this.props.language.buttons.reset}</span></p>
<input type='text' value={this.state.customQuoteAuthor} onChange={(e) => this.setState({ customQuoteAuthor: e.target.value })}></input>
</ul>
<h3>{quote.buttons}</h3>
<Checkbox name='copyButton' text={quote.copy}/>
<Checkbox name='tweetButton' text={quote.tweet}/>
<Checkbox name='favouriteQuoteEnabled' text={quote.favourite}/>
</div>
);
}
}

View File

@@ -77,6 +77,14 @@ export default class Quote extends React.PureComponent {
});
}
const customQuote = localStorage.getItem('customQuote');
if (customQuote) {
return this.setState({
quote: '"' + customQuote + '"',
author: localStorage.getItem('customQuoteAuthor')
});
}
if (localStorage.getItem('offlineMode') === 'true') {
return this.doOffline();
}