mue/src/components/widgets/navbar/Notes.jsx

165 lines
4.6 KiB
React
Raw Normal View History

import variables from 'modules/variables';
2022-10-30 16:56:26 +00:00
import { PureComponent, memo } from 'react';
import { MdContentCopy, MdAssignment, MdPushPin, MdDownload } from 'react-icons/md';
import { useFloating, shift } from '@floating-ui/react-dom';
2021-09-10 18:00:45 +00:00
import TextareaAutosize from '@mui/material/TextareaAutosize';
import { toast } from 'react-toastify';
import Tooltip from '../../helpers/tooltip/Tooltip';
import { saveFile } from 'modules/helpers/settings/modals';
2022-08-31 20:54:03 +00:00
import EventBus from 'modules/helpers/eventbus';
class Notes extends PureComponent {
2021-03-23 13:10:34 +00:00
constructor() {
super();
this.state = {
notes: localStorage.getItem('notes') || '',
visibility: localStorage.getItem('notesPinned') === 'true' ? 'visible' : 'hidden',
showNotes: localStorage.getItem('notesPinned') === 'true' ? true : false,
};
}
2022-08-31 20:54:03 +00:00
setZoom() {
this.setState({
2022-11-06 11:59:59 +00:00
zoomFontSize: Number(((localStorage.getItem('zoomNavbar') || 100) / 100) * 1.2) + 'rem',
});
2022-08-31 20:54:03 +00:00
}
componentDidMount() {
EventBus.on('refresh', (data) => {
2022-10-30 16:43:08 +00:00
if (data === 'navbar') {
2022-08-31 20:54:03 +00:00
this.forceUpdate();
try {
this.setZoom();
} catch (e) {}
}
});
this.setZoom();
}
2022-10-30 16:43:08 +00:00
componentWillUnmount() {
EventBus.off('refresh');
}
setNotes = (e) => {
localStorage.setItem('notes', e.target.value);
this.setState({
notes: e.target.value,
});
};
showNotes() {
this.setState({
showNotes: true,
});
}
hideNotes() {
this.setState({
2022-11-06 11:59:59 +00:00
showNotes: localStorage.getItem('notesPinned') === 'true',
});
}
pin() {
2021-09-28 22:04:04 +00:00
variables.stats.postEvent('feature', 'Notes pin');
2022-11-06 11:59:59 +00:00
const notesPinned = localStorage.getItem('notesPinned') === 'true';
localStorage.setItem('notesPinned', !notesPinned);
this.setState({
showNotes: !notesPinned,
});
}
copy() {
2021-09-28 22:04:04 +00:00
variables.stats.postEvent('feature', 'Notes copied');
navigator.clipboard.writeText(this.state.notes);
toast(variables.getMessage('toasts.notes'));
}
download() {
const notes = localStorage.getItem('notes');
if (!notes || notes === '') {
return;
}
variables.stats.postEvent('feature', 'Notes download');
saveFile(this.state.notes, 'mue-notes.txt', 'text/plain');
}
render() {
return (
<div className="notes" onMouseLeave={() => this.hideNotes()} onFocus={() => this.showNotes()}>
<button
className="first"
onMouseEnter={() => this.showNotes()}
onFocus={() => this.showNotes()}
onBlur={() => this.hideNotes()}
ref={this.props.notesRef}
2022-08-31 20:54:03 +00:00
style={{ fontSize: this.state.zoomFontSize }}
>
2022-11-06 11:59:59 +00:00
<MdAssignment className="topicons" />
</button>
{this.state.showNotes && (
<span
className="notesContainer"
ref={this.props.floatRef}
style={{
position: this.props.position,
top: this.props.yPosition ?? '44',
left: this.props.xPosition ?? '',
}}
>
<div className="flexNotes">
<div className="topBarNotes" style={{ display: 'flex' }}>
<MdAssignment />
<span>{variables.getMessage('widgets.navbar.notes.title')}</span>
</div>
<div className="notes-buttons">
<Tooltip title={variables.getMessage('widgets.navbar.todo.pin')}>
<button onClick={() => this.pin()}>
<MdPushPin />
</button>
</Tooltip>
<Tooltip title={variables.getMessage('widgets.quote.copy')}>
<button onClick={() => this.copy()}>
<MdContentCopy />
</button>
</Tooltip>
<Tooltip title={variables.getMessage('widgets.background.download')}>
<button onClick={() => this.download()}>
<MdDownload />
</button>
</Tooltip>
</div>
<TextareaAutosize
placeholder={variables.getMessage('widgets.navbar.notes.placeholder')}
value={this.state.notes}
onChange={this.setNotes}
minRows={5}
/>
</div>
</span>
)}
</div>
);
}
}
2022-10-30 16:56:26 +00:00
function NotesWrapper() {
const { x, y, reference, floating, strategy } = useFloating({
placement: 'bottom',
middleware: [shift()],
});
return (
<Notes
notesRef={reference}
floatRef={floating}
position={strategy}
xPosition={x}
yPosition={y}
/>
);
}
2022-10-30 16:56:26 +00:00
2022-11-06 11:59:59 +00:00
export default memo(NotesWrapper);