const React = require('react'); const { connect } = require('react-redux'); const { Header } = require('./Header.min.js'); const { SideBar } = require('./SideBar.min.js'); const { NoteList } = require('./NoteList.min.js'); const { NoteText } = require('./NoteText.min.js'); const { PromptDialog } = require('./PromptDialog.min.js'); const { Setting } = require('lib/models/setting.js'); const { BaseModel } = require('lib/base-model.js'); const { Tag } = require('lib/models/tag.js'); const { Note } = require('lib/models/note.js'); const { uuid } = require('lib/uuid.js'); const { Folder } = require('lib/models/folder.js'); const { themeStyle } = require('../theme.js'); const { _ } = require('lib/locale.js'); const layoutUtils = require('lib/layout-utils.js'); const { bridge } = require('electron').remote.require('./bridge'); const eventManager = require('../eventManager'); class MainScreenComponent extends React.Component { componentWillMount() { this.setState({ promptOptions: null, }); } componentWillReceiveProps(newProps) { if (newProps.windowCommand) { this.doCommand(newProps.windowCommand); } } toggleVisiblePanes() { this.props.dispatch({ type: 'NOTE_VISIBLE_PANES_TOGGLE', }); } async doCommand(command) { if (!command) return; const createNewNote = async (title, isTodo) => { const folderId = Setting.value('activeFolderId'); if (!folderId) return; const note = await Note.save({ title: title, parent_id: folderId, is_todo: isTodo ? 1 : 0, }); Note.updateGeolocation(note.id); this.props.dispatch({ type: 'NOTE_SELECT', id: note.id, }); } let commandProcessed = true; if (command.name === 'newNote') { if (!this.props.folders.length) { bridge().showErrorMessageBox(_('Please create a notebook first.')); return; } this.setState({ promptOptions: { label: _('Note title:'), onClose: async (answer) => { if (answer) await createNewNote(answer, false); this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'newTodo') { if (!this.props.folders.length) { bridge().showErrorMessageBox(_('Please create a notebook first')); return; } this.setState({ promptOptions: { label: _('To-do title:'), onClose: async (answer) => { if (answer) await createNewNote(answer, true); this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'newNotebook') { this.setState({ promptOptions: { label: _('Notebook title:'), onClose: async (answer) => { if (answer) { let folder = null; try { folder = await Folder.save({ title: answer }, { userSideValidation: true }); } catch (error) { bridge().showErrorMessageBox(error.message); } if (folder) { this.props.dispatch({ type: 'FOLDER_SELECT', id: folder.id, }); } } this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'setTags') { const tags = await Tag.tagsByNoteId(command.noteId); const tagTitles = tags.map((a) => { return a.title }); this.setState({ promptOptions: { label: _('Add or remove tags:'), description: _('Separate each tag by a comma.'), value: tagTitles.join(', '), onClose: async (answer) => { if (answer !== null) { const tagTitles = answer.split(',').map((a) => { return a.trim() }); await Tag.setNoteTagsByTitles(command.noteId, tagTitles); } this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'renameNotebook') { const folder = await Folder.load(command.id); if (!folder) return; this.setState({ promptOptions: { label: _('Rename notebook:'), value: folder.title, onClose: async (answer) => { if (answer !== null) { try { await Folder.save({ id: folder.id, title: answer }, { userSideValidation: true }); } catch (error) { bridge().showErrorMessageBox(error.message); } } this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'search') { this.setState({ promptOptions: { label: _('Search:'), onClose: async (answer) => { if (answer !== null) { const searchId = uuid.create(); this.props.dispatch({ type: 'SEARCH_ADD', search: { id: searchId, title: answer, query_pattern: answer, query_folder_id: null, type_: BaseModel.TYPE_SEARCH, }, }); this.props.dispatch({ type: 'SEARCH_SELECT', id: searchId, }); } this.setState({ promptOptions: null }); } }, }); } else if (command.name === 'editAlarm') { const note = await Note.load(command.noteId); let defaultDate = new Date(Date.now() + 2 * 3600 * 1000); defaultDate.setMinutes(0); defaultDate.setSeconds(0); this.setState({ promptOptions: { label: _('Set alarm:'), inputType: 'datetime', buttons: ['ok', 'cancel', 'clear'], value: note.todo_due ? new Date(note.todo_due) : defaultDate, onClose: async (answer, buttonType) => { let newNote = null; if (buttonType === 'clear') { newNote = { id: note.id, todo_due: 0, }; } else if (answer !== null) { newNote = { id: note.id, todo_due: answer.getTime(), }; } if (newNote) { await Note.save(newNote); eventManager.emit('alarmChange', { noteId: note.id }); } this.setState({ promptOptions: null }); } }, }); } else { commandProcessed = false; } if (commandProcessed) { this.props.dispatch({ type: 'WINDOW_COMMAND', name: null, }); } } styles(themeId, width, height, messageBoxVisible) { const styleKey = themeId + '_' + width + '_' + height + '_' + messageBoxVisible; if (styleKey === this.styleKey_) return this.styles_; const theme = themeStyle(themeId); this.styleKey_ = styleKey; this.styles_ = {}; this.styles_.header = { width: width, }; this.styles_.messageBox = { width: width, height: 30, display: 'flex', alignItems: 'center', paddingLeft: 10, backgroundColor: theme.warningBackgroundColor, } const rowHeight = height - theme.headerHeight - (messageBoxVisible ? this.styles_.messageBox.height : 0); this.styles_.sideBar = { width: Math.floor(layoutUtils.size(width * .2, 150, 300)), height: rowHeight, display: 'inline-block', verticalAlign: 'top', }; this.styles_.noteList = { width: Math.floor(layoutUtils.size(width * .2, 150, 300)), height: rowHeight, display: 'inline-block', verticalAlign: 'top', }; this.styles_.noteText = { width: Math.floor(layoutUtils.size(width - this.styles_.sideBar.width - this.styles_.noteList.width, 0)), height: rowHeight, display: 'inline-block', verticalAlign: 'top', }; this.styles_.prompt = { width: width, height: height, }; return this.styles_; } render() { const style = this.props.style; const promptOptions = this.state.promptOptions; const folders = this.props.folders; const notes = this.props.notes; const messageBoxVisible = this.props.hasDisabledSyncItems; const styles = this.styles(this.props.theme, style.width, style.height, messageBoxVisible); const theme = themeStyle(this.props.theme); const headerButtons = []; headerButtons.push({ title: _('New note'), iconName: 'fa-file-o', enabled: !!folders.length, onClick: () => { this.doCommand({ name: 'newNote' }) }, }); headerButtons.push({ title: _('New to-do'), iconName: 'fa-check-square-o', enabled: !!folders.length, onClick: () => { this.doCommand({ name: 'newTodo' }) }, }); headerButtons.push({ title: _('New notebook'), iconName: 'fa-folder-o', onClick: () => { this.doCommand({ name: 'newNotebook' }) }, }); headerButtons.push({ title: _('Search'), iconName: 'fa-search', onClick: () => { this.doCommand({ name: 'search' }) }, }); headerButtons.push({ title: _('Layout'), iconName: 'fa-columns', enabled: !!notes.length, onClick: () => { this.toggleVisiblePanes(); }, }); if (!this.promptOnClose_) { this.promptOnClose_ = (answer, buttonType) => { return this.state.promptOptions.onClose(answer, buttonType); } } const onViewDisabledItemsClick = () => { this.props.dispatch({ type: 'NAV_GO', routeName: 'Status', }); } const messageComp = messageBoxVisible ? (
{_('Some items cannot be synchronised.')} { onViewDisabledItemsClick() }}>{_('View them now')}
) : null; return (
{messageComp}
); } } const mapStateToProps = (state) => { return { theme: state.settings.theme, windowCommand: state.windowCommand, noteVisiblePanes: state.noteVisiblePanes, folders: state.folders, notes: state.notes, hasDisabledSyncItems: state.hasDisabledSyncItems, }; }; const MainScreen = connect(mapStateToProps)(MainScreenComponent); module.exports = { MainScreen };