editor view: fix invalid entity inputs; fix keyboard focus
This commit is contained in:
parent
8a58849a22
commit
4134badf9d
4 changed files with 27 additions and 16 deletions
|
@ -66,6 +66,7 @@ Ox.Editable = function(options, self) {
|
||||||
},
|
},
|
||||||
value: function() {
|
value: function() {
|
||||||
self.$value.html(formatValue());
|
self.$value.html(formatValue());
|
||||||
|
self.$input && self.$input.options({value: formatInputValue()});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.addClass(
|
.addClass(
|
||||||
|
|
|
@ -341,7 +341,21 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
['event', 'place'].indexOf(self.options.type) > -1
|
['event', 'place'].indexOf(self.options.type) > -1
|
||||||
? self.$outer : that.$content
|
? self.$outer : that.$content
|
||||||
);
|
);
|
||||||
|
|
||||||
|
[
|
||||||
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||||
|
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
||||||
|
'equal', 'f', 'g', 'h', 'i', 'minus', 'n', 'o',
|
||||||
|
'openbracket', 'p', 'shift_0', 'shift_equal',
|
||||||
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
|
'slash', 'space'
|
||||||
|
].forEach(function(key) {
|
||||||
|
key = 'key.' + key;
|
||||||
|
self.$annotations.bindEvent(key, function() {
|
||||||
|
that.triggerEvent(key);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
self.loaded = false;
|
self.loaded = false;
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
self.$annotations.options({
|
self.$annotations.options({
|
||||||
|
@ -445,14 +459,6 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
if (self.options.type == 'entity') {
|
|
||||||
annotations = annotations.map(function(annotation) {
|
|
||||||
annotation.value = '<a href="/entities/'
|
|
||||||
+ annotation.entity.id + '">'
|
|
||||||
+ annotation.value + '</a>';
|
|
||||||
return annotation;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return annotations;
|
return annotations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -723,9 +729,13 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
});
|
});
|
||||||
self.options.selected = item.id;
|
self.options.selected = item.id;
|
||||||
}
|
}
|
||||||
if (self.options.type == 'entity' && Ox.isEmpty(data)) {
|
if (self.options.type == 'entity') {
|
||||||
// did not match any existing entity
|
// data.value is missing if input did not match any existing entity
|
||||||
self.$annotations.updateItem('');
|
if (data.value) {
|
||||||
|
self.$annotations.updateItem(data.value);
|
||||||
|
} else {
|
||||||
|
that.removeItem();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (self.$widget) {
|
if (self.$widget) {
|
||||||
// update may have made the item match,
|
// update may have made the item match,
|
||||||
|
|
|
@ -406,7 +406,8 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
layer.type == 'event' ? 'calendar' : 'map'
|
layer.type == 'event' ? 'calendar' : 'map'
|
||||||
), data);
|
), data);
|
||||||
}
|
}
|
||||||
});
|
})
|
||||||
|
.appendTo(self.$folders);
|
||||||
[
|
[
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||||
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
||||||
|
@ -415,12 +416,11 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
'slash', 'space'
|
'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key.' + key;
|
||||||
self.$folder[index].bindEvent(key, function() {
|
self.$folder[index].bindEvent(key, function() {
|
||||||
that.triggerEvent(key);
|
that.triggerEvent(key);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
self.$folder[index].appendTo(self.$folders);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderFolders() {
|
function renderFolders() {
|
||||||
|
|
|
@ -911,7 +911,7 @@ Ox.VideoAnnotationPanel = function(options, self) {
|
||||||
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
'slash', 'space'
|
'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key.' + key;
|
||||||
self.$annotationPanel.bindEvent(key, function() {
|
self.$annotationPanel.bindEvent(key, function() {
|
||||||
that.triggerEvent(key);
|
that.triggerEvent(key);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue