import * as React from 'react'; import { useEffect, useCallback, useState } from 'react'; import CommandService from '../../lib/services/CommandService'; const { connect } = require('react-redux'); const { buildStyle } = require('lib/theme'); const Toolbar = require('../Toolbar.min.js'); const Folder = require('lib/models/Folder'); const { _ } = require('lib/locale'); const { substrWithEllipsis } = require('lib/string-utils'); interface ButtonClickEvent { name: string, } interface NoteToolbarProps { theme: number, style: any, folders: any[], watchedNoteFiles: string[], backwardHistoryNotes: any[], forwardHistoryNotes: any[], notesParentType: string, note: any, dispatch: Function, onButtonClick(event:ButtonClickEvent):void, } function styles_(props:NoteToolbarProps) { return buildStyle('NoteToolbar', props.theme, (/* theme:any*/) => { return { root: { ...props.style, borderBottom: 'none', }, }; }); } function NoteToolbar(props:NoteToolbarProps) { const styles = styles_(props); const [toolbarItems, setToolbarItems] = useState([]); const selectedNoteFolder = Folder.byId(props.folders, props.note.parent_id); const cmdService = CommandService.instance(); const updateToolbarItems = useCallback(() => { const output = []; output.push( cmdService.commandToToolbarButton('historyBackward') ); output.push( cmdService.commandToToolbarButton('historyForward') ); if (selectedNoteFolder.id && ['Search', 'Tag', 'SmartFilter'].includes(props.notesParentType)) { output.push({ title: _('In: %s', substrWithEllipsis(selectedNoteFolder.title, 0, 16)), iconName: 'fa-book', onClick: () => { props.dispatch({ type: 'FOLDER_AND_NOTE_SELECT', folderId: selectedNoteFolder.id, noteId: props.note.id, }); }, }); } output.push(cmdService.commandToToolbarButton('showNoteProperties')); if (props.watchedNoteFiles.indexOf(props.note.id) >= 0) { output.push(cmdService.commandToToolbarButton('stopExternalEditing')); } else { output.push(cmdService.commandToToolbarButton('startExternalEditing')); } output.push(cmdService.commandToToolbarButton('editAlarm')); output.push(cmdService.commandToToolbarButton('setTags')); setToolbarItems(output); }, [props.note.id, selectedNoteFolder.id, selectedNoteFolder.title, props.watchedNoteFiles, props.notesParentType]); useEffect(() => { updateToolbarItems(); cmdService.on('commandsEnabledStateChange', updateToolbarItems); return () => { cmdService.off('commandsEnabledStateChange', updateToolbarItems); }; }, [updateToolbarItems]); return ; } const mapStateToProps = (state:any) => { return { folders: state.folders, watchedNoteFiles: state.watchedNoteFiles, backwardHistoryNotes: state.backwardHistoryNotes, forwardHistoryNotes: state.forwardHistoryNotes, notesParentType: state.notesParentType, }; }; export default connect(mapStateToProps)(NoteToolbar);