2018-03-26 01:41:29 +08:00
|
|
|
import noteDetailService from '../services/note_detail.js';
|
2018-03-26 01:02:39 +08:00
|
|
|
import utils from '../services/utils.js';
|
2018-02-10 21:37:14 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const $showDialogButton = $(".show-labels-button");
|
|
|
|
const $dialog = $("#labels-dialog");
|
|
|
|
const $saveLabelsButton = $("#save-labels-button");
|
|
|
|
const $labelsBody = $('#labels-table tbody');
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const labelsModel = new LabelsModel();
|
|
|
|
let labelNames = [];
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
function LabelsModel() {
|
|
|
|
const self = this;
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.labels = ko.observableArray();
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.loadLabels = async function() {
|
2018-03-26 01:41:29 +08:00
|
|
|
const noteId = noteDetailService.getCurrentNoteId();
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const labels = await server.get('notes/' + noteId + '/labels');
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
self.labels(labels.map(ko.observable));
|
2018-02-05 08:27:27 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
addLastEmptyRow();
|
2018-02-05 08:27:27 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
labelNames = await server.get('labels/names');
|
2018-02-10 21:37:14 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
// label might not be rendered immediatelly so could not focus
|
|
|
|
setTimeout(() => $(".label-name:last").focus(), 100);
|
2018-02-10 21:37:14 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$labelsBody.sortable({
|
|
|
|
handle: '.handle',
|
|
|
|
containment: $labelsBody,
|
|
|
|
update: function() {
|
|
|
|
let position = 0;
|
2018-02-10 21:37:14 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
// we need to update positions by searching in the DOM, because order of the
|
|
|
|
// labels in the viewmodel (self.labels()) stays the same
|
|
|
|
$labelsBody.find('input[name="position"]').each(function() {
|
|
|
|
const attr = self.getTargetLabel(this);
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
attr().position = position++;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.deleteLabel = function(data, event) {
|
|
|
|
const attr = self.getTargetLabel(event.target);
|
|
|
|
const attrData = attr();
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (attrData) {
|
|
|
|
attrData.isDeleted = 1;
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
attr(attrData);
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
addLastEmptyRow();
|
|
|
|
}
|
|
|
|
};
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
function isValid() {
|
|
|
|
for (let attrs = self.labels(), i = 0; i < attrs.length; i++) {
|
|
|
|
if (self.isEmptyName(i)) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-02-05 06:22:21 +08:00
|
|
|
}
|
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return true;
|
|
|
|
}
|
2018-02-05 12:16:45 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.save = async function() {
|
|
|
|
// we need to defocus from input (in case of enter-triggered save) because value is updated
|
|
|
|
// on blur event (because of conflict with jQuery UI Autocomplete). Without this, input would
|
|
|
|
// stay in focus, blur wouldn't be triggered and change wouldn't be updated in the viewmodel.
|
|
|
|
$saveLabelsButton.focus();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (!isValid()) {
|
|
|
|
alert("Please fix all validation errors and try saving again.");
|
|
|
|
return;
|
|
|
|
}
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-26 01:41:29 +08:00
|
|
|
const noteId = noteDetailService.getCurrentNoteId();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const labelsToSave = self.labels()
|
|
|
|
.map(attr => attr())
|
|
|
|
.filter(attr => attr.labelId !== "" || attr.name !== "");
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const labels = await server.put('notes/' + noteId + '/labels', labelsToSave);
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
self.labels(labels.map(ko.observable));
|
2018-01-12 10:40:09 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
addLastEmptyRow();
|
2018-02-05 09:23:30 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
utils.showMessage("Labels have been saved.");
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-26 01:41:29 +08:00
|
|
|
noteDetailService.loadLabelList();
|
2018-03-25 23:09:17 +08:00
|
|
|
};
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
function addLastEmptyRow() {
|
|
|
|
const attrs = self.labels().filter(attr => attr().isDeleted === 0);
|
|
|
|
const last = attrs.length === 0 ? null : attrs[attrs.length - 1]();
|
|
|
|
|
|
|
|
if (!last || last.name.trim() !== "" || last.value !== "") {
|
|
|
|
self.labels.push(ko.observable({
|
|
|
|
labelId: '',
|
|
|
|
name: '',
|
|
|
|
value: '',
|
|
|
|
isDeleted: 0,
|
|
|
|
position: 0
|
|
|
|
}));
|
2018-02-05 06:22:21 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.labelChanged = function (data, event) {
|
|
|
|
addLastEmptyRow();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const attr = self.getTargetLabel(event.target);
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
attr.valueHasMutated();
|
|
|
|
};
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.isNotUnique = function(index) {
|
|
|
|
const cur = self.labels()[index]();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (cur.name.trim() === "") {
|
|
|
|
return false;
|
|
|
|
}
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
for (let attrs = self.labels(), i = 0; i < attrs.length; i++) {
|
|
|
|
const attr = attrs[i]();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (index !== i && cur.name === attr.name) {
|
|
|
|
return true;
|
2018-02-05 06:22:21 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return false;
|
|
|
|
};
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.isEmptyName = function(index) {
|
|
|
|
const cur = self.labels()[index]();
|
2018-02-05 06:22:21 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return cur.name.trim() === "" && (cur.labelId !== "" || cur.value !== "");
|
|
|
|
};
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
this.getTargetLabel = function(target) {
|
|
|
|
const context = ko.contextFor(target);
|
|
|
|
const index = context.$index();
|
2018-02-07 12:09:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return self.labels()[index];
|
2018-01-11 13:01:16 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function showDialog() {
|
|
|
|
glob.activeDialog = $dialog;
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
await labelsModel.loadLabels();
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$dialog.dialog({
|
|
|
|
modal: true,
|
|
|
|
width: 800,
|
|
|
|
height: 500
|
|
|
|
});
|
|
|
|
}
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(document).bind('keydown', 'alt+a', e => {
|
|
|
|
showDialog();
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
e.preventDefault();
|
|
|
|
});
|
2018-01-11 13:01:16 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
ko.applyBindings(labelsModel, document.getElementById('labels-dialog'));
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(document).on('focus', '.label-name', function (e) {
|
|
|
|
if (!$(this).hasClass("ui-autocomplete-input")) {
|
|
|
|
$(this).autocomplete({
|
|
|
|
// shouldn't be required and autocomplete should just accept array of strings, but that fails
|
|
|
|
// because we have overriden filter() function in init.js
|
|
|
|
source: labelNames.map(attr => {
|
|
|
|
return {
|
|
|
|
label: attr,
|
|
|
|
value: attr
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
minLength: 0
|
|
|
|
});
|
|
|
|
}
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(this).autocomplete("search", $(this).val());
|
|
|
|
});
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(document).on('focus', '.label-value', async function (e) {
|
|
|
|
if (!$(this).hasClass("ui-autocomplete-input")) {
|
|
|
|
const labelName = $(this).parent().parent().find('.label-name').val();
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (labelName.trim() === "") {
|
|
|
|
return;
|
|
|
|
}
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const labelValues = await server.get('labels/values/' + encodeURIComponent(labelName));
|
2018-02-05 08:43:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (labelValues.length === 0) {
|
|
|
|
return;
|
2018-02-05 08:43:11 +08:00
|
|
|
}
|
2018-02-05 08:27:27 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(this).autocomplete({
|
|
|
|
// shouldn't be required and autocomplete should just accept array of strings, but that fails
|
|
|
|
// because we have overriden filter() function in init.js
|
|
|
|
source: labelValues.map(attr => {
|
|
|
|
return {
|
|
|
|
label: attr,
|
|
|
|
value: attr
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
minLength: 0
|
|
|
|
});
|
|
|
|
}
|
2018-02-05 08:27:27 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$(this).autocomplete("search", $(this).val());
|
|
|
|
});
|
2018-03-24 12:54:50 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$showDialogButton.click(showDialog);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
showDialog
|
|
|
|
};
|