mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import NoteContextAwareWidget from "../note_context_aware_widget.js";
|
|
|
|
const TPL = `
|
|
<div class="note-properties-widget">
|
|
<style>
|
|
.note-properties-widget {
|
|
padding: 12px;
|
|
color: var(--muted-text-color);
|
|
}
|
|
</style>
|
|
|
|
<div style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap">
|
|
This note was originally taken from: <a class="page-url external"></a>
|
|
</div>
|
|
</div>`;
|
|
|
|
export default class NotePropertiesWidget extends NoteContextAwareWidget {
|
|
isEnabled() {
|
|
return this.note && !!this.note.getLabelValue('pageUrl');
|
|
}
|
|
|
|
getTitle() {
|
|
return {
|
|
show: this.isEnabled(),
|
|
activate: true,
|
|
title: 'Info',
|
|
icon: 'bx bx-info-square'
|
|
};
|
|
}
|
|
|
|
doRender() {
|
|
this.$widget = $(TPL);
|
|
this.contentSized();
|
|
|
|
this.$pageUrl = this.$widget.find('.page-url');
|
|
}
|
|
|
|
async refreshWithNote(note) {
|
|
const pageUrl = note.getLabelValue('pageUrl');
|
|
|
|
this.$pageUrl
|
|
.attr('href', pageUrl)
|
|
.attr('title', pageUrl)
|
|
.text(pageUrl);
|
|
}
|
|
}
|