mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 11:02:27 +08:00
76 lines
2.6 KiB
JavaScript
76 lines
2.6 KiB
JavaScript
![]() |
import attributeService from '../services/attributes.js';
|
||
|
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
||
|
|
||
|
const TPL = `
|
||
|
<div class="dropdown editability-select-widget">
|
||
|
<style>
|
||
|
.editability-dropdown {
|
||
|
width: 300px;
|
||
|
}
|
||
|
|
||
|
.editability-dropdown .dropdown-item div {
|
||
|
font-size: small;
|
||
|
color: var(--muted-text-color);
|
||
|
white-space: normal;
|
||
|
}
|
||
|
</style>
|
||
|
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-sm dropdown-toggle editability-button">
|
||
|
<span class="editability-active-desc">auto</span>
|
||
|
<span class="caret"></span>
|
||
|
</button>
|
||
|
<div class="editability-dropdown dropdown-menu dropdown-menu-right">
|
||
|
<a class="dropdown-item" href="#" data-editability="auto">
|
||
|
Auto
|
||
|
<div>Note is editable if it's not too long.</div>
|
||
|
</a>
|
||
|
<a class="dropdown-item" href="#" data-editability="readOnly">
|
||
|
Read-only
|
||
|
<div>Note is read-only, but can be edited with a button click.</div>
|
||
|
</a>
|
||
|
<a class="dropdown-item" href="#" data-editability="autoReadOnlyDisabled">
|
||
|
Always editable
|
||
|
<div>Note is always editable, regardless of its length.</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
export default class EditabilitySelectWidget extends NoteContextAwareWidget {
|
||
|
doRender() {
|
||
|
this.$widget = $(TPL);
|
||
|
|
||
|
this.$editabilityActiveDesc = this.$widget.find(".editability-active-desc");
|
||
|
|
||
|
this.$widget.on('click', '.dropdown-item',
|
||
|
async e => {
|
||
|
this.$widget.find('.dropdown-toggle').dropdown('toggle');
|
||
|
|
||
|
const editability = $(e.target).closest("[data-editability]").attr("data-editability");
|
||
|
|
||
|
for (const ownedAttr of this.note.getOwnedLabels()) {
|
||
|
if (['readOnly', 'autoReadOnlyDisabled'].includes(ownedAttr.name)) {
|
||
|
await attributeService.removeAttributeById(this.noteId, ownedAttr.attributeId);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (editability !== 'auto') {
|
||
|
await attributeService.addLabel(this.noteId, editability);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async refreshWithNote(note) {
|
||
|
this.$editabilityActiveDesc.text(
|
||
|
this.note.hasLabel('readOnly') ? 'Read-Only' : (
|
||
|
this.note.hasLabel('autoReadOnlyDisabled') ? 'Always Editable' : 'Auto'
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
entitiesReloadedEvent({loadResults}) {
|
||
|
if (loadResults.getAttributes().find(attr => attr.noteId === this.noteId)) {
|
||
|
this.refresh();
|
||
|
}
|
||
|
}
|
||
|
}
|