update video editor
This commit is contained in:
parent
56cf323110
commit
688ae65cf1
8 changed files with 413 additions and 176 deletions
|
@ -14,8 +14,10 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
editable: true,
|
editable: true,
|
||||||
itemName: 'item',
|
itemName: 'item',
|
||||||
items: [],
|
items: [],
|
||||||
|
placeholder: '',
|
||||||
position: -1,
|
position: -1,
|
||||||
selected: '',
|
selected: '',
|
||||||
|
separator: ',',
|
||||||
sort: [],
|
sort: [],
|
||||||
submitOnBlur: true,
|
submitOnBlur: true,
|
||||||
type: 'input',
|
type: 'input',
|
||||||
|
@ -39,33 +41,35 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
});
|
});
|
||||||
|
|
||||||
self.$items = [];
|
self.$items = [];
|
||||||
|
self.editing = false;
|
||||||
|
|
||||||
renderItems();
|
renderItems();
|
||||||
|
|
||||||
self.selected = getSelectedPosition();
|
self.selected = getSelectedPosition();
|
||||||
|
|
||||||
function anyclick(e) {
|
function anyclick(e) {
|
||||||
|
Ox.print('SELF EDITING', self.editing)
|
||||||
var $target = $(e.target),
|
var $target = $(e.target),
|
||||||
$parent = $target.parent(),
|
$parent = $target.parent(),
|
||||||
position = $parent.data('position');
|
position = $parent.data('position');
|
||||||
//ignore clicks while editing
|
|
||||||
if (!$target.is('.OxInput')) {
|
if (!$target.is('.OxInput')) {
|
||||||
if (self.selected > -1) {
|
Ox.print('BLURRED EDITING', self.blurred, self.editing)
|
||||||
//end editing but keep selected if clicked next to a keyword
|
|
||||||
if (self.editing || self.$items[self.selected].options('editing')) {
|
|
||||||
self.editing = false;
|
|
||||||
self.$items[self.selected].options({editing: false});
|
|
||||||
//deselect if not editing and not going to select antoher one
|
|
||||||
} else if (!$parent.is('.OxEditableElement')) {
|
|
||||||
selectNone();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//select if clicked on other editable element
|
|
||||||
if ($parent.is('.OxEditableElement')) {
|
if ($parent.is('.OxEditableElement')) {
|
||||||
|
// select another item
|
||||||
|
Ox.print('AAAAA')
|
||||||
selectItem(
|
selectItem(
|
||||||
e.metaKey && position == self.selected
|
e.metaKey && position == self.selected
|
||||||
? '' : $parent.data('position')
|
? '' : $parent.data('position')
|
||||||
);
|
);
|
||||||
|
} else if (!self.blurred) {
|
||||||
|
// if there wasn't an active input element
|
||||||
|
if (self.editing) {
|
||||||
|
// blur if still in editing mode
|
||||||
|
that.blurItem();
|
||||||
|
} else {
|
||||||
|
// othewise deselect selected
|
||||||
|
selectNone();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
that.gainFocus();
|
that.gainFocus();
|
||||||
}
|
}
|
||||||
|
@ -78,6 +82,8 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
that.triggerEvent('delete', {
|
that.triggerEvent('delete', {
|
||||||
id: self.options.selected
|
id: self.options.selected
|
||||||
});
|
});
|
||||||
|
self.selected = -1;
|
||||||
|
self.options.selected = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,16 +105,32 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
return Ox.getIndexById(self.options.items, self.options.selected);
|
return Ox.getIndexById(self.options.items, self.options.selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderItems() {
|
function renderItems(blur) {
|
||||||
|
if (self.editing) {
|
||||||
|
self.options.items[getSelectedPosition()].value = that.find('input:visible').val();
|
||||||
|
}
|
||||||
that.empty();
|
that.empty();
|
||||||
|
if (self.options.items.length == 0) {
|
||||||
|
Ox.Editable({
|
||||||
|
editable: false,
|
||||||
|
type: 'text',
|
||||||
|
value: self.options.placeholder
|
||||||
|
})
|
||||||
|
.addClass('OxPlaceholder')
|
||||||
|
.appendTo(that);
|
||||||
|
} else {
|
||||||
sortItems();
|
sortItems();
|
||||||
self.options.items.forEach(function(item, i) {
|
self.options.items.forEach(function(item, i) {
|
||||||
i && self.options.type == 'input'
|
if (i && self.options.type == 'input') {
|
||||||
&& $('<span>')
|
$('<span>')
|
||||||
.html(', ')
|
.addClass('OxSeparator')
|
||||||
|
.html(self.options.separator + ' ')
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
}
|
||||||
self.$items[i] = Ox.Editable({
|
self.$items[i] = Ox.Editable({
|
||||||
|
blurred: self.editing && i == self.selected ? blur : false,
|
||||||
editable: self.options.editable && item.editable,
|
editable: self.options.editable && item.editable,
|
||||||
|
editing: self.editing && i == self.selected,
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return value || ' '
|
return value || ' '
|
||||||
},
|
},
|
||||||
|
@ -124,19 +146,34 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
.data({position: i})
|
.data({position: i})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
blur: function(data) {
|
blur: function(data) {
|
||||||
|
// fixme: remove data
|
||||||
|
that.gainFocus();
|
||||||
|
that.triggerEvent('blur', {
|
||||||
|
id: item.id,
|
||||||
|
value: data.value
|
||||||
|
});
|
||||||
|
self.blurred = true;
|
||||||
|
setTimeout(function() {
|
||||||
|
self.blurred = false;
|
||||||
|
}, 250);
|
||||||
|
},
|
||||||
|
cancel: function(data) {
|
||||||
|
self.editing = false;
|
||||||
that.gainFocus();
|
that.gainFocus();
|
||||||
that.triggerEvent('blur', data);
|
that.triggerEvent('blur', data);
|
||||||
},
|
},
|
||||||
cancel: function(data) {
|
change: function(data) {
|
||||||
that.gainFocus();
|
that.triggerEvent('change', {
|
||||||
Ox.print("GAINING FOCUS!")
|
id: item.id,
|
||||||
that.triggerEvent('blur', data);
|
value: data.value
|
||||||
|
});
|
||||||
},
|
},
|
||||||
edit: function(data) {
|
edit: function(data) {
|
||||||
self.editing = true;
|
self.editing = true;
|
||||||
that.triggerEvent('edit', data);
|
that.triggerEvent('edit', data);
|
||||||
},
|
},
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
|
self.editing = false;
|
||||||
that.gainFocus();
|
that.gainFocus();
|
||||||
submitItem(i, data.value);
|
submitItem(i, data.value);
|
||||||
}
|
}
|
||||||
|
@ -144,13 +181,14 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//self.editing && that.editItem(blur);
|
||||||
|
}
|
||||||
|
|
||||||
function selectFirst() {
|
function selectFirst() {
|
||||||
self.selected > -1 && selectItem(0);
|
self.selected > -1 && selectItem(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectItem(idOrPosition) {
|
function selectItem(idOrPosition) {
|
||||||
Ox.print('???????', self.editing)
|
|
||||||
if (Ox.isString(idOrPosition)) {
|
if (Ox.isString(idOrPosition)) {
|
||||||
self.options.selected = idOrPosition;
|
self.options.selected = idOrPosition;
|
||||||
self.selected = getSelectedPosition();
|
self.selected = getSelectedPosition();
|
||||||
|
@ -197,10 +235,8 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
var item = self.options.items[position];
|
var item = self.options.items[position];
|
||||||
if (value === '') {
|
if (value === '') {
|
||||||
deleteItem();
|
deleteItem();
|
||||||
} else if (item.value === value) {
|
|
||||||
that.triggerEvent('blur');
|
|
||||||
} else {
|
} else {
|
||||||
that.triggerEvent('submit', {
|
that.triggerEvent(item.value === value ? 'blur' : 'submit', {
|
||||||
id: item.id,
|
id: item.id,
|
||||||
value: value
|
value: value
|
||||||
});
|
});
|
||||||
|
@ -224,7 +260,7 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
|
|
||||||
self.setOption = function(key, value) {
|
self.setOption = function(key, value) {
|
||||||
if (key == 'items') {
|
if (key == 'items') {
|
||||||
renderItems();
|
renderItems(true);
|
||||||
} else if (key == 'selected') {
|
} else if (key == 'selected') {
|
||||||
selectItem(value);
|
selectItem(value);
|
||||||
} else if (key == 'sort') {
|
} else if (key == 'sort') {
|
||||||
|
@ -242,6 +278,7 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
self.options.items.splice(position, 0, item);
|
self.options.items.splice(position, 0, item);
|
||||||
renderItems();
|
renderItems();
|
||||||
}
|
}
|
||||||
|
return that;
|
||||||
//that.triggerEvent('add');
|
//that.triggerEvent('add');
|
||||||
/*
|
/*
|
||||||
self.values = Ox.filter(values, function(value) {
|
self.values = Ox.filter(values, function(value) {
|
||||||
|
@ -259,34 +296,44 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
self.$items[self.selected].options({editing: false});
|
self.$items[self.selected].options({editing: false});
|
||||||
} else {
|
} else {
|
||||||
*/
|
*/
|
||||||
|
self.editing = false;
|
||||||
self.$items.forEach(function($item) {
|
self.$items.forEach(function($item) {
|
||||||
$item.options({editing: false});
|
$item.options({editing: false});
|
||||||
});
|
});
|
||||||
//}
|
//}
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.editItem = function() {
|
that.editItem = function() {
|
||||||
|
Ox.print('AE EDIT ITEM')
|
||||||
if (self.options.editable && self.options.selected) {
|
if (self.options.editable && self.options.selected) {
|
||||||
Ox.forEach(self.$items, function($item) {
|
self.editing = true;
|
||||||
if ($item.data('position') == self.selected) {
|
self.$items[self.selected].options({editing: true});
|
||||||
Ox.print('DBLCLICK')
|
|
||||||
$item.triggerEvent('doubleclick');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.reloadItems = function() {
|
that.reloadItems = function() {
|
||||||
renderItems();
|
renderItems();
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.removeItem = function(position) {
|
that.removeItem = function(position) {
|
||||||
if (self.options.editable) {
|
if (self.options.editable) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
that.submitItem = function() {
|
||||||
|
if (self.editing) {
|
||||||
|
self.editing = false;
|
||||||
|
self.$items[self.selected].options({editing: false});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,6 +19,7 @@ Ox.Editable = function(options, self) {
|
||||||
tooltip: options.tooltip
|
tooltip: options.tooltip
|
||||||
}, self)
|
}, self)
|
||||||
.defaults({
|
.defaults({
|
||||||
|
blurred: false,
|
||||||
clickLink: null,
|
clickLink: null,
|
||||||
editable: true,
|
editable: true,
|
||||||
editing: false,
|
editing: false,
|
||||||
|
@ -62,13 +63,22 @@ Ox.Editable = function(options, self) {
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
|
||||||
if (self.options.editing) {
|
if (self.options.editing) {
|
||||||
|
// need timeout so that when determining height
|
||||||
|
// the element is actually in the DOM
|
||||||
|
setTimeout(function() {
|
||||||
// edit will toggle self.options.editing
|
// edit will toggle self.options.editing
|
||||||
self.options.editing = false;
|
self.options.editing = false;
|
||||||
edit();
|
edit();
|
||||||
|
}, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
function blur() {
|
function blur(data) {
|
||||||
that.triggerEvent('blur');
|
self.options.value = parseValue();
|
||||||
|
if (self.options.value !== self.originalValue) {
|
||||||
|
self.originalValue = self.options.value;
|
||||||
|
that.triggerEvent('change', {value: self.options.value});
|
||||||
|
}
|
||||||
|
that.triggerEvent('blur', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
function cancel() {
|
function cancel() {
|
||||||
|
@ -104,14 +114,10 @@ Ox.Editable = function(options, self) {
|
||||||
width: width + 'px'
|
width: width + 'px'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
that.triggerEvent('change', {
|
|
||||||
value: event.value
|
|
||||||
});
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function edit() {
|
function edit() {
|
||||||
|
Ox.print('E EDIT! editable editing', self.options.editable, self.options.editing)
|
||||||
var height, width;
|
var height, width;
|
||||||
if (self.options.editable && !self.options.editing) {
|
if (self.options.editable && !self.options.editing) {
|
||||||
self.options.editing = true;
|
self.options.editing = true;
|
||||||
|
@ -166,6 +172,7 @@ Ox.Editable = function(options, self) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// fixme: why can't this be chained?
|
// fixme: why can't this be chained?
|
||||||
|
if (!self.options.blurred) {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
self.$input.focusInput(self.options.type == 'input');
|
self.$input.focusInput(self.options.type == 'input');
|
||||||
}, 0);
|
}, 0);
|
||||||
|
@ -173,6 +180,8 @@ Ox.Editable = function(options, self) {
|
||||||
that.triggerEvent('edit');
|
that.triggerEvent('edit');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
self.options.blurred = false;
|
||||||
|
}
|
||||||
|
|
||||||
function formatInputValue() {
|
function formatInputValue() {
|
||||||
return Ox.decodeHTML(
|
return Ox.decodeHTML(
|
||||||
|
@ -204,9 +213,15 @@ Ox.Editable = function(options, self) {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function parseValue() {
|
||||||
|
return self.options.type == 'input'
|
||||||
|
? Ox.encodeHTML(self.$input.value())
|
||||||
|
: Ox.parseHTML(self.$input.value());
|
||||||
|
}
|
||||||
|
|
||||||
function submit() {
|
function submit() {
|
||||||
self.options.editing = false;
|
self.options.editing = false;
|
||||||
self.options.value = Ox.parseHTML(self.$input.value());
|
self.options.value = parseValue();
|
||||||
self.$input.value(formatInputValue()).hide();
|
self.$input.value(formatInputValue()).hide();
|
||||||
self.$test.html(formatTestValue());
|
self.$test.html(formatTestValue());
|
||||||
self.$value.html(formatValue()).show();
|
self.$value.html(formatValue()).show();
|
||||||
|
|
|
@ -10,6 +10,7 @@ Ox.ListMap <f:Ox.Element> ListMap object
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
height <n|256> Height in px
|
height <n|256> Height in px
|
||||||
labels <b|false> If true, show labels
|
labels <b|false> If true, show labels
|
||||||
|
names <a|f|null> Array or names (undefined places), or function
|
||||||
places <a|f|null> Array of places, or function that returns places
|
places <a|f|null> Array of places, or function that returns places
|
||||||
selected <a|[]> Selected places
|
selected <a|[]> Selected places
|
||||||
width <n|256> Width in px
|
width <n|256> Width in px
|
||||||
|
@ -26,10 +27,11 @@ Ox.ListMap = function(options, self) {
|
||||||
getMatches: null,
|
getMatches: null,
|
||||||
height: 256,
|
height: 256,
|
||||||
labels: false,
|
labels: false,
|
||||||
|
names: null,
|
||||||
pageLength: 100,
|
pageLength: 100,
|
||||||
places: null,
|
places: null,
|
||||||
removePlace: null,
|
removePlace: null,
|
||||||
selected: [],
|
selected: '',
|
||||||
showControls: false,
|
showControls: false,
|
||||||
showLabels: false,
|
showLabels: false,
|
||||||
showTypes: false,
|
showTypes: false,
|
||||||
|
@ -220,6 +222,59 @@ Ox.ListMap = function(options, self) {
|
||||||
size: 24
|
size: 24
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (self.options.names) {
|
||||||
|
|
||||||
|
self.$listSelect = Ox.Select({
|
||||||
|
items: [
|
||||||
|
{id: 'places', title: 'Show Places'},
|
||||||
|
{id: 'names', title: 'Show Names'}
|
||||||
|
],
|
||||||
|
max: 1,
|
||||||
|
min: 1,
|
||||||
|
style: 'symbol',
|
||||||
|
title: 'set',
|
||||||
|
type: 'image',
|
||||||
|
value: 'places'
|
||||||
|
})
|
||||||
|
.css({float: 'left', margin: '4px 0 4px 4px'})
|
||||||
|
.bindEvent({
|
||||||
|
change: toggleList
|
||||||
|
})
|
||||||
|
.appendTo(self.$listToolbar);
|
||||||
|
|
||||||
|
self.$namesList = Ox.TextList({
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
id: 'name',
|
||||||
|
operator: '+',
|
||||||
|
title: 'Name',
|
||||||
|
visible: true,
|
||||||
|
width: 256
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'right',
|
||||||
|
id: 'matches',
|
||||||
|
operator: '-',
|
||||||
|
title: 'Matches',
|
||||||
|
visible: true,
|
||||||
|
width: 64,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
columnsVisible: true,
|
||||||
|
items: [],
|
||||||
|
max: 1,
|
||||||
|
min: 0,
|
||||||
|
scrollbarVisible: true,
|
||||||
|
sort: [{key: 'name', operator: '+'}]
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
select: function(data) {
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
self.$findElement = Ox.FormElementGroup({
|
self.$findElement = Ox.FormElementGroup({
|
||||||
elements: [
|
elements: [
|
||||||
self.$findSelect = Ox.Select({
|
self.$findSelect = Ox.Select({
|
||||||
|
@ -242,7 +297,7 @@ Ox.ListMap = function(options, self) {
|
||||||
self.$findInput = Ox.Input({
|
self.$findInput = Ox.Input({
|
||||||
clear: true,
|
clear: true,
|
||||||
placeholder: 'Find in List',
|
placeholder: 'Find in List',
|
||||||
width: 234
|
width: self.options.names ? 214 : 234
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
|
@ -267,8 +322,11 @@ Ox.ListMap = function(options, self) {
|
||||||
columnsVisible: true,
|
columnsVisible: true,
|
||||||
//items: Ox.clone(self.options.places),
|
//items: Ox.clone(self.options.places),
|
||||||
items: self.options.places,
|
items: self.options.places,
|
||||||
|
max: 1,
|
||||||
|
min: 0,
|
||||||
pageLength: self.options.pageLength,
|
pageLength: self.options.pageLength,
|
||||||
scrollbarVisible: true,
|
scrollbarVisible: true,
|
||||||
|
selected: self.options.selected ? [self.options.selected] : [],
|
||||||
sort: self.options.sort
|
sort: self.options.sort
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
|
@ -308,6 +366,7 @@ Ox.ListMap = function(options, self) {
|
||||||
findPlaceholder: 'Find on Map',
|
findPlaceholder: 'Find on Map',
|
||||||
height: self.options.height,
|
height: self.options.height,
|
||||||
places: self.options.places,
|
places: self.options.places,
|
||||||
|
selected: self.options.selected,
|
||||||
//statusbar: true,
|
//statusbar: true,
|
||||||
showControls: self.options.showControls,
|
showControls: self.options.showControls,
|
||||||
showLabels: self.options.showLabels,
|
showLabels: self.options.showLabels,
|
||||||
|
@ -622,7 +681,7 @@ Ox.ListMap = function(options, self) {
|
||||||
elements: [
|
elements: [
|
||||||
{
|
{
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: Ox.SplitPanel({
|
element: self.$listPanel = Ox.SplitPanel({
|
||||||
elements: [
|
elements: [
|
||||||
{
|
{
|
||||||
element: self.$listToolbar,
|
element: self.$listToolbar,
|
||||||
|
@ -821,6 +880,22 @@ Ox.ListMap = function(options, self) {
|
||||||
return Ox.isNumber(val) ? val.toFixed(8) : val; // fixme: why can a string be passed ??
|
return Ox.isNumber(val) ? val.toFixed(8) : val; // fixme: why can a string be passed ??
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function toggleList() {
|
||||||
|
var list = self.$listSelect.options('value');
|
||||||
|
list == 'names' && !self.namesLoaded ? load() : toggle();
|
||||||
|
function load() {
|
||||||
|
self.options.names(function(data) {
|
||||||
|
Ox.print('DATA IS', data);
|
||||||
|
self.$namesList.options({items: data});
|
||||||
|
self.namesLoaded = true;
|
||||||
|
toggle();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function toggle() {
|
||||||
|
self.$listPanel.replaceElement(1, self[list == 'places' ? '$list' : '$namesList']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function updateList(key, value) {
|
function updateList(key, value) {
|
||||||
var query = {
|
var query = {
|
||||||
conditions: Ox.merge(
|
conditions: Ox.merge(
|
||||||
|
|
|
@ -777,7 +777,7 @@ Ox.Map = function(options, self) {
|
||||||
|
|
||||||
getMapBounds(function(mapBounds) {
|
getMapBounds(function(mapBounds) {
|
||||||
|
|
||||||
Ox.Log('Map', 'init', mapBounds.getSouthWest(), mapBounds.getNorthEast(), mapBounds.getCenter())
|
//Ox.Log('Map', 'init', mapBounds.getSouthWest(), mapBounds.getNorthEast(), mapBounds.getCenter())
|
||||||
|
|
||||||
self.elevationService = new google.maps.ElevationService();
|
self.elevationService = new google.maps.ElevationService();
|
||||||
self.geocoder = new google.maps.Geocoder();
|
self.geocoder = new google.maps.Geocoder();
|
||||||
|
@ -855,6 +855,18 @@ Ox.Map = function(options, self) {
|
||||||
Ox.forEach(self.$placeControls, function($placeControl) {
|
Ox.forEach(self.$placeControls, function($placeControl) {
|
||||||
$placeControl.appendTo(self.$map);
|
$placeControl.appendTo(self.$map);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function isEmpty(bounds) {
|
||||||
|
// Google's bounds.isEmpty() is not reliable
|
||||||
|
var southWest = bounds.getSouthWest(),
|
||||||
|
northEast = bounds.getNorthEast();
|
||||||
|
return southWest.lat() == northEast.lat()
|
||||||
|
&& southWest.lng() == northEast.lng();
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatTerms() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
var $element;
|
var $element;
|
||||||
try {
|
try {
|
||||||
|
@ -870,16 +882,7 @@ Ox.Map = function(options, self) {
|
||||||
});
|
});
|
||||||
$element.children().css({color: 'rgb(192, 192, 192)'});
|
$element.children().css({color: 'rgb(192, 192, 192)'});
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
}, 0)
|
}, 0);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function isEmpty(bounds) {
|
|
||||||
// Google's bounds.isEmpty() is not reliable
|
|
||||||
var southWest = bounds.getSouthWest(),
|
|
||||||
northEast = bounds.getNorthEast();
|
|
||||||
return southWest.lat() == northEast.lat()
|
|
||||||
&& southWest.lng() == northEast.lng();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function mapChanged() {
|
function mapChanged() {
|
||||||
|
@ -971,6 +974,7 @@ Ox.Map = function(options, self) {
|
||||||
if (self.zoomChanged) {
|
if (self.zoomChanged) {
|
||||||
self.zoomChanged = false;
|
self.zoomChanged = false;
|
||||||
}
|
}
|
||||||
|
formatTerms();
|
||||||
}
|
}
|
||||||
|
|
||||||
function pan(x, y) {
|
function pan(x, y) {
|
||||||
|
|
|
@ -57,7 +57,12 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
var item = Ox.getObjectById(self.options.items, self.options.selected);
|
||||||
|
that.triggerEvent('define', item.place ? {
|
||||||
|
id: item.place.id
|
||||||
|
} : {
|
||||||
|
name: item.value
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -127,6 +132,7 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
} else { // place
|
} else { // place
|
||||||
self.$widget = self.$map = Ox.Map({
|
self.$widget = self.$map = Ox.Map({
|
||||||
places: getPlaces(),
|
places: getPlaces(),
|
||||||
|
showTypes: true,
|
||||||
// FIXME: should be showZoombar
|
// FIXME: should be showZoombar
|
||||||
zoombar: true
|
zoombar: true
|
||||||
// showLabels: true
|
// showLabels: true
|
||||||
|
@ -168,7 +174,9 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
self.$annotations = Ox.ArrayEditable({
|
self.$annotations = Ox.ArrayEditable({
|
||||||
editable: self.options.editable,
|
editable: self.options.editable,
|
||||||
items: getAnnotations(),
|
items: getAnnotations(),
|
||||||
|
placeholder: 'No ' + self.options.title,
|
||||||
selected: self.options.selected,
|
selected: self.options.selected,
|
||||||
|
separator: ';',
|
||||||
sort: self.sort,
|
sort: self.sort,
|
||||||
submitOnBlur: false,
|
submitOnBlur: false,
|
||||||
width: self.options.type == 'text' ? self.options.width + 8 : self.options.width,
|
width: self.options.type == 'text' ? self.options.width + 8 : self.options.width,
|
||||||
|
@ -177,12 +185,19 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
//.css({marginTop: '256px'})
|
//.css({marginTop: '256px'})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
add: function(data) {
|
add: function(data) {
|
||||||
|
if (self.editing) {
|
||||||
|
// FIXME: changed value will not be saved!
|
||||||
|
}
|
||||||
that.triggerEvent('add', {value: data.value || ''});
|
that.triggerEvent('add', {value: data.value || ''});
|
||||||
},
|
},
|
||||||
blur: function() {
|
blur: function() {
|
||||||
|
// the video editor will, if it has not received focus,
|
||||||
|
// call blurItem
|
||||||
that.triggerEvent('blur');
|
that.triggerEvent('blur');
|
||||||
},
|
},
|
||||||
|
change: changeAnnotation,
|
||||||
'delete': function(data) {
|
'delete': function(data) {
|
||||||
|
self.editing = false;
|
||||||
that.triggerEvent('remove', {id: data.id});
|
that.triggerEvent('remove', {id: data.id});
|
||||||
},
|
},
|
||||||
edit: function() {
|
edit: function() {
|
||||||
|
@ -208,6 +223,12 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
|
|
||||||
showWarnings();
|
showWarnings();
|
||||||
|
|
||||||
|
function changeAnnotation(data) {
|
||||||
|
var item = Ox.getObjectById(self.options.items, data.id);
|
||||||
|
item.value = data.value;
|
||||||
|
that.triggerEvent('change', item);
|
||||||
|
}
|
||||||
|
|
||||||
function dragstart() {
|
function dragstart() {
|
||||||
if (self.options.showWidget) {
|
if (self.options.showWidget) {
|
||||||
self.drag = {
|
self.drag = {
|
||||||
|
@ -298,7 +319,7 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
function selectAnnotation(data) {
|
function selectAnnotation(data) {
|
||||||
var item = Ox.getObjectById(self.options.items, data.id);
|
var item = Ox.getObjectById(self.options.items, data.id);
|
||||||
self.options.selected = item ? data.id : '';
|
self.options.selected = item ? data.id : '';
|
||||||
self.$defineButton.options({disabled: !self.options.selected});
|
self.widget && self.$defineButton.options({disabled: !self.options.selected});
|
||||||
///*
|
///*
|
||||||
if (self.options.type == 'place') {
|
if (self.options.type == 'place') {
|
||||||
self.$map.options({
|
self.$map.options({
|
||||||
|
@ -315,14 +336,16 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showWarnings() {
|
function showWarnings() {
|
||||||
if (self.widget) {
|
if (self.widget && self.options.items.length) {
|
||||||
self.$annotations.find('.OxValue').each(function() {
|
self.$annotations.find('.OxValue').each(function() {
|
||||||
var $element = $(this);
|
var $element = $(this);
|
||||||
|
try { // FIXME: bad data, remove later!!
|
||||||
if (!Ox.getObject(
|
if (!Ox.getObject(
|
||||||
self.options.items, 'value', $element.html()
|
self.options.items, 'value', $element.html()
|
||||||
)[self.options.type]) {
|
)[self.options.type]) {
|
||||||
$element.css({color: 'rgb(192, 64, 64)'});
|
$element.css({color: 'rgb(192, 64, 64)'});
|
||||||
}
|
}
|
||||||
|
} catch(e) {}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -331,7 +354,6 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
var item = Ox.getObjectById(self.options.items, data.id);
|
var item = Ox.getObjectById(self.options.items, data.id);
|
||||||
item.value = data.value;
|
item.value = data.value;
|
||||||
self.editing = false;
|
self.editing = false;
|
||||||
Ox.print('??:', self.options.items[0], self.$annotations.options('items')[0])
|
|
||||||
//self.$annotations.options({items: self.options.items});
|
//self.$annotations.options({items: self.options.items});
|
||||||
self.options.sort == 'text' && self.$annotations.reloadItems();
|
self.options.sort == 'text' && self.$annotations.reloadItems();
|
||||||
that.triggerEvent('submit', item);
|
that.triggerEvent('submit', item);
|
||||||
|
@ -353,6 +375,17 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
that.triggerEvent('togglewidget', {collapsed: !self.options.showWidget});
|
that.triggerEvent('togglewidget', {collapsed: !self.options.showWidget});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateAnnotations() {
|
||||||
|
self.$annotations.options({items: getAnnotations()});
|
||||||
|
showWarnings();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateWidget() {
|
||||||
|
self.options.type == 'event'
|
||||||
|
? self.$calendar.options({events: getEvents()})
|
||||||
|
: self.$map.options({places: getPlaces()});
|
||||||
|
}
|
||||||
|
|
||||||
self.setOption = function(key, value) {
|
self.setOption = function(key, value) {
|
||||||
if (['in', 'out'].indexOf(key) > -1 && self.editing) {
|
if (['in', 'out'].indexOf(key) > -1 && self.editing) {
|
||||||
var index = Ox.getIndexById(self.options.items, self.options.selected);
|
var index = Ox.getIndexById(self.options.items, self.options.selected);
|
||||||
|
@ -361,19 +394,19 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
}
|
}
|
||||||
if (key == 'in') {
|
if (key == 'in') {
|
||||||
//fixme: array editable should support item updates while editing
|
//fixme: array editable should support item updates while editing
|
||||||
if (self.editing || self.options.range == 'selection') {
|
if (self.options.range == 'selection') {
|
||||||
self.options.type == 'place' ? self.$map.options({places: getPlaces()})
|
self.widget && updateWidget();
|
||||||
: self.$annotations.options({items: getAnnotations()});
|
updateAnnotations();
|
||||||
}
|
}
|
||||||
} else if (key == 'out') {
|
} else if (key == 'out') {
|
||||||
if (self.editing || self.options.range == 'selection') {
|
if (self.options.range == 'selection') {
|
||||||
self.options.type == 'place' ? self.$map.options({places: getPlaces()})
|
self.widget && updateWidget();
|
||||||
: self.$annotations.options({items: getAnnotations()});
|
updateAnnotations();
|
||||||
}
|
}
|
||||||
} else if (key == 'position') {
|
} else if (key == 'position') {
|
||||||
if (self.editing || self.options.range == 'position') {
|
if (self.options.range == 'position') {
|
||||||
self.options.type == 'place' ? self.$map.options({places: getPlaces()})
|
self.widget && updateWidget();
|
||||||
: self.$annotations.options({items: getAnnotations()});
|
updateAnnotations();
|
||||||
}
|
}
|
||||||
} else if (key == 'range') {
|
} else if (key == 'range') {
|
||||||
self.$annotations.options({items: getAnnotations()});
|
self.$annotations.options({items: getAnnotations()});
|
||||||
|
@ -387,8 +420,7 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
self.$annotations.options({sort: self.sort});
|
self.$annotations.options({sort: self.sort});
|
||||||
showWarnings();
|
showWarnings();
|
||||||
} else if (key == 'users') {
|
} else if (key == 'users') {
|
||||||
self.$annotations.options({items: getAnnotations()});
|
updateAnnotations();
|
||||||
showWarnings();
|
|
||||||
} else if (key == 'width') {
|
} else if (key == 'width') {
|
||||||
Ox.print('RESIZE!!!!')
|
Ox.print('RESIZE!!!!')
|
||||||
if (self.widget) {
|
if (self.widget) {
|
||||||
|
@ -406,18 +438,26 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
addItem <f> addItem
|
addItem <f> addItem
|
||||||
@*/
|
@*/
|
||||||
that.addItem = function(item) {
|
that.addItem = function(item) {
|
||||||
|
Ox.print('FOLDER ADD ITEM', item)
|
||||||
var pos = 0;
|
var pos = 0;
|
||||||
self.options.items.splice(pos, 0, item);
|
self.options.items.splice(pos, 0, item);
|
||||||
self.$annotations.addItem(pos, item);
|
self.$annotations
|
||||||
self.$annotations.editItem(item.id);
|
.addItem(pos, item)
|
||||||
|
.options({selected: item.id})
|
||||||
|
.editItem();
|
||||||
|
//selectAnnotation(item);
|
||||||
|
//that.triggerEvent('edit');
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.blurItem = function() {
|
that.blurItem = function() {
|
||||||
self.$annotations.blurItem();
|
self.$annotations.blurItem();
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.editItem = function() {
|
that.editItem = function() {
|
||||||
self.$annotations.editItem();
|
self.$annotations.editItem();
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
|
@ -431,6 +471,14 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
that.updateItem = function(item) {
|
||||||
|
var index = Ox.getIndexById(self.options.items, item.id);
|
||||||
|
self.options.items[index] = item;
|
||||||
|
self.widget && updateWidget();
|
||||||
|
updateAnnotations();
|
||||||
|
return that;
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -174,8 +174,14 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
blur: function() {
|
blur: function() {
|
||||||
that.triggerEvent('blur');
|
that.triggerEvent('blur');
|
||||||
},
|
},
|
||||||
|
change: function(data) {
|
||||||
|
that.triggerEvent('change', Ox.extend({layer: layer.id}, data));
|
||||||
|
},
|
||||||
|
define: function(data) {
|
||||||
|
that.triggerEvent('define', data);
|
||||||
|
},
|
||||||
edit: function() {
|
edit: function() {
|
||||||
that.triggerEvent('edit')
|
that.triggerEvent('edit');
|
||||||
},
|
},
|
||||||
paused: function() {
|
paused: function() {
|
||||||
that.triggerEvent('paused')
|
that.triggerEvent('paused')
|
||||||
|
@ -192,7 +198,7 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
selectAnnotation(data, i);
|
selectAnnotation(data, i);
|
||||||
},
|
},
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
that.triggerEvent('submit', data);
|
that.triggerEvent('submit', Ox.extend({layer: layer.id}, data));
|
||||||
},
|
},
|
||||||
togglelayer: function(data) {
|
togglelayer: function(data) {
|
||||||
that.triggerEvent('togglelayer', Ox.extend({layer: layer.id}, data));
|
that.triggerEvent('togglelayer', Ox.extend({layer: layer.id}, data));
|
||||||
|
@ -290,11 +296,11 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
};
|
};
|
||||||
|
|
||||||
that.addItem = function(layer, item) {
|
that.addItem = function(layer, item) {
|
||||||
|
Ox.print('ADD ITEM', layer, item);
|
||||||
var i = Ox.getIndexById(self.options.layers, layer);
|
var i = Ox.getIndexById(self.options.layers, layer);
|
||||||
self.$folder[i].addItem(item);
|
self.$folder[i].addItem(item);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
that.blurItem = function() {
|
that.blurItem = function() {
|
||||||
getFolder(self.options.selected).blurItem();
|
getFolder(self.options.selected).blurItem();
|
||||||
};
|
};
|
||||||
|
@ -303,9 +309,9 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
getFolder(self.options.selected).editItem();
|
getFolder(self.options.selected).editItem();
|
||||||
};
|
};
|
||||||
|
|
||||||
that.updateItem = function(layer, item) {
|
that.updateItem = function(item) {
|
||||||
var i = Ox.getIndexById(self.options.layers, layer);
|
Ox.print('UPDATE ITEM', item);
|
||||||
self.$folder[i].updateItem(item);
|
getFolder(item.id).updateItem(item);
|
||||||
};
|
};
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
|
@ -58,9 +58,6 @@ Ox.VideoEditor = function(options, self) {
|
||||||
width: 0
|
width: 0
|
||||||
})
|
})
|
||||||
.options(options || {})
|
.options(options || {})
|
||||||
.mousedown(function() {
|
|
||||||
that.gainFocus();
|
|
||||||
})
|
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
key_0: toggleMuted,
|
key_0: toggleMuted,
|
||||||
key_shift_0: function() {
|
key_shift_0: function() {
|
||||||
|
@ -90,8 +87,9 @@ Ox.VideoEditor = function(options, self) {
|
||||||
movePositionBy(self.sizes.timeline[0].width);
|
movePositionBy(self.sizes.timeline[0].width);
|
||||||
},
|
},
|
||||||
key_enter: function() {
|
key_enter: function() {
|
||||||
if (self.editiing) {
|
if (self.editing) {
|
||||||
submitAnnotation();
|
// submitAnnotation();
|
||||||
|
blurAnnotation();
|
||||||
} else if (self.options.selected) {
|
} else if (self.options.selected) {
|
||||||
editAnnotation();
|
editAnnotation();
|
||||||
}
|
}
|
||||||
|
@ -211,8 +209,12 @@ Ox.VideoEditor = function(options, self) {
|
||||||
// the following is needed to determine
|
// the following is needed to determine
|
||||||
// how to handle annotation input blur
|
// how to handle annotation input blur
|
||||||
if (self.editing) {
|
if (self.editing) {
|
||||||
|
Ox.print('FOCUSED')
|
||||||
self.focused = true;
|
self.focused = true;
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
|
// annotation folder will gain focus on blur
|
||||||
|
// so we need to get focus back
|
||||||
|
that.gainFocus();
|
||||||
self.focused = false;
|
self.focused = false;
|
||||||
}, 25);
|
}, 25);
|
||||||
}
|
}
|
||||||
|
@ -614,18 +616,26 @@ Ox.VideoEditor = function(options, self) {
|
||||||
addAnnotation(data.layer);
|
addAnnotation(data.layer);
|
||||||
},
|
},
|
||||||
annotationsfont: function(data) {
|
annotationsfont: function(data) {
|
||||||
|
self.options.annotationsFont = data.font;
|
||||||
that.triggerEvent('annotationsfont', data);
|
that.triggerEvent('annotationsfont', data);
|
||||||
},
|
},
|
||||||
annotationsrange: function(data) {
|
annotationsrange: function(data) {
|
||||||
|
self.options.annotationsRange = data.range;
|
||||||
that.triggerEvent('annotationsrange', data);
|
that.triggerEvent('annotationsrange', data);
|
||||||
},
|
},
|
||||||
annotationssort: function(data) {
|
annotationssort: function(data) {
|
||||||
|
self.options.annotationsSort = data.sort;
|
||||||
that.triggerEvent('annotationssort', data);
|
that.triggerEvent('annotationssort', data);
|
||||||
},
|
},
|
||||||
blur: function() {
|
blur: function(data) {
|
||||||
Ox.print('VE-BLUR')
|
Ox.print('VIDEO EDITOR BLUR')
|
||||||
self.editing = false;
|
!self.focused && blurAnnotation();
|
||||||
setTimelineState();
|
},
|
||||||
|
change: function(data) {
|
||||||
|
that.triggerEvent('editannotation', data);
|
||||||
|
},
|
||||||
|
define: function(data) {
|
||||||
|
that.triggerEvent('define', data);
|
||||||
},
|
},
|
||||||
edit: function() {
|
edit: function() {
|
||||||
self.editing = true;
|
self.editing = true;
|
||||||
|
@ -633,10 +643,14 @@ Ox.VideoEditor = function(options, self) {
|
||||||
},
|
},
|
||||||
paused: togglePaused,
|
paused: togglePaused,
|
||||||
remove: function(data) {
|
remove: function(data) {
|
||||||
that.triggerEvent('removeannotation', {
|
Ox.print('?>???', data)
|
||||||
id: data.id,
|
var layer = Ox.getObjectById(self.options.layers, data.layer),
|
||||||
layer: data.layer
|
index = Ox.getIndexById(layer.items, data.id);
|
||||||
});
|
layer.items.splice(index, 1);
|
||||||
|
self.editing = false;
|
||||||
|
self.options.selected = '';
|
||||||
|
setTimelineState();
|
||||||
|
that.triggerEvent('removeannotation', data);
|
||||||
},
|
},
|
||||||
resize: resizeAnnotations,
|
resize: resizeAnnotations,
|
||||||
resizeend: resizeendAnnotations,
|
resizeend: resizeendAnnotations,
|
||||||
|
@ -650,6 +664,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
submit: submitAnnotation,
|
submit: submitAnnotation,
|
||||||
toggle: toggleAnnotations,
|
toggle: toggleAnnotations,
|
||||||
togglecalendar: function(data) {
|
togglecalendar: function(data) {
|
||||||
|
self.options.showAnnotationsCalendar = !data.collapsed;
|
||||||
that.triggerEvent('togglecalendar', data);
|
that.triggerEvent('togglecalendar', data);
|
||||||
},
|
},
|
||||||
togglelayer: function(data) {
|
togglelayer: function(data) {
|
||||||
|
@ -659,6 +674,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
togglemap: function(data) {
|
togglemap: function(data) {
|
||||||
|
self.options.showAnnotationsMap = !data.collapsed;
|
||||||
that.triggerEvent('togglemap', data);
|
that.triggerEvent('togglemap', data);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -685,7 +701,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: self.$annotationPanel,
|
element: self.$annotationPanel,
|
||||||
resizable: true,
|
resizable: true,
|
||||||
resize: [192, 256, 320, 384],
|
resize: [192, 256, 320, 384, 448, 512],
|
||||||
size: self.options.annotationsSize,
|
size: self.options.annotationsSize,
|
||||||
tooltip: self.options.tooltips ? 'annotations' : false
|
tooltip: self.options.tooltips ? 'annotations' : false
|
||||||
}
|
}
|
||||||
|
@ -712,7 +728,17 @@ Ox.VideoEditor = function(options, self) {
|
||||||
function blurAnnotation() {
|
function blurAnnotation() {
|
||||||
self.editing = false;
|
self.editing = false;
|
||||||
setTimelineState();
|
setTimelineState();
|
||||||
self.$annotationPanel.blurItem();
|
if (
|
||||||
|
self.options.annotationsRange == 'position' && (
|
||||||
|
self.options.position < self.options['in']
|
||||||
|
|| self.options.position > self.options.out
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setPosition(self.options['in']);
|
||||||
|
}
|
||||||
|
// setPosition causes a folder redraw
|
||||||
|
// so blur once that's done
|
||||||
|
setTimeout(self.$annotationPanel.blurItem, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
function editAnnotation() {
|
function editAnnotation() {
|
||||||
|
@ -932,7 +958,6 @@ Ox.VideoEditor = function(options, self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectAnnotation(data) {
|
function selectAnnotation(data) {
|
||||||
//Ox.print('VE.sA')
|
|
||||||
if (Ox.isUndefined(data)) {
|
if (Ox.isUndefined(data)) {
|
||||||
// doubleclick on small timeline
|
// doubleclick on small timeline
|
||||||
data = getAnnotation();
|
data = getAnnotation();
|
||||||
|
@ -941,13 +966,10 @@ Ox.VideoEditor = function(options, self) {
|
||||||
}
|
}
|
||||||
self.editing = false;
|
self.editing = false;
|
||||||
self.options.selected = data.id;
|
self.options.selected = data.id;
|
||||||
// fixme: what is the following supposed to do?
|
|
||||||
if (self.options.selected && self.options.annotationsRange != 'position') {
|
|
||||||
setPosition(data['in']);
|
|
||||||
}
|
|
||||||
if (self.options.selected) {
|
if (self.options.selected) {
|
||||||
setPoint('in', data['in']);
|
self.options.annotationsRange != 'position' && setPosition(data['in']);
|
||||||
setPoint('out', data.out);
|
setPoint('in', data['in'], true);
|
||||||
|
setPoint('out', data.out, true);
|
||||||
}
|
}
|
||||||
self.$annotationPanel.options({selected: self.options.selected});
|
self.$annotationPanel.options({selected: self.options.selected});
|
||||||
setTimelineState();
|
setTimelineState();
|
||||||
|
@ -976,16 +998,12 @@ Ox.VideoEditor = function(options, self) {
|
||||||
setPoint('out', points.out);
|
setPoint('out', points.out);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setPoint(point, position, annotation) {
|
function setPoint(point, position, keepSelected) {
|
||||||
var otherPoint = point == 'in' ? 'out' : 'in';
|
var otherPoint = point == 'in' ? 'out' : 'in';
|
||||||
self.options[point] = position;
|
self.options[point] = position;
|
||||||
/*
|
if (self.options.selected && !self.editing && !keepSelected) {
|
||||||
// should only happen through interaction
|
selectAnnotation({id: ''});
|
||||||
if (self.options.selected && !self.editing) {
|
|
||||||
self.options.selected = '';
|
|
||||||
setTimelineState();
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
self.$player.forEach(function($player) {
|
self.$player.forEach(function($player) {
|
||||||
$player.options(point, self.options[point]);
|
$player.options(point, self.options[point]);
|
||||||
});
|
});
|
||||||
|
@ -996,8 +1014,8 @@ Ox.VideoEditor = function(options, self) {
|
||||||
$timeline.options(point, self.options[point]);
|
$timeline.options(point, self.options[point]);
|
||||||
});
|
});
|
||||||
if (self.options['in'] > self.options.out) {
|
if (self.options['in'] > self.options.out) {
|
||||||
setPoint(point == 'in' ? 'out' : 'in', position);
|
setPoint(point == 'in' ? 'out' : 'in', position, keepSelected);
|
||||||
}
|
} else {
|
||||||
self.$annotationPanel.options({
|
self.$annotationPanel.options({
|
||||||
'in': self.options['in'],
|
'in': self.options['in'],
|
||||||
out: self.options.out
|
out: self.options.out
|
||||||
|
@ -1006,11 +1024,11 @@ Ox.VideoEditor = function(options, self) {
|
||||||
'in': self.options['in'],
|
'in': self.options['in'],
|
||||||
out: self.options.out
|
out: self.options.out
|
||||||
});
|
});
|
||||||
if (self.editing) {
|
self.editing && that.triggerEvent('editannotation', {
|
||||||
that.triggerEvent('editannotation', {
|
|
||||||
id: self.options.selected,
|
id: self.options.selected,
|
||||||
'in': self.options['in'],
|
'in': self.options['in'],
|
||||||
out: self.options.out
|
out: self.options.out,
|
||||||
|
value: $('.OxEditableElement input:visible').val()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1068,6 +1086,17 @@ Ox.VideoEditor = function(options, self) {
|
||||||
function submitAnnotation(data) {
|
function submitAnnotation(data) {
|
||||||
self.editing = false;
|
self.editing = false;
|
||||||
setTimelineState();
|
setTimelineState();
|
||||||
|
Ox.print('....', self.options.annotationsRange == 'position',
|
||||||
|
self.options.position < self.options['in'],
|
||||||
|
self.options.position > self.options.out)
|
||||||
|
if (
|
||||||
|
self.options.annotationsRange == 'position' && (
|
||||||
|
self.options.position < self.options['in']
|
||||||
|
|| self.options.position > self.options.out
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setPosition(self.options['in']);
|
||||||
|
}
|
||||||
data['in'] = self.options['in'];
|
data['in'] = self.options['in'];
|
||||||
data.out = self.options.out;
|
data.out = self.options.out;
|
||||||
that.triggerEvent('editannotation', data);
|
that.triggerEvent('editannotation', data);
|
||||||
|
@ -1149,9 +1178,15 @@ Ox.VideoEditor = function(options, self) {
|
||||||
annotation <o> annotation to add
|
annotation <o> annotation to add
|
||||||
@*/
|
@*/
|
||||||
that.addAnnotation = function(layer, annotation) {
|
that.addAnnotation = function(layer, annotation) {
|
||||||
|
// called from addannotation callback
|
||||||
self.$annotationPanel.addItem(layer, annotation);
|
self.$annotationPanel.addItem(layer, annotation);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
that.updateAnnotation = function(annotation) {
|
||||||
|
// called from editannotation callback
|
||||||
|
self.$annotationPanel.updateItem(annotation);
|
||||||
|
}
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
removeAnnotation <f> remove annotation
|
removeAnnotation <f> remove annotation
|
||||||
(layer, ids) -> <o> remove annotation from layer
|
(layer, ids) -> <o> remove annotation from layer
|
||||||
|
|
|
@ -740,6 +740,13 @@ Video
|
||||||
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(192, 192, 192, 1));
|
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(192, 192, 192, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: the first two should apply for every ArrayEditable */
|
||||||
|
.OxThemeClassic .OxAnnotationFolder .OxArrayEditable .OxSeparator {
|
||||||
|
color: rgb(96, 96, 96);
|
||||||
|
}
|
||||||
|
.OxThemeClassic .OxAnnotationFolder .OxEditableElement.OxPlaceholder .OxValue {
|
||||||
|
color: rgb(160, 160, 160);
|
||||||
|
}
|
||||||
.OxThemeClassic .OxAnnotationFolder .OxEditableElement.OxSelected {
|
.OxThemeClassic .OxAnnotationFolder .OxEditableElement.OxSelected {
|
||||||
background: rgb(192, 192, 255);
|
background: rgb(192, 192, 255);
|
||||||
box-shadow: 0 0 1px rgb(64, 64, 64);
|
box-shadow: 0 0 1px rgb(64, 64, 64);
|
||||||
|
|
Loading…
Reference in a new issue