mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 11:56:01 +01:00
Compare commits
10 Commits
v0.46.4-be
...
v0.46.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fdce218e88 | ||
|
|
6c8d20288d | ||
|
|
88d04772c4 | ||
|
|
9fd26a9b9f | ||
|
|
98f02c3c9a | ||
|
|
584fea1992 | ||
|
|
af50a1ec52 | ||
|
|
4e76d1fa85 | ||
|
|
03a11e6f77 | ||
|
|
e1a16b4a9f |
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "trilium",
|
"name": "trilium",
|
||||||
"version": "0.46.3-beta",
|
"version": "0.46.4-beta",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "trilium",
|
"name": "trilium",
|
||||||
"productName": "Trilium Notes",
|
"productName": "Trilium Notes",
|
||||||
"description": "Trilium Notes",
|
"description": "Trilium Notes",
|
||||||
"version": "0.46.4-beta",
|
"version": "0.46.5",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"main": "electron.js",
|
"main": "electron.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
@@ -79,6 +79,15 @@ async function renderAttributes(attributes, renderIsInheritable) {
|
|||||||
return $container;
|
return $container;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const HIDDEN_ATTRIBUTES = [
|
||||||
|
'originalFileName',
|
||||||
|
'template',
|
||||||
|
'cssClass',
|
||||||
|
'iconClass',
|
||||||
|
'pageSize',
|
||||||
|
'viewType'
|
||||||
|
];
|
||||||
|
|
||||||
async function renderNormalAttributes(note) {
|
async function renderNormalAttributes(note) {
|
||||||
const promotedDefinitionAttributes = note.getPromotedDefinitionAttributes();
|
const promotedDefinitionAttributes = note.getPromotedDefinitionAttributes();
|
||||||
let attrs = note.getAttributes();
|
let attrs = note.getAttributes();
|
||||||
@@ -90,6 +99,7 @@ async function renderNormalAttributes(note) {
|
|||||||
attrs = attrs.filter(
|
attrs = attrs.filter(
|
||||||
attr => !attr.isDefinition()
|
attr => !attr.isDefinition()
|
||||||
&& !attr.isAutoLink
|
&& !attr.isAutoLink
|
||||||
|
&& !HIDDEN_ATTRIBUTES.includes(attr.name)
|
||||||
&& attr.noteId === note.noteId
|
&& attr.noteId === note.noteId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,11 @@ export default class Entrypoints extends Component {
|
|||||||
|
|
||||||
await ws.waitForMaxKnownEntityChangeId();
|
await ws.waitForMaxKnownEntityChangeId();
|
||||||
|
|
||||||
await appContext.tabManager.openTabWithNote(note.noteId, true);
|
const hoistedNoteId = appContext.tabManager.getActiveTabContext()
|
||||||
|
? appContext.tabManager.getActiveTabContext().hoistedNoteId
|
||||||
|
: 'root';
|
||||||
|
|
||||||
|
await appContext.tabManager.openTabWithNote(note.noteId, true, null, hoistedNoteId);
|
||||||
|
|
||||||
appContext.triggerEvent('focusAndSelectTitle');
|
appContext.triggerEvent('focusAndSelectTitle');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -194,9 +194,18 @@ const ATTR_HELP = {
|
|||||||
"appTheme": "marks CSS notes which are full Trilium themes and are thus available in Trilium options.",
|
"appTheme": "marks CSS notes which are full Trilium themes and are thus available in Trilium options.",
|
||||||
"cssClass": "value of this label is then added as CSS class to the node representing given note in the tree. This can be useful for advanced theming. Can be used in template notes.",
|
"cssClass": "value of this label is then added as CSS class to the node representing given note in the tree. This can be useful for advanced theming. Can be used in template notes.",
|
||||||
"iconClass": "value of this label is added as a CSS class to the icon on the tree which can help visually distinguish the notes in the tree. Example might be bx bx-home - icons are taken from boxicons. Can be used in template notes.",
|
"iconClass": "value of this label is added as a CSS class to the icon on the tree which can help visually distinguish the notes in the tree. Example might be bx bx-home - icons are taken from boxicons. Can be used in template notes.",
|
||||||
"bookZoomLevel": 'applies only to book note and sets the "zoom level" (how many notes fit on 1 row)',
|
"pageSize": "number of items per page in note listing",
|
||||||
"customRequestHandler": 'see <a href="javascript:" data-help-page="Custom request handler">Custom request handler</a>',
|
"customRequestHandler": 'see <a href="javascript:" data-help-page="Custom request handler">Custom request handler</a>',
|
||||||
"customResourceProvider": 'see <a href="javascript:" data-help-page="Custom request handler">Custom request handler</a>'
|
"customResourceProvider": 'see <a href="javascript:" data-help-page="Custom request handler">Custom request handler</a>',
|
||||||
|
"widget": "marks this note as a custom widget which will be added to the Trilium component tree",
|
||||||
|
"workspace": "marks this note as a workspace which allows easy hoisting",
|
||||||
|
"workspaceIconClass": "defines box icon CSS class which will be used in tab when hoisted to this note",
|
||||||
|
"workspaceTabBackgroundColor": "CSS color used in the note tab when hoisted to this note",
|
||||||
|
"searchHome": "new search notes will be created as children of this note",
|
||||||
|
"hoistedSearchHome": "new search notes will be created as children of this note when hoisted to some ancestor of this note",
|
||||||
|
"inbox": "default inbox location for new notes",
|
||||||
|
"hoistedInbox": "default inbox location for new notes when hoisted to some ancestor of this note",
|
||||||
|
"sqlConsoleHome": "default location of SQL console notes",
|
||||||
},
|
},
|
||||||
"relation": {
|
"relation": {
|
||||||
"runOnNoteCreation": "executes when note is created on backend",
|
"runOnNoteCreation": "executes when note is created on backend",
|
||||||
|
|||||||
@@ -278,7 +278,7 @@ export default class NoteDetailWidget extends TabAwareWidget {
|
|||||||
|
|
||||||
const label = attrs.find(attr =>
|
const label = attrs.find(attr =>
|
||||||
attr.type === 'label'
|
attr.type === 'label'
|
||||||
&& ['readOnly', 'autoReadOnlyDisabled', 'cssClass', 'bookZoomLevel', 'displayRelations'].includes(attr.name)
|
&& ['readOnly', 'autoReadOnlyDisabled', 'cssClass', 'displayRelations'].includes(attr.name)
|
||||||
&& attr.isAffecting(this.note));
|
&& attr.isAffecting(this.note));
|
||||||
|
|
||||||
const relation = attrs.find(attr =>
|
const relation = attrs.find(attr =>
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ function processContent(images, note, content) {
|
|||||||
for (const {src, dataUrl, imageId} of images) {
|
for (const {src, dataUrl, imageId} of images) {
|
||||||
const filename = path.basename(src);
|
const filename = path.basename(src);
|
||||||
|
|
||||||
if (!dataUrl.startsWith("data:image")) {
|
if (!dataUrl || !dataUrl.startsWith("data:image")) {
|
||||||
log.info("Image could not be recognized as data URL:", dataUrl.substr(0, Math.min(100, dataUrl.length)));
|
log.info("Image could not be recognized as data URL:", dataUrl.substr(0, Math.min(100, dataUrl.length)));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,8 +9,27 @@ const cls = require('../../services/cls');
|
|||||||
const repository = require('../../services/repository');
|
const repository = require('../../services/repository');
|
||||||
|
|
||||||
function getInboxNote(req) {
|
function getInboxNote(req) {
|
||||||
return attributeService.getNoteWithLabel('inbox')
|
const hoistedNote = getHoistedNote();
|
||||||
|
|
||||||
|
let inbox;
|
||||||
|
|
||||||
|
if (hoistedNote) {
|
||||||
|
([inbox] = hoistedNote.getDescendantNotesWithLabel('hoistedInbox'));
|
||||||
|
|
||||||
|
if (!inbox) {
|
||||||
|
([inbox] = hoistedNote.getDescendantNotesWithLabel('inbox'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!inbox) {
|
||||||
|
inbox = hoistedNote;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
inbox = attributeService.getNoteWithLabel('inbox')
|
||||||
|| dateNoteService.getDateNote(req.params.date);
|
|| dateNoteService.getDateNote(req.params.date);
|
||||||
|
}
|
||||||
|
|
||||||
|
return inbox;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDateNote(req) {
|
function getDateNote(req) {
|
||||||
@@ -66,27 +85,18 @@ function createSearchNote(req) {
|
|||||||
const searchString = params.searchString || "";
|
const searchString = params.searchString || "";
|
||||||
let ancestorNoteId = params.ancestorNoteId;
|
let ancestorNoteId = params.ancestorNoteId;
|
||||||
|
|
||||||
const hoistedNote = cls.getHoistedNoteId() && cls.getHoistedNoteId() !== 'root'
|
const hoistedNote = getHoistedNote();
|
||||||
? repository.getNote(cls.getHoistedNoteId())
|
|
||||||
: null;
|
|
||||||
|
|
||||||
let searchHome;
|
let searchHome;
|
||||||
|
|
||||||
if (hoistedNote) {
|
if (hoistedNote) {
|
||||||
([searchHome] = hoistedNote.getDescendantNotesWithLabel('hoistedSearchHome'));
|
([searchHome] = hoistedNote.getDescendantNotesWithLabel('hoistedSearchHome'));
|
||||||
|
|
||||||
|
if (!searchHome) {
|
||||||
|
([searchHome] = hoistedNote.getDescendantNotesWithLabel('searchHome'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!searchHome) {
|
if (!searchHome) {
|
||||||
const today = dateUtils.localNowDate();
|
|
||||||
|
|
||||||
searchHome = attributeService.getNoteWithLabel('searchHome')
|
|
||||||
|| dateNoteService.getDateNote(today);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hoistedNote) {
|
|
||||||
|
|
||||||
if (!hoistedNote.getDescendantNoteIds().includes(searchHome.noteId)) {
|
|
||||||
// otherwise the note would be saved outside of the hoisted context which is weird
|
|
||||||
searchHome = hoistedNote;
|
searchHome = hoistedNote;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,6 +104,12 @@ function createSearchNote(req) {
|
|||||||
ancestorNoteId = hoistedNote.noteId;
|
ancestorNoteId = hoistedNote.noteId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
const today = dateUtils.localNowDate();
|
||||||
|
|
||||||
|
searchHome = attributeService.getNoteWithLabel('searchHome')
|
||||||
|
|| dateNoteService.getDateNote(today);
|
||||||
|
}
|
||||||
|
|
||||||
const {note} = noteService.createNewNote({
|
const {note} = noteService.createNewNote({
|
||||||
parentNoteId: searchHome.noteId,
|
parentNoteId: searchHome.noteId,
|
||||||
@@ -112,6 +128,12 @@ function createSearchNote(req) {
|
|||||||
return note;
|
return note;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getHoistedNote() {
|
||||||
|
return cls.getHoistedNoteId() && cls.getHoistedNoteId() !== 'root'
|
||||||
|
? repository.getNote(cls.getHoistedNoteId())
|
||||||
|
: null;
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getInboxNote,
|
getInboxNote,
|
||||||
getDateNote,
|
getDateNote,
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ const BUILTIN_ATTRIBUTES = [
|
|||||||
{ type: 'label', name: 'run', isDangerous: true },
|
{ type: 'label', name: 'run', isDangerous: true },
|
||||||
{ type: 'label', name: 'customRequestHandler', isDangerous: true },
|
{ type: 'label', name: 'customRequestHandler', isDangerous: true },
|
||||||
{ type: 'label', name: 'customResourceProvider', isDangerous: true },
|
{ type: 'label', name: 'customResourceProvider', isDangerous: true },
|
||||||
{ type: 'label', name: 'bookZoomLevel', isDangerous: false },
|
|
||||||
{ type: 'label', name: 'widget', isDangerous: true },
|
{ type: 'label', name: 'widget', isDangerous: true },
|
||||||
{ type: 'label', name: 'noteInfoWidgetDisabled' },
|
{ type: 'label', name: 'noteInfoWidgetDisabled' },
|
||||||
{ type: 'label', name: 'linkMapWidgetDisabled' },
|
{ type: 'label', name: 'linkMapWidgetDisabled' },
|
||||||
@@ -38,9 +37,12 @@ const BUILTIN_ATTRIBUTES = [
|
|||||||
{ type: 'label', name: 'workspaceIconClass' },
|
{ type: 'label', name: 'workspaceIconClass' },
|
||||||
{ type: 'label', name: 'workspaceTabBackgroundColor' },
|
{ type: 'label', name: 'workspaceTabBackgroundColor' },
|
||||||
{ type: 'label', name: 'searchHome' },
|
{ type: 'label', name: 'searchHome' },
|
||||||
|
{ type: 'label', name: 'hoistedInbox' },
|
||||||
{ type: 'label', name: 'hoistedSearchHome' },
|
{ type: 'label', name: 'hoistedSearchHome' },
|
||||||
{ type: 'label', name: 'sqlConsoleHome' },
|
{ type: 'label', name: 'sqlConsoleHome' },
|
||||||
{ type: 'label', name: 'datePattern' },
|
{ type: 'label', name: 'datePattern' },
|
||||||
|
{ type: 'label', name: 'pageSize' },
|
||||||
|
{ type: 'label', name: 'viewType' },
|
||||||
|
|
||||||
// relation names
|
// relation names
|
||||||
{ type: 'relation', name: 'runOnNoteCreation', isDangerous: true },
|
{ type: 'relation', name: 'runOnNoteCreation', isDangerous: true },
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
module.exports = { buildDate:"2021-03-10T23:35:12+01:00", buildRevision: "6f901e6852c33ba0dae6c70efb9f65e5b0028995" };
|
module.exports = { buildDate:"2021-03-14T22:56:27+01:00", buildRevision: "6c8d20288df302f3a415bd1bdcace98bf29d4bf6" };
|
||||||
|
|||||||
@@ -44,10 +44,14 @@ function isEntityEventsDisabled() {
|
|||||||
return !!namespace.get('disableEntityEvents');
|
return !!namespace.get('disableEntityEvents');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function clearEntityChanges() {
|
||||||
|
namespace.set('entityChanges', []);
|
||||||
|
}
|
||||||
|
|
||||||
function getAndClearEntityChanges() {
|
function getAndClearEntityChanges() {
|
||||||
const entityChanges = namespace.get('entityChanges') || [];
|
const entityChanges = namespace.get('entityChanges') || [];
|
||||||
|
|
||||||
namespace.set('entityChanges', []);
|
clearEntityChanges();
|
||||||
|
|
||||||
return entityChanges;
|
return entityChanges;
|
||||||
}
|
}
|
||||||
@@ -92,6 +96,7 @@ module.exports = {
|
|||||||
disableEntityEvents,
|
disableEntityEvents,
|
||||||
isEntityEventsDisabled,
|
isEntityEventsDisabled,
|
||||||
reset,
|
reset,
|
||||||
|
clearEntityChanges,
|
||||||
getAndClearEntityChanges,
|
getAndClearEntityChanges,
|
||||||
addEntityChange,
|
addEntityChange,
|
||||||
getEntityFromCache,
|
getEntityFromCache,
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ const IGNORED_ATTR_NAMES = [
|
|||||||
"archived",
|
"archived",
|
||||||
"hidepromotedattributes",
|
"hidepromotedattributes",
|
||||||
"keyboardshortcut",
|
"keyboardshortcut",
|
||||||
"bookzoomlevel",
|
|
||||||
"noteinfowidgetdisabled",
|
"noteinfowidgetdisabled",
|
||||||
"linkmapwidgetdisabled",
|
"linkmapwidgetdisabled",
|
||||||
"noterevisionswidgetdisabled",
|
"noterevisionswidgetdisabled",
|
||||||
|
|||||||
@@ -84,7 +84,15 @@ function exec(opts) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
request.end(opts.body);
|
let payload;
|
||||||
|
|
||||||
|
if (opts.body) {
|
||||||
|
payload = typeof opts.body === 'object'
|
||||||
|
? JSON.stringify(opts.body)
|
||||||
|
: opts.body;
|
||||||
|
}
|
||||||
|
|
||||||
|
request.end(payload);
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
reject(generateError(opts, e.message));
|
reject(generateError(opts, e.message));
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
const log = require('./log');
|
const log = require('./log');
|
||||||
const Database = require('better-sqlite3');
|
const Database = require('better-sqlite3');
|
||||||
const dataDir = require('./data_dir');
|
const dataDir = require('./data_dir');
|
||||||
|
const cls = require('./cls');
|
||||||
|
|
||||||
const dbConnection = new Database(dataDir.DOCUMENT_PATH);
|
const dbConnection = new Database(dataDir.DOCUMENT_PATH);
|
||||||
dbConnection.pragma('journal_mode = WAL');
|
dbConnection.pragma('journal_mode = WAL');
|
||||||
@@ -229,6 +230,7 @@ function wrap(query, func) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function transactional(func) {
|
function transactional(func) {
|
||||||
|
try {
|
||||||
const ret = dbConnection.transaction(func).deferred();
|
const ret = dbConnection.transaction(func).deferred();
|
||||||
|
|
||||||
if (!dbConnection.inTransaction) { // i.e. transaction was really committed (and not just savepoint released)
|
if (!dbConnection.inTransaction) { // i.e. transaction was really committed (and not just savepoint released)
|
||||||
@@ -236,6 +238,12 @@ function transactional(func) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
cls.clearEntityChanges();
|
||||||
|
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function fillNoteIdList(noteIds, truncate = true) {
|
function fillNoteIdList(noteIds, truncate = true) {
|
||||||
|
|||||||
@@ -106,8 +106,6 @@ function sendPing(client, entityChanges = []) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const stats = require('./sync').stats;
|
|
||||||
|
|
||||||
sendMessage(client, {
|
sendMessage(client, {
|
||||||
type: 'sync',
|
type: 'sync',
|
||||||
data: entityChanges
|
data: entityChanges
|
||||||
@@ -118,9 +116,7 @@ function sendTransactionSyncsToAllClients() {
|
|||||||
if (webSocketServer) {
|
if (webSocketServer) {
|
||||||
const entityChanges = cls.getAndClearEntityChanges();
|
const entityChanges = cls.getAndClearEntityChanges();
|
||||||
|
|
||||||
webSocketServer.clients.forEach(function each(client) {
|
webSocketServer.clients.forEach(client => sendPing(client, entityChanges));
|
||||||
sendPing(client, entityChanges);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user