mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 09:58:32 +02:00
fixes to update from detail to editor
This commit is contained in:
parent
c5cc6b91c1
commit
2c9565b4b3
@ -153,31 +153,31 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
this.$relatedNotesMoreNotes = this.$relatedNotesContainer.find('.related-notes-more-notes');
|
this.$relatedNotesMoreNotes = this.$relatedNotesContainer.find('.related-notes-more-notes');
|
||||||
|
|
||||||
this.$attrInputName = this.$widget.find('.attr-input-name');
|
this.$attrInputName = this.$widget.find('.attr-input-name');
|
||||||
this.$attrInputName.on('keyup', () => this.updateParent());
|
this.$attrInputName.on('keyup', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowValue = this.$widget.find('.attr-row-value');
|
this.$attrRowValue = this.$widget.find('.attr-row-value');
|
||||||
this.$attrInputValue = this.$widget.find('.attr-input-value');
|
this.$attrInputValue = this.$widget.find('.attr-input-value');
|
||||||
this.$attrInputValue.on('keyup', () => this.updateParent());
|
this.$attrInputValue.on('keyup', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowPromoted = this.$widget.find('.attr-row-promoted');
|
this.$attrRowPromoted = this.$widget.find('.attr-row-promoted');
|
||||||
this.$attrInputPromoted = this.$widget.find('.attr-input-promoted');
|
this.$attrInputPromoted = this.$widget.find('.attr-input-promoted');
|
||||||
this.$attrInputPromoted.on('change', () => this.updateDefinition());
|
this.$attrInputPromoted.on('change', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowMultiplicity = this.$widget.find('.attr-row-multiplicity');
|
this.$attrRowMultiplicity = this.$widget.find('.attr-row-multiplicity');
|
||||||
this.$attrInputMultiplicity = this.$widget.find('.attr-input-multiplicity');
|
this.$attrInputMultiplicity = this.$widget.find('.attr-input-multiplicity');
|
||||||
this.$attrInputMultiplicity.on('change', () => this.updateDefinition());
|
this.$attrInputMultiplicity.on('change', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowLabelType = this.$widget.find('.attr-row-label-type');
|
this.$attrRowLabelType = this.$widget.find('.attr-row-label-type');
|
||||||
this.$attrInputLabelType = this.$widget.find('.attr-input-label-type');
|
this.$attrInputLabelType = this.$widget.find('.attr-input-label-type');
|
||||||
this.$attrInputLabelType.on('change', () => this.updateDefinition());
|
this.$attrInputLabelType.on('change', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowNumberPrecision = this.$widget.find('.attr-row-number-precision');
|
this.$attrRowNumberPrecision = this.$widget.find('.attr-row-number-precision');
|
||||||
this.$attrInputNumberPrecision = this.$widget.find('.attr-input-number-precision');
|
this.$attrInputNumberPrecision = this.$widget.find('.attr-input-number-precision');
|
||||||
this.$attrInputNumberPrecision.on('change', () => this.updateDefinition());
|
this.$attrInputNumberPrecision.on('change', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowInverseRelation = this.$widget.find('.attr-row-inverse-relation');
|
this.$attrRowInverseRelation = this.$widget.find('.attr-row-inverse-relation');
|
||||||
this.$attrInputInverseRelation = this.$widget.find('.attr-input-inverse-relation');
|
this.$attrInputInverseRelation = this.$widget.find('.attr-input-inverse-relation');
|
||||||
this.$attrInputInverseRelation.on('keyup', () => this.updateDefinition());
|
this.$attrInputInverseRelation.on('keyup', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$attrRowTargetNote = this.$widget.find('.attr-row-target-note');
|
this.$attrRowTargetNote = this.$widget.find('.attr-row-target-note');
|
||||||
this.$attrInputTargetNote = this.$widget.find('.attr-input-target-note');
|
this.$attrInputTargetNote = this.$widget.find('.attr-input-target-note');
|
||||||
@ -194,7 +194,7 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.$attrInputInheritable = this.$widget.find('.attr-input-inheritable');
|
this.$attrInputInheritable = this.$widget.find('.attr-input-inheritable');
|
||||||
this.$attrInputInheritable.on('change', () => this.updateParent());
|
this.$attrInputInheritable.on('change', () => this.updateAttributeInEditor());
|
||||||
|
|
||||||
this.$closeAttrDetailButton = this.$widget.find('.close-attr-detail-button');
|
this.$closeAttrDetailButton = this.$widget.find('.close-attr-detail-button');
|
||||||
this.$attrIsOwnedBy = this.$widget.find('.attr-is-owned-by');
|
this.$attrIsOwnedBy = this.$widget.find('.attr-is-owned-by');
|
||||||
@ -355,7 +355,7 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateParent() {
|
updateAttributeInEditor() {
|
||||||
let attrName = this.$attrInputName.val();
|
let attrName = this.$attrInputName.val();
|
||||||
|
|
||||||
if (this.attrType === 'label-definition') {
|
if (this.attrType === 'label-definition') {
|
||||||
@ -365,16 +365,19 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.attribute.name = attrName;
|
this.attribute.name = attrName;
|
||||||
this.attribute.value = this.$attrInputValue.val();
|
|
||||||
this.attribute.isInheritable = this.$attrInputInheritable.is(":checked");
|
this.attribute.isInheritable = this.$attrInputInheritable.is(":checked");
|
||||||
|
|
||||||
|
if (this.attrType.endsWith('-definition')) {
|
||||||
|
this.attribute.value = this.buildDefinitionValue();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.attribute.value = this.$attrInputValue.val();
|
||||||
|
}
|
||||||
|
|
||||||
this.triggerCommand('updateAttributeList', { attributes: this.allAttributes });
|
this.triggerCommand('updateAttributeList', { attributes: this.allAttributes });
|
||||||
}
|
}
|
||||||
|
|
||||||
updateDefinition() {
|
buildDefinitionValue() {
|
||||||
this.attribute.name = this.$attrInputName.val();
|
|
||||||
this.attribute.isInheritable = this.$attrInputInheritable.is(":checked");
|
|
||||||
|
|
||||||
const props = [];
|
const props = [];
|
||||||
|
|
||||||
if (this.$attrInputPromoted.is(":checked")) {
|
if (this.$attrInputPromoted.is(":checked")) {
|
||||||
@ -385,8 +388,7 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
|
|
||||||
if (this.attrType === 'label-definition') {
|
if (this.attrType === 'label-definition') {
|
||||||
props.push(this.$attrInputLabelType.val());
|
props.push(this.$attrInputLabelType.val());
|
||||||
}
|
} else if (this.attrType === 'relation-definition' && this.$attrInputInverseRelation.val().trim().length > 0) {
|
||||||
else if (this.attrType === 'relation-definition' && this.$attrInputInverseRelation.val().trim().length > 0) {
|
|
||||||
props.push("inverse=" + this.$attrInputInverseRelation.val());
|
props.push("inverse=" + this.$attrInputInverseRelation.val());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -394,9 +396,7 @@ export default class AttributeDetailWidget extends BasicWidget {
|
|||||||
this.attrType === 'label-definition'
|
this.attrType === 'label-definition'
|
||||||
&& this.$attrInputLabelType.val() === 'number');
|
&& this.$attrInputLabelType.val() === 'number');
|
||||||
|
|
||||||
this.attribute.value = props.join(",");
|
return props.join(",");
|
||||||
|
|
||||||
this.triggerCommand('updateAttributeList', { attributes: this.allAttributes });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
hide() {
|
hide() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user