1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ElectronClient/app/gui/NoteText.jsx

654 lines
18 KiB
React
Raw Normal View History

const React = require('react');
2017-12-14 20:12:14 +02:00
const Note = require('lib/models/Note.js');
const { time } = require('lib/time-utils.js');
2017-12-14 20:12:14 +02:00
const Setting = require('lib/models/Setting.js');
2017-11-11 00:18:00 +02:00
const { IconButton } = require('./IconButton.min.js');
const Toolbar = require('./Toolbar.min.js');
const { connect } = require('react-redux');
2017-11-07 23:11:14 +02:00
const { _ } = require('lib/locale.js');
const { reg } = require('lib/registry.js');
const MdToHtml = require('lib/MdToHtml');
2017-11-05 20:36:27 +02:00
const shared = require('lib/components/shared/note-screen-shared.js');
2017-11-07 23:11:14 +02:00
const { bridge } = require('electron').remote.require('./bridge');
2017-11-08 19:51:55 +02:00
const { themeStyle } = require('../theme.js');
const AceEditor = require('react-ace').default;
2017-11-11 00:18:00 +02:00
const Menu = bridge().Menu;
const MenuItem = bridge().MenuItem;
const { shim } = require('lib/shim.js');
const eventManager = require('../eventManager');
2017-11-10 20:43:54 +02:00
2017-11-11 00:18:00 +02:00
require('brace/mode/markdown');
2017-11-10 20:43:54 +02:00
// https://ace.c9.io/build/kitchen-sink.html
// https://highlightjs.org/static/demo/
require('brace/theme/chrome');
2017-11-05 01:27:13 +02:00
class NoteTextComponent extends React.Component {
2017-11-05 20:36:27 +02:00
constructor() {
super();
this.state = {
2017-11-10 19:58:17 +02:00
note: null,
2017-11-05 20:36:27 +02:00
noteMetadata: '',
showNoteMetadata: false,
folder: null,
lastSavedNote: null,
isLoading: true,
webviewReady: false,
2017-11-07 23:11:14 +02:00
scrollHeight: null,
editorScrollTop: 0,
newNote: null,
// If the current note was just created, and the title has never been
// changed by the user, this variable contains that note ID. Used
// to automatically set the title.
newAndNoTitleChangeNoteId: null,
2017-11-05 20:36:27 +02:00
};
2017-11-07 01:56:33 +02:00
this.lastLoadedNoteId_ = null;
2017-11-07 23:11:14 +02:00
this.webviewListeners_ = null;
this.ignoreNextEditorScroll_ = false;
2017-11-07 23:46:23 +02:00
this.scheduleSaveTimeout_ = null;
this.restoreScrollTop_ = null;
// Complicated but reliable method to get editor content height
// https://github.com/ajaxorg/ace/issues/2046
this.editorMaxScrollTop_ = 0;
this.onAfterEditorRender_ = () => {
const r = this.editor_.editor.renderer;
this.editorMaxScrollTop_ = Math.max(0, r.layerConfig.maxHeight - r.$size.scrollerHeight);
2017-11-13 02:23:12 +02:00
if (this.restoreScrollTop_ !== null) {
this.editorSetScrollTop(this.restoreScrollTop_);
this.restoreScrollTop_ = null;
}
}
this.onAlarmChange_ = (event) => { if (event.noteId === this.props.noteId) this.reloadNote(this.props); }
this.onNoteTypeToggle_ = (event) => { if (event.noteId === this.props.noteId) this.reloadNote(this.props); }
this.onTodoToggle_ = (event) => { if (event.noteId === this.props.noteId) this.reloadNote(this.props); }
2017-11-05 20:36:27 +02:00
}
2017-11-07 23:11:14 +02:00
mdToHtml() {
if (this.mdToHtml_) return this.mdToHtml_;
this.mdToHtml_ = new MdToHtml({
supportsResourceLinks: true,
resourceBaseUrl: 'file://' + Setting.value('resourceDir') + '/',
});
2017-11-07 23:11:14 +02:00
return this.mdToHtml_;
2017-11-05 01:27:13 +02:00
}
2017-11-07 23:11:14 +02:00
async componentWillMount() {
2017-11-10 19:58:17 +02:00
let note = null;
if (this.props.newNote) {
note = Object.assign({}, this.props.newNote);
} else if (this.props.noteId) {
2017-11-10 19:58:17 +02:00
note = await Note.load(this.props.noteId);
}
const folder = note ? Folder.byId(this.props.folders, note.parent_id) : null;
this.setState({
lastSavedNote: Object.assign({}, note),
note: note,
folder: folder,
isLoading: false,
});
this.lastLoadedNoteId_ = note ? note.id : null;
eventManager.on('alarmChange', this.onAlarmChange_);
eventManager.on('noteTypeToggle', this.onNoteTypeToggle_);
eventManager.on('todoToggle', this.onTodoToggle_);
2017-11-05 18:51:03 +02:00
}
componentWillUnmount() {
2017-11-07 23:46:23 +02:00
this.saveIfNeeded();
2017-11-05 18:51:03 +02:00
this.mdToHtml_ = null;
2017-11-07 23:11:14 +02:00
this.destroyWebview();
eventManager.removeListener('alarmChange', this.onAlarmChange_);
eventManager.removeListener('noteTypeToggle', this.onNoteTypeToggle_);
eventManager.removeListener('todoToggle', this.onTodoToggle_);
2017-11-05 18:51:03 +02:00
}
2017-11-07 23:46:23 +02:00
async saveIfNeeded() {
if (this.scheduleSaveTimeout_) clearTimeout(this.scheduleSaveTimeout_);
this.scheduleSaveTimeout_ = null;
if (!shared.isModified(this)) return;
await shared.saveNoteButton_press(this);
}
2017-11-08 19:51:55 +02:00
async saveOneProperty(name, value) {
if (this.state.note && !this.state.note.id) {
const note = Object.assign({}, this.state.note);
note[name] = value;
this.setState({ note: note });
this.scheduleSave();
} else {
await shared.saveOneProperty(this, name, value);
}
2017-11-08 19:51:55 +02:00
}
2017-11-07 23:46:23 +02:00
scheduleSave() {
if (this.scheduleSaveTimeout_) clearTimeout(this.scheduleSaveTimeout_);
this.scheduleSaveTimeout_ = setTimeout(() => {
this.saveIfNeeded();
}, 500);
}
async reloadNote(props, options = null) {
if (!options) options = {};
if (!('noReloadIfLocalChanges' in options)) options.noReloadIfLocalChanges = false;
await this.saveIfNeeded();
const previousNote = this.state.note ? Object.assign({}, this.state.note) : null;
const stateNoteId = this.state.note ? this.state.note.id : null;
let noteId = null;
let note = null;
let loadingNewNote = true;
if (props.newNote) {
note = Object.assign({}, props.newNote);
this.lastLoadedNoteId_ = null;
} else {
noteId = props.noteId;
loadingNewNote = stateNoteId !== noteId;
this.lastLoadedNoteId_ = noteId;
note = noteId ? await Note.load(noteId) : null;
if (noteId !== this.lastLoadedNoteId_) return; // Race condition - current note was changed while this one was loading
if (options.noReloadIfLocalChanges && this.isModified()) return;
// If the note hasn't been changed, exit now
if (this.state.note && note) {
let diff = Note.diffObjects(this.state.note, note);
delete diff.type_;
if (!Object.getOwnPropertyNames(diff).length) return;
}
2017-11-28 22:58:07 +02:00
}
2017-11-28 23:15:22 +02:00
this.mdToHtml_ = null;
// If we are loading nothing (noteId == null), make sure to
// set webviewReady to false too because the webview component
// is going to be removed in render().
const webviewReady = this.webview_ && this.state.webviewReady && (noteId || props.newNote);
2017-11-10 19:58:17 +02:00
// Scroll back to top when loading new note
if (loadingNewNote) {
this.editorMaxScrollTop_ = 0;
// HACK: To go around a bug in Ace editor, we first set the scroll position to 1
// and then (in the renderer callback) to the value we actually need. The first
// operation helps clear the scroll position cache. See:
// https://github.com/ajaxorg/ace/issues/2195
this.editorSetScrollTop(1);
this.restoreScrollTop_ = 0;
if (this.editor_) {
const session = this.editor_.editor.getSession();
const undoManager = session.getUndoManager();
undoManager.reset();
session.setUndoManager(undoManager);
this.editor_.editor.focus();
this.editor_.editor.clearSelection();
this.editor_.editor.moveCursorTo(0,0);
}
}
let newState = {
note: note,
lastSavedNote: Object.assign({}, note),
webviewReady: webviewReady,
};
if (!note) {
newState.newAndNoTitleChangeNoteId = null;
} else if (note.id !== this.state.newAndNoTitleChangeNoteId) {
newState.newAndNoTitleChangeNoteId = null;
}
this.setState(newState);
}
async componentWillReceiveProps(nextProps) {
if (nextProps.newNote) {
await this.reloadNote(nextProps);
} else if ('noteId' in nextProps && nextProps.noteId !== this.props.noteId) {
await this.reloadNote(nextProps);
}
if ('syncStarted' in nextProps && !nextProps.syncStarted && !this.isModified()) {
await this.reloadNote(nextProps, { noReloadIfLocalChanges: true });
2017-11-07 01:56:33 +02:00
}
2017-11-05 20:36:27 +02:00
}
isModified() {
return shared.isModified(this);
}
refreshNoteMetadata(force = null) {
return shared.refreshNoteMetadata(this, force);
}
title_changeText(event) {
shared.noteComponent_change(this, 'title', event.target.value);
this.setState({ newAndNoTitleChangeNoteId: null });
2017-11-07 23:46:23 +02:00
this.scheduleSave();
2017-11-05 20:36:27 +02:00
}
toggleIsTodo_onPress() {
shared.toggleIsTodo_onPress(this);
2017-11-07 23:46:23 +02:00
this.scheduleSave();
2017-11-05 20:36:27 +02:00
}
showMetadata_onPress() {
shared.showMetadata_onPress(this);
2017-11-05 01:27:13 +02:00
}
2017-11-07 23:11:14 +02:00
webview_ipcMessage(event) {
const msg = event.channel ? event.channel : '';
const args = event.args;
const arg0 = args && args.length >= 1 ? args[0] : null;
const arg1 = args && args.length >= 2 ? args[1] : null;
reg.logger().debug('Got ipc-message: ' + msg, args);
2017-11-07 23:11:14 +02:00
if (msg.indexOf('checkboxclick:') === 0) {
// Ugly hack because setting the body here will make the scrollbar
// go to some random position. So we save the scrollTop here and it
// will be restored after the editor ref has been reset, and the
// "afterRender" event has been called.
this.restoreScrollTop_ = this.editorScrollTop();
2017-11-07 23:11:14 +02:00
const newBody = this.mdToHtml_.handleCheckboxClick(msg, this.state.note.body);
this.saveOneProperty('body', newBody);
} else if (msg.toLowerCase().indexOf('http') === 0) {
require('electron').shell.openExternal(msg);
} else if (msg === 'percentScroll') {
this.ignoreNextEditorScroll_ = true;
this.setEditorPercentScroll(arg0);
} else if (msg.indexOf('joplin://') === 0) {
const resourceId = msg.substr('joplin://'.length);
Resource.load(resourceId).then((resource) => {
const filePath = Resource.fullPath(resource);
bridge().openItem(filePath);
});
2017-11-07 23:11:14 +02:00
} else {
bridge().showMessageBox({
type: 'error',
message: _('Unsupported link or message: %s', msg),
});
}
}
editorMaxScroll() {
return this.editorMaxScrollTop_;
}
editorScrollTop() {
return this.editor_.editor.getSession().getScrollTop();
}
editorSetScrollTop(v) {
if (!this.editor_) return;
this.editor_.editor.getSession().setScrollTop(v);
2017-11-07 23:11:14 +02:00
}
setEditorPercentScroll(p) {
this.editorSetScrollTop(p * this.editorMaxScroll());
2017-11-07 23:11:14 +02:00
}
setViewerPercentScroll(p) {
this.webview_.send('setPercentScroll', p);
}
editor_scroll() {
if (this.ignoreNextEditorScroll_) {
this.ignoreNextEditorScroll_ = false;
return;
}
2017-11-07 23:11:14 +02:00
const m = this.editorMaxScroll();
this.setViewerPercentScroll(m ? this.editorScrollTop() / m : 0);
2017-11-07 23:11:14 +02:00
}
2017-11-05 18:51:03 +02:00
webview_domReady() {
2017-11-07 23:11:14 +02:00
if (!this.webview_) return;
2017-11-05 18:51:03 +02:00
this.setState({
webviewReady: true,
});
// if (Setting.value('env') === 'dev') this.webview_.openDevTools();
2017-11-07 23:11:14 +02:00
}
webview_ref(element) {
if (this.webview_) {
if (this.webview_ === element) return;
this.destroyWebview();
}
2017-11-05 18:51:03 +02:00
2017-11-07 23:11:14 +02:00
if (!element) {
this.destroyWebview();
} else {
this.initWebview(element);
}
}
editor_ref(element) {
if (this.editor_ === element) return;
if (this.editor_) {
this.editor_.editor.renderer.off('afterRender', this.onAfterEditorRender_);
}
2017-11-07 23:11:14 +02:00
this.editor_ = element;
if (this.editor_) {
this.editor_.editor.renderer.on('afterRender', this.onAfterEditorRender_);
}
2017-11-07 23:11:14 +02:00
}
initWebview(wv) {
if (!this.webviewListeners_) {
this.webviewListeners_ = {
'dom-ready': this.webview_domReady.bind(this),
'ipc-message': this.webview_ipcMessage.bind(this),
};
}
for (let n in this.webviewListeners_) {
if (!this.webviewListeners_.hasOwnProperty(n)) continue;
const fn = this.webviewListeners_[n];
wv.addEventListener(n, fn);
}
this.webview_ = wv;
}
destroyWebview() {
if (!this.webview_) return;
2017-11-05 18:51:03 +02:00
2017-11-07 23:11:14 +02:00
for (let n in this.webviewListeners_) {
if (!this.webviewListeners_.hasOwnProperty(n)) continue;
const fn = this.webviewListeners_[n];
this.webview_.removeEventListener(n, fn);
}
this.webview_ = null;
2017-11-05 18:51:03 +02:00
}
aceEditor_change(body) {
shared.noteComponent_change(this, 'body', body);
this.scheduleSave();
}
async commandAttachFile() {
const noteId = this.props.noteId;
if (!noteId) return;
const filePaths = bridge().showOpenDialog({
properties: ['openFile', 'createDirectory', 'multiSelections'],
});
if (!filePaths || !filePaths.length) return;
await this.saveIfNeeded();
let note = await Note.load(noteId);
for (let i = 0; i < filePaths.length; i++) {
const filePath = filePaths[i];
try {
reg.logger().info('Attaching ' + filePath);
note = await shim.attachFileToNote(note, filePath);
reg.logger().info('File was attached.');
this.setState({
note: Object.assign({}, note),
lastSavedNote: Object.assign({}, note),
});
} catch (error) {
reg.logger().error(error);
}
}
}
commandSetAlarm() {
const noteId = this.props.noteId;
if (!noteId) return;
this.props.dispatch({
type: 'WINDOW_COMMAND',
name: 'editAlarm',
noteId: noteId,
});
}
2017-11-11 00:18:00 +02:00
itemContextMenu(event) {
const noteId = this.props.noteId;
if (!noteId) return;
const menu = new Menu()
menu.append(new MenuItem({label: _('Attach file'), click: async () => {
return this.commandAttachFile();
2017-11-11 00:18:00 +02:00
}}));
menu.append(new MenuItem({label: _('Set alarm'), click: async () => {
return this.commandSetAlarm();
}}));
2017-11-11 00:18:00 +02:00
menu.popup(bridge().window());
}
2017-11-05 01:27:13 +02:00
render() {
2017-11-07 23:11:14 +02:00
const style = this.props.style;
2017-11-05 01:27:13 +02:00
const note = this.state.note;
const body = note && note.body ? note.body : '';
2017-11-08 19:51:55 +02:00
const theme = themeStyle(this.props.theme);
const visiblePanes = this.props.visiblePanes || ['editor', 'viewer'];
2017-11-07 23:11:14 +02:00
const borderWidth = 1;
const rootStyle = Object.assign({
borderLeft: borderWidth + 'px solid ' + theme.dividerColor,
boxSizing: 'border-box',
paddingLeft: 10,
paddingRight: 0,
}, style);
const innerWidth = rootStyle.width - rootStyle.paddingLeft - rootStyle.paddingRight - borderWidth;
if (!note || !!note.encryption_applied) {
2017-11-10 19:58:17 +02:00
const emptyDivStyle = Object.assign({
backgroundColor: 'black',
opacity: 0.1,
}, rootStyle);
2017-11-10 19:58:17 +02:00
return <div style={emptyDivStyle}></div>
}
2017-11-11 00:18:00 +02:00
const titleBarStyle = {
width: innerWidth - rootStyle.paddingLeft,
2017-11-11 00:18:00 +02:00
height: 30,
boxSizing: 'border-box',
2017-11-11 00:18:00 +02:00
marginTop: 10,
marginBottom: 0,
2017-11-11 00:18:00 +02:00
display: 'flex',
flexDirection: 'row',
};
const titleEditorStyle = {
display: 'flex',
flex: 1,
display: 'inline-block',
paddingTop: 5,
paddingBottom: 5,
paddingLeft: 8,
paddingRight: 8,
marginRight: rootStyle.paddingLeft,
};
const toolbarStyle = {
marginBottom: 10,
};
const bottomRowHeight = rootStyle.height - titleBarStyle.height - titleBarStyle.marginBottom - titleBarStyle.marginTop - theme.toolbarHeight - toolbarStyle.marginBottom;
2017-11-07 23:11:14 +02:00
const viewerStyle = {
width: Math.floor(innerWidth / 2),
height: bottomRowHeight,
2017-11-07 23:11:14 +02:00
overflow: 'hidden',
float: 'left',
verticalAlign: 'top',
2017-11-10 22:43:44 +02:00
boxSizing: 'border-box',
2017-11-07 23:11:14 +02:00
};
2017-11-08 19:51:55 +02:00
const paddingTop = 14;
2017-11-07 23:11:14 +02:00
const editorStyle = {
width: innerWidth - viewerStyle.width,
height: bottomRowHeight - paddingTop,
overflowY: 'hidden',
2017-11-07 23:11:14 +02:00
float: 'left',
verticalAlign: 'top',
2017-11-08 19:51:55 +02:00
paddingTop: paddingTop + 'px',
lineHeight: theme.textAreaLineHeight + 'px',
fontSize: theme.fontSize + 'px',
2017-11-07 23:11:14 +02:00
};
2017-11-05 01:27:13 +02:00
if (visiblePanes.indexOf('viewer') < 0) {
// Note: setting webview.display to "none" is currently not supported due
// to this bug: https://github.com/electron/electron/issues/8277
// So instead setting the width 0.
viewerStyle.width = 0;
editorStyle.width = innerWidth;
}
if (visiblePanes.indexOf('editor') < 0) {
editorStyle.display = 'none';
viewerStyle.width = innerWidth;
}
2017-11-10 23:04:53 +02:00
if (visiblePanes.indexOf('viewer') >= 0 && visiblePanes.indexOf('editor') >= 0) {
viewerStyle.borderLeft = '1px solid ' + theme.dividerColor;
} else {
viewerStyle.borderLeft = 'none';
}
2017-11-05 18:51:03 +02:00
if (this.state.webviewReady) {
const mdOptions = {
onResourceLoaded: () => {
this.forceUpdate();
},
postMessageSyntax: 'ipcRenderer.sendToHost',
};
2017-11-08 19:51:55 +02:00
const html = this.mdToHtml().render(body, theme, mdOptions);
2017-11-05 18:51:03 +02:00
this.webview_.send('setHtml', html);
}
const toolbarItems = [];
toolbarItems.push({
title: _('Attach file'),
iconName: 'fa-paperclip',
onClick: () => { return this.commandAttachFile(); },
});
if (note.is_todo) {
toolbarItems.push({
title: Note.needAlarm(note) ? time.formatMsToLocal(note.todo_due) : _('Set alarm'),
iconName: 'fa-clock-o',
enabled: !note.todo_completed,
onClick: () => { return this.commandSetAlarm(); },
});
}
const toolbar = <Toolbar
style={toolbarStyle}
items={toolbarItems}
/>
const titleEditor = <input
type="text"
style={titleEditorStyle}
value={note && note.title ? note.title : ''}
onChange={(event) => { this.title_changeText(event); }}
/>
2017-11-11 00:18:00 +02:00
const titleBarMenuButton = <IconButton style={{
display: 'flex',
}} iconName="fa-caret-down" theme={this.props.theme} onClick={() => { this.itemContextMenu() }} />
const viewer = <webview
style={viewerStyle}
nodeintegration="1"
2017-11-11 00:27:38 +02:00
src="gui/note-viewer/index.html"
ref={(elem) => { this.webview_ref(elem); } }
/>
const editorRootStyle = Object.assign({}, editorStyle);
delete editorRootStyle.width;
delete editorRootStyle.height;
delete editorRootStyle.fontSize;
const editor = <AceEditor
value={body}
mode="markdown"
theme="chrome"
style={editorRootStyle}
width={editorStyle.width + 'px'}
height={editorStyle.height + 'px'}
fontSize={editorStyle.fontSize}
showGutter={false}
name="note-editor"
wrapEnabled={true}
onScroll={(event) => { this.editor_scroll(); }}
ref={(elem) => { this.editor_ref(elem); } }
onChange={(body) => { this.aceEditor_change(body) }}
2017-11-10 23:04:53 +02:00
showPrintMargin={false}
// Disable warning: "Automatically scrolling cursor into view after
// selection change this will be disabled in the next version set
// editor.$blockScrolling = Infinity to disable this message"
editorProps={{$blockScrolling: true}}
2017-11-10 01:28:08 +02:00
// This is buggy (gets outside the container)
highlightActiveLine={false}
/>
2017-11-05 18:51:03 +02:00
2017-11-05 01:27:13 +02:00
return (
<div style={rootStyle}>
2017-11-11 00:18:00 +02:00
<div style={titleBarStyle}>
{ titleEditor }
{ titleBarMenuButton }
</div>
{ toolbar }
2017-11-07 23:11:14 +02:00
{ editor }
{ viewer }
2017-11-05 01:27:13 +02:00
</div>
);
}
}
const mapStateToProps = (state) => {
return {
2017-11-22 20:35:31 +02:00
noteId: state.selectedNoteIds.length === 1 ? state.selectedNoteIds[0] : null,
2017-11-05 20:36:27 +02:00
folderId: state.selectedFolderId,
itemType: state.selectedItemType,
folders: state.folders,
theme: state.settings.theme,
showAdvancedOptions: state.settings.showAdvancedOptions,
syncStarted: state.syncStarted,
newNote: state.newNote,
2017-11-05 01:27:13 +02:00
};
};
const NoteText = connect(mapStateToProps)(NoteTextComponent);
module.exports = { NoteText };