trilium/src/services/date_notes.js

127 lines
4 KiB
JavaScript
Raw Normal View History

"use strict";
const noteService = require('./notes');
const attributeService = require('./attributes');
2018-04-03 08:46:46 +08:00
const dateUtils = require('./date_utils');
const repository = require('./repository');
2018-04-03 09:56:55 +08:00
const CALENDAR_ROOT_LABEL = 'calendarRoot';
2018-04-05 11:04:31 +08:00
const YEAR_LABEL = 'yearNote';
const MONTH_LABEL = 'monthNote';
const DATE_LABEL = 'dateNote';
const DAYS = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
const MONTHS = ['January','February','March','April','May','June','July','August','September','October','November','December'];
async function createNote(parentNoteId, noteTitle, noteText) {
2018-04-08 01:14:01 +08:00
return (await noteService.createNewNote(parentNoteId, {
2018-01-29 08:30:14 +08:00
title: noteTitle,
content: noteText,
target: 'into',
2018-01-29 08:30:14 +08:00
isProtected: false
2018-04-08 01:14:01 +08:00
})).note;
}
async function getNoteStartingWith(parentNoteId, startsWith) {
return await repository.getEntity(`SELECT notes.* FROM notes JOIN branches USING(noteId)
2018-01-29 08:30:14 +08:00
WHERE parentNoteId = ? AND title LIKE '${startsWith}%'
AND notes.isDeleted = 0 AND isProtected = 0
2018-03-25 09:39:15 +08:00
AND branches.isDeleted = 0`, [parentNoteId]);
}
async function getRootCalendarNote() {
2018-05-09 04:39:01 +08:00
// some caching here could be useful (e.g. in CLS)
let rootNote = await attributeService.getNoteWithLabel(CALENDAR_ROOT_LABEL);
if (!rootNote) {
rootNote = (await noteService.createNewNote('root', {
2018-01-29 08:30:14 +08:00
title: 'Calendar',
target: 'into',
2018-01-29 08:30:14 +08:00
isProtected: false
})).note;
await attributeService.createLabel(rootNote.noteId, CALENDAR_ROOT_LABEL);
await attributeService.createLabel(rootNote.noteId, 'sorted');
}
return rootNote;
}
async function getYearNote(dateTimeStr, rootNote) {
const yearStr = dateTimeStr.substr(0, 4);
let yearNote = await attributeService.getNoteWithLabel(YEAR_LABEL, yearStr);
if (!yearNote) {
yearNote = await getNoteStartingWith(rootNote.noteId, yearStr);
if (!yearNote) {
yearNote = await createNote(rootNote.noteId, yearStr);
}
await attributeService.createLabel(yearNote.noteId, YEAR_LABEL, yearStr);
await attributeService.createLabel(yearNote.noteId, 'sorted');
}
return yearNote;
}
async function getMonthNote(dateTimeStr, rootNote) {
const monthStr = dateTimeStr.substr(0, 7);
const monthNumber = dateTimeStr.substr(5, 2);
let monthNote = await attributeService.getNoteWithLabel(MONTH_LABEL, monthStr);
if (!monthNote) {
const yearNote = await getYearNote(dateTimeStr, rootNote);
monthNote = await getNoteStartingWith(yearNote.noteId, monthNumber);
if (!monthNote) {
2018-04-03 08:46:46 +08:00
const dateObj = dateUtils.parseDate(dateTimeStr);
const noteTitle = monthNumber + " - " + MONTHS[dateObj.getMonth()];
monthNote = await createNote(yearNote.noteId, noteTitle);
}
await attributeService.createLabel(monthNote.noteId, MONTH_LABEL, monthStr);
await attributeService.createLabel(monthNote.noteId, 'sorted');
}
return monthNote;
}
2018-05-09 04:39:01 +08:00
async function getDateNote(dateTimeStr) {
const rootNote = await getRootCalendarNote();
const dateStr = dateTimeStr.substr(0, 10);
const dayNumber = dateTimeStr.substr(8, 2);
let dateNote = await attributeService.getNoteWithLabel(DATE_LABEL, dateStr);
if (!dateNote) {
const monthNote = await getMonthNote(dateTimeStr, rootNote);
dateNote = await getNoteStartingWith(monthNote.noteId, dayNumber);
if (!dateNote) {
2018-04-03 08:46:46 +08:00
const dateObj = dateUtils.parseDate(dateTimeStr);
const noteTitle = dayNumber + " - " + DAYS[dateObj.getDay()];
dateNote = await createNote(monthNote.noteId, noteTitle);
}
await attributeService.createLabel(dateNote.noteId, DATE_LABEL, dateStr);
}
return dateNote;
}
module.exports = {
getRootCalendarNote,
getYearNote,
getMonthNote,
getDateNote
};