mirror of
https://github.com/mue/mue.git
synced 2026-07-16 05:23:49 +02:00
62 lines
2.6 KiB
JavaScript
62 lines
2.6 KiB
JavaScript
import variables from 'modules/variables';
|
|
import { PureComponent } from 'react';
|
|
|
|
import Switch from '../Switch';
|
|
|
|
import EventBus from 'modules/helpers/eventbus';
|
|
|
|
export default class Stats extends PureComponent {
|
|
constructor() {
|
|
super();
|
|
this.state = {
|
|
stats: JSON.parse(localStorage.getItem('statsData')) || {}
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
EventBus.on('refresh', (data) => {
|
|
if (data === 'stats') {
|
|
if (localStorage.getItem('stats') === 'false') {
|
|
localStorage.setItem('statsData', JSON.stringify({}));
|
|
return this.setState({
|
|
stats: {}
|
|
});
|
|
}
|
|
this.forceUpdate();
|
|
}
|
|
});
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
EventBus.off('refresh');
|
|
}
|
|
|
|
render() {
|
|
const getMessage = (text) => variables.language.getMessage(variables.languagecode, text);
|
|
|
|
if (localStorage.getItem('stats') === 'false') {
|
|
return (
|
|
<>
|
|
<h2>{getMessage('modals.main.settings.reminder.title')}</h2>
|
|
<p>{getMessage('modals.main.settings.sections.stats.warning')}</p>
|
|
<Switch name='stats' text={getMessage('modals.main.settings.sections.stats.usage')} category='stats'/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<h2>{getMessage('modals.main.settings.sections.stats.title')}</h2>
|
|
<Switch name='stats' text={getMessage('modals.main.settings.sections.stats.usage')} category='stats'/>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.tabs_opened')}: {this.state.stats['tabs-opened'] || 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.backgrounds_favourited')}: {this.state.stats.feature ? this.state.stats.feature['background-favourite'] || 0 : 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.backgrounds_downloaded')}: {this.state.stats.feature ? this.state.stats.feature['background-download'] || 0 : 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.quotes_favourited')}: {this.state.stats.feature ? this.state.stats.feature['quoted-favourite'] || 0 : 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.quicklinks_added')}: {this.state.stats.feature ? this.state.stats.feature['quicklink-add'] || 0 : 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.settings_changed')}: {this.state.stats.setting ? Object.keys(this.state.stats.setting).length : 0}</p>
|
|
<p>{getMessage('modals.main.settings.sections.stats.sections.addons_installed')}: {this.state.stats.marketplace ? this.state.stats.marketplace['install'] : 0}</p>
|
|
</>
|
|
);
|
|
}
|
|
}
|