2017-11-05 02:49:23 +02:00
|
|
|
const { reg } = require('lib/registry.js');
|
2017-12-14 20:12:14 +02:00
|
|
|
const Folder = require('lib/models/Folder.js');
|
|
|
|
const BaseModel = require('lib/BaseModel.js');
|
|
|
|
const Note = require('lib/models/Note.js');
|
2017-11-05 02:49:23 +02:00
|
|
|
|
|
|
|
const shared = {};
|
|
|
|
|
|
|
|
shared.noteExists = async function(noteId) {
|
|
|
|
const existingNote = await Note.load(noteId);
|
|
|
|
return !!existingNote;
|
|
|
|
}
|
|
|
|
|
|
|
|
shared.saveNoteButton_press = async function(comp) {
|
|
|
|
let note = Object.assign({}, comp.state.note);
|
|
|
|
|
2017-12-01 02:00:18 +02:00
|
|
|
// Note has been deleted while user was modifying it. In that case, we
|
2017-11-05 02:49:23 +02:00
|
|
|
// just save a new note by clearing the note ID.
|
|
|
|
if (note.id && !(await shared.noteExists(note.id))) delete note.id;
|
|
|
|
|
2017-12-01 02:00:18 +02:00
|
|
|
// reg.logger().info('Saving note: ', note);
|
2017-11-05 02:49:23 +02:00
|
|
|
|
|
|
|
if (!note.parent_id) {
|
|
|
|
let folder = await Folder.defaultFolder();
|
|
|
|
if (!folder) {
|
|
|
|
//Log.warn('Cannot save note without a notebook');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
note.parent_id = folder.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
let isNew = !note.id;
|
2017-12-07 23:32:22 +02:00
|
|
|
let titleWasAutoAssigned = false;
|
2017-11-05 02:49:23 +02:00
|
|
|
|
|
|
|
if (isNew && !note.title) {
|
|
|
|
note.title = Note.defaultTitle(note);
|
2017-12-07 23:32:22 +02:00
|
|
|
titleWasAutoAssigned = true;
|
2017-11-05 02:49:23 +02:00
|
|
|
}
|
2017-11-28 00:50:46 +02:00
|
|
|
|
|
|
|
// Save only the properties that have changed
|
2017-12-14 22:21:36 +02:00
|
|
|
// let diff = null;
|
|
|
|
// if (!isNew) {
|
|
|
|
// diff = BaseModel.diffObjects(comp.state.lastSavedNote, note);
|
|
|
|
// diff.type_ = note.type_;
|
|
|
|
// diff.id = note.id;
|
|
|
|
// } else {
|
|
|
|
// diff = Object.assign({}, note);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// const savedNote = await Note.save(diff);
|
|
|
|
|
|
|
|
let options = {};
|
2017-11-30 02:25:52 +02:00
|
|
|
if (!isNew) {
|
2017-12-14 22:21:36 +02:00
|
|
|
options.fields = BaseModel.diffObjectsFields(comp.state.lastSavedNote, note);
|
2017-11-30 02:25:52 +02:00
|
|
|
}
|
2017-11-28 00:50:46 +02:00
|
|
|
|
2017-12-14 22:21:36 +02:00
|
|
|
const savedNote = ('fields' in options) && !options.fields.length ? Object.assign({}, note) : await Note.save(note, { userSideValidation: true });
|
2017-11-28 00:50:46 +02:00
|
|
|
|
2017-12-01 02:00:18 +02:00
|
|
|
const stateNote = comp.state.note;
|
2017-11-28 00:50:46 +02:00
|
|
|
// Re-assign any property that might have changed during saving (updated_time, etc.)
|
|
|
|
note = Object.assign(note, savedNote);
|
|
|
|
|
2017-12-01 02:00:18 +02:00
|
|
|
if (stateNote) {
|
|
|
|
// But we preserve the current title and body because
|
|
|
|
// the user might have changed them between the time
|
|
|
|
// saveNoteButton_press was called and the note was
|
2017-12-07 23:32:22 +02:00
|
|
|
// saved (it's done asynchronously).
|
|
|
|
//
|
|
|
|
// If the title was auto-assigned above, we don't restore
|
|
|
|
// it from the state because it will be empty there.
|
|
|
|
if (!titleWasAutoAssigned) note.title = stateNote.title;
|
2017-12-01 02:00:18 +02:00
|
|
|
note.body = stateNote.body;
|
|
|
|
}
|
|
|
|
|
2017-11-05 02:49:23 +02:00
|
|
|
comp.setState({
|
|
|
|
lastSavedNote: Object.assign({}, note),
|
|
|
|
note: note,
|
|
|
|
});
|
2017-11-28 00:50:46 +02:00
|
|
|
|
2017-11-05 02:49:23 +02:00
|
|
|
if (isNew) Note.updateGeolocation(note.id);
|
2017-11-05 20:36:27 +02:00
|
|
|
comp.refreshNoteMetadata();
|
2017-11-05 02:49:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shared.saveOneProperty = async function(comp, name, value) {
|
|
|
|
let note = Object.assign({}, comp.state.note);
|
|
|
|
|
|
|
|
// Note has been deleted while user was modifying it. In that, we
|
|
|
|
// just save a new note by clearing the note ID.
|
|
|
|
if (note.id && !(await shared.noteExists(note.id))) delete note.id;
|
|
|
|
|
2017-12-01 02:00:18 +02:00
|
|
|
// reg.logger().info('Saving note property: ', note.id, name, value);
|
2017-11-05 02:49:23 +02:00
|
|
|
|
|
|
|
if (note.id) {
|
|
|
|
let toSave = { id: note.id };
|
|
|
|
toSave[name] = value;
|
|
|
|
toSave = await Note.save(toSave);
|
|
|
|
note[name] = toSave[name];
|
|
|
|
|
|
|
|
comp.setState({
|
|
|
|
lastSavedNote: Object.assign({}, note),
|
|
|
|
note: note,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
note[name] = value;
|
|
|
|
comp.setState({ note: note });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shared.noteComponent_change = function(comp, propName, propValue) {
|
|
|
|
let note = Object.assign({}, comp.state.note);
|
|
|
|
note[propName] = propValue;
|
|
|
|
comp.setState({ note: note });
|
|
|
|
}
|
|
|
|
|
|
|
|
shared.refreshNoteMetadata = async function(comp, force = null) {
|
|
|
|
if (force !== true && !comp.state.showNoteMetadata) return;
|
|
|
|
|
|
|
|
let noteMetadata = await Note.serializeAllProps(comp.state.note);
|
|
|
|
comp.setState({ noteMetadata: noteMetadata });
|
|
|
|
}
|
|
|
|
|
|
|
|
shared.isModified = function(comp) {
|
|
|
|
if (!comp.state.note || !comp.state.lastSavedNote) return false;
|
|
|
|
let diff = BaseModel.diffObjects(comp.state.note, comp.state.lastSavedNote);
|
|
|
|
delete diff.type_;
|
|
|
|
return !!Object.getOwnPropertyNames(diff).length;
|
|
|
|
}
|
|
|
|
|
|
|
|
shared.initState = async function(comp) {
|
|
|
|
let note = null;
|
|
|
|
let mode = 'view';
|
|
|
|
if (!comp.props.noteId) {
|
|
|
|
note = comp.props.itemType == 'todo' ? Note.newTodo(comp.props.folderId) : Note.new(comp.props.folderId);
|
|
|
|
mode = 'edit';
|
|
|
|
} else {
|
|
|
|
note = await Note.load(comp.props.noteId);
|
|
|
|
}
|
|
|
|
|
|
|
|
const folder = Folder.byId(comp.props.folders, note.parent_id);
|
|
|
|
|
|
|
|
comp.setState({
|
|
|
|
lastSavedNote: Object.assign({}, note),
|
|
|
|
note: note,
|
|
|
|
mode: mode,
|
|
|
|
folder: folder,
|
|
|
|
isLoading: false,
|
|
|
|
});
|
2017-11-07 01:56:33 +02:00
|
|
|
|
|
|
|
comp.lastLoadedNoteId_ = note ? note.id : null;
|
2017-11-05 02:49:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shared.showMetadata_onPress = function(comp) {
|
|
|
|
comp.setState({ showNoteMetadata: !comp.state.showNoteMetadata });
|
2017-11-05 20:36:27 +02:00
|
|
|
comp.refreshNoteMetadata(true);
|
2017-11-05 02:49:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shared.toggleIsTodo_onPress = function(comp) {
|
|
|
|
let newNote = Note.toggleIsTodo(comp.state.note);
|
|
|
|
let newState = { note: newNote };
|
|
|
|
comp.setState(newState);
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = shared;
|