mirror of
https://github.com/mue/mue.git
synced 2026-07-10 22:14:39 +02:00
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
|
|
import TextareaAutosize from '@material-ui/core/TextareaAutosize';
|
|
|
|
import CopyIcon from '@material-ui/icons/FileCopyRounded';
|
|
import NotesIcon from '@material-ui/icons/AssignmentRounded';
|
|
import Pin from './Pin';
|
|
|
|
import { toast } from 'react-toastify';
|
|
|
|
export default class Notes extends React.PureComponent {
|
|
constructor() {
|
|
super();
|
|
this.state = {
|
|
notes: localStorage.getItem('notes') || ''
|
|
};
|
|
this.language = window.language.widgets.navbar.notes;
|
|
}
|
|
|
|
setNotes = (e) => {
|
|
localStorage.setItem('notes', e.target.value);
|
|
this.setState({
|
|
notes: e.target.value
|
|
});
|
|
};
|
|
|
|
pin() {
|
|
window.analytics.postEvent('featureUpdate', 'Feature notes pin used');
|
|
document.getElementById('noteContainer').classList.toggle('visibilityshow');
|
|
|
|
if (localStorage.getItem('notesPinned') === 'true') {
|
|
localStorage.setItem('notesPinned', false);
|
|
} else {
|
|
localStorage.setItem('notesPinned', true);
|
|
}
|
|
}
|
|
|
|
copy() {
|
|
window.analytics.postEvent('featureUpdate', 'Feature notes copy used');
|
|
// this.state.notes doesnt work for some reason
|
|
navigator.clipboard.writeText(localStorage.getItem('notes'));
|
|
toast(window.language.toasts.notes);
|
|
}
|
|
|
|
componentDidMount() {
|
|
const noteContainer = document.getElementById('noteContainer');
|
|
|
|
if (localStorage.getItem('notesPinned') === 'true') {
|
|
noteContainer.classList.toggle('visibilityshow');
|
|
}
|
|
|
|
if (localStorage.getItem('refresh') === 'false') {
|
|
noteContainer.style.marginLeft = '-200px';
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<span id='noteContainer' className='notescontainer'>
|
|
<div className='topbarnotes'>
|
|
<NotesIcon/>
|
|
<h3>{this.language.title}</h3>
|
|
</div>
|
|
<TextareaAutosize rowsMax={50} placeholder={this.language.placeholder} value={this.state.notes} onChange={this.setNotes}/>
|
|
<button onClick={this.pin} className='pinNote'><Pin/></button>
|
|
<button onClick={this.copy} className='copyNote'><CopyIcon/></button>
|
|
</span>
|
|
);
|
|
}
|
|
}
|