reverting changes
This commit is contained in:
parent
fcab8fd93b
commit
02d8f50346
1 changed files with 72 additions and 44 deletions
|
@ -444,10 +444,10 @@
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
resize: function(event, data) {
|
resize: function(event, data) {
|
||||||
app.user.ui.annotationsSize = data.width;
|
app.user.ui.annotationsSize = data;
|
||||||
},
|
},
|
||||||
resizeend: function(event, data) {
|
resizeend: function(event, data) {
|
||||||
UI.set({annotationsSize: data.width});
|
UI.set({annotationsSize: data});
|
||||||
},
|
},
|
||||||
toggle: function(event, data) {
|
toggle: function(event, data) {
|
||||||
UI.set({showAnnotations: !data.collapsed});
|
UI.set({showAnnotations: !data.collapsed});
|
||||||
|
@ -524,21 +524,31 @@
|
||||||
if (!app.user.ui.item) {
|
if (!app.user.ui.item) {
|
||||||
app.$ui.groups = ui.groups();
|
app.$ui.groups = ui.groups();
|
||||||
that = new Ox.SplitPanel({
|
that = new Ox.SplitPanel({
|
||||||
elements: Ox.map(app.$ui.groups, function(group) {
|
elements: [
|
||||||
return {element: group};
|
{
|
||||||
}),
|
element: app.$ui.groups[0],
|
||||||
|
size: app.ui.groups[0].size
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: app.$ui.groupsInnerPanel = ui.groupsInnerPanel()
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: app.$ui.groups[4],
|
||||||
|
size: app.ui.groups[4].size
|
||||||
|
},
|
||||||
|
],
|
||||||
id: 'browser',
|
id: 'browser',
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
resize: function(event, data) {
|
resize: function(event, data) {
|
||||||
app.user.ui.groupsSize = data.height;
|
app.user.ui.groupsSize = data;
|
||||||
$.each(app.$ui.groups, function(i, list) {
|
$.each(app.$ui.groups, function(i, list) {
|
||||||
list.size();
|
list.size();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
resizeend: function(event, data){
|
resizeend: function(event, data){
|
||||||
UI.set({groupsSize: data.height});
|
UI.set({groupsSize: data});
|
||||||
},
|
},
|
||||||
toggle: function(event, data) {
|
toggle: function(event, data) {
|
||||||
UI.set({showGroups: !data.collapsed});
|
UI.set({showGroups: !data.collapsed});
|
||||||
|
@ -594,7 +604,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
that.update = function() {
|
that.update = function() {
|
||||||
app.$ui.contentPanel.replaceElement(0, app.$ui.browser = ui.browser());
|
app.$ui.contentPanel.replace(0, app.$ui.browser = ui.browser());
|
||||||
}
|
}
|
||||||
return that;
|
return that;
|
||||||
},
|
},
|
||||||
|
@ -813,8 +823,7 @@
|
||||||
flipbook: function(item) {
|
flipbook: function(item) {
|
||||||
var that = new Ox.Flipbook({
|
var that = new Ox.Flipbook({
|
||||||
}).bindEvent('click', function(event, data) {
|
}).bindEvent('click', function(event, data) {
|
||||||
UI.set('videoPosition|' + item, data.position);
|
alert(data.position);
|
||||||
URL.set(item + '/timeline');
|
|
||||||
});
|
});
|
||||||
pandora.api.getItem(item, function(result) {
|
pandora.api.getItem(item, function(result) {
|
||||||
var duration = result.data.item.duration,
|
var duration = result.data.item.duration,
|
||||||
|
@ -872,13 +881,13 @@
|
||||||
{
|
{
|
||||||
format: function() {
|
format: function() {
|
||||||
return $('<img>').attr({
|
return $('<img>').attr({
|
||||||
src: '/static/oxjs/build/png/ox.ui/icon16.png'
|
src: 'static/oxjs/build/png/ox.ui/icon16.png'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
id: 'id',
|
id: 'id',
|
||||||
operator: '+',
|
operator: '+',
|
||||||
title: $('<img>').attr({
|
title: $('<img>').attr({
|
||||||
src: '/static/oxjs/build/png/ox.ui/icon16.png'
|
src: 'static/oxjs/build/png/ox.ui/icon16.png'
|
||||||
}),
|
}),
|
||||||
unique: true,
|
unique: true,
|
||||||
visible: true,
|
visible: true,
|
||||||
|
@ -1037,7 +1046,7 @@
|
||||||
{
|
{
|
||||||
format: function() {
|
format: function() {
|
||||||
return $('<img>').attr({
|
return $('<img>').attr({
|
||||||
src: '/static/oxjs/build/png/ox.ui/icon16.png'
|
src: 'static/oxjs/build/png/ox.ui/icon16.png'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
id: 'id',
|
id: 'id',
|
||||||
|
@ -1081,7 +1090,7 @@
|
||||||
{
|
{
|
||||||
format: function() {
|
format: function() {
|
||||||
return $('<img>').attr({
|
return $('<img>').attr({
|
||||||
src: '/static/oxjs/build/png/ox.ui/icon16.png'
|
src: 'static/oxjs/build/png/ox.ui/icon16.png'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
id: 'user',
|
id: 'user',
|
||||||
|
@ -1602,8 +1611,10 @@
|
||||||
}
|
}
|
||||||
function replaceGroup(i, id, query) {
|
function replaceGroup(i, id, query) {
|
||||||
// if query is passed, selected items will be derived from it
|
// if query is passed, selected items will be derived from it
|
||||||
app.$ui['browser'].replaceElement(
|
var isOuter = i % 4 == 0;
|
||||||
i, app.$ui.groups[i] = ui.group(id, query)
|
app.$ui[isOuter ? 'browser' : 'groupsInnerPanel'].replace(
|
||||||
|
isOuter ? i / 2 : i - 1,
|
||||||
|
app.$ui.groups[i] = ui.group(id, query)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1637,6 +1648,25 @@
|
||||||
});
|
});
|
||||||
return $groups;
|
return $groups;
|
||||||
},
|
},
|
||||||
|
groupsInnerPanel: function() {
|
||||||
|
var that = new Ox.SplitPanel({
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
element: app.$ui.groups[1],
|
||||||
|
size: app.ui.groups[1].size
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: app.$ui.groups[2],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: app.$ui.groups[3],
|
||||||
|
size: app.ui.groups[3].size
|
||||||
|
}
|
||||||
|
],
|
||||||
|
orientation: 'horizontal'
|
||||||
|
});
|
||||||
|
return that;
|
||||||
|
},
|
||||||
info: function() {
|
info: function() {
|
||||||
var that = new Ox.Element()
|
var that = new Ox.Element()
|
||||||
.append(
|
.append(
|
||||||
|
@ -1738,11 +1768,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
app.$ui.contentPanel.replaceElement(1, app.$ui.item = $edit);
|
app.$ui.contentPanel.replace(1, app.$ui.item = $edit);
|
||||||
} else {
|
} else {
|
||||||
$.get('/static/html/itemInfo.html', {}, function(template) {
|
$.get('/static/html/itemInfo.html', {}, function(template) {
|
||||||
//Ox.print(template);
|
//Ox.print(template);
|
||||||
app.$ui.contentPanel.replaceElement(1,
|
app.$ui.contentPanel.replace(1,
|
||||||
app.$ui.item = new Ox.Element('div')
|
app.$ui.item = new Ox.Element('div')
|
||||||
.append($.tmpl(template, result.data.item))
|
.append($.tmpl(template, result.data.item))
|
||||||
);
|
);
|
||||||
|
@ -1756,7 +1786,7 @@
|
||||||
video.height = video.profiles[0]
|
video.height = video.profiles[0]
|
||||||
video.width = parseInt(video.height * video.aspectRatio / 2) * 2;
|
video.width = parseInt(video.height * video.aspectRatio / 2) * 2;
|
||||||
video.url = video.baseUrl + '/' + video.height + 'p.' + format;
|
video.url = video.baseUrl + '/' + video.height + 'p.' + format;
|
||||||
app.$ui.contentPanel.replaceElement(1, app.$ui.player = new Ox.VideoPanelPlayer({
|
app.$ui.contentPanel.replace(1, app.$ui.player = new Ox.VideoPanelPlayer({
|
||||||
annotationsSize: app.user.ui.annotationsSize,
|
annotationsSize: app.user.ui.annotationsSize,
|
||||||
duration: video.duration,
|
duration: video.duration,
|
||||||
height: app.$ui.contentPanel.size(1),
|
height: app.$ui.contentPanel.size(1),
|
||||||
|
@ -1781,7 +1811,7 @@
|
||||||
exitfullscreen: exitFullscreen,
|
exitfullscreen: exitFullscreen,
|
||||||
resize: function(event, data) {
|
resize: function(event, data) {
|
||||||
app.$ui.player.options({
|
app.$ui.player.options({
|
||||||
height: data.height
|
height: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
@ -1797,7 +1827,7 @@
|
||||||
$.each(app.config.layers, function(i, layer) {
|
$.each(app.config.layers, function(i, layer) {
|
||||||
layers[i] = $.extend({}, layer, {items: result.data.item.layers[layer.id]});
|
layers[i] = $.extend({}, layer, {items: result.data.item.layers[layer.id]});
|
||||||
});
|
});
|
||||||
app.$ui.contentPanel.replaceElement(1, app.$ui.editor = new Ox.VideoEditor({
|
app.$ui.contentPanel.replace(1, app.$ui.editor = new Ox.VideoEditor({
|
||||||
annotationsSize: app.user.ui.annotationsSize,
|
annotationsSize: app.user.ui.annotationsSize,
|
||||||
cuts: cuts,
|
cuts: cuts,
|
||||||
duration: video.duration,
|
duration: video.duration,
|
||||||
|
@ -1824,7 +1854,7 @@
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
resize: function(event, data) {
|
resize: function(event, data) {
|
||||||
app.$ui.editor.options({
|
app.$ui.editor.options({
|
||||||
height: data.height
|
height: data
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
togglesize: function(event, data) {
|
togglesize: function(event, data) {
|
||||||
|
@ -1853,7 +1883,7 @@
|
||||||
that.bindEvent('resize', function(event, data) {
|
that.bindEvent('resize', function(event, data) {
|
||||||
//Ox.print('resize item', data)
|
//Ox.print('resize item', data)
|
||||||
app.$ui.editor.options({
|
app.$ui.editor.options({
|
||||||
height: data.height
|
height: data
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
/*
|
/*
|
||||||
|
@ -1865,7 +1895,7 @@
|
||||||
});
|
});
|
||||||
*/
|
*/
|
||||||
} else if (app.user.ui.itemView == 'files') {
|
} else if (app.user.ui.itemView == 'files') {
|
||||||
app.$ui.contentPanel.replaceElement(1,
|
app.$ui.contentPanel.replace(1,
|
||||||
app.$ui.item = new Ox.FilesView({
|
app.$ui.item = new Ox.FilesView({
|
||||||
id: result.data.item.id
|
id: result.data.item.id
|
||||||
})
|
})
|
||||||
|
@ -1899,12 +1929,12 @@
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
resize: function(event, data) {
|
resize: function(event, data) {
|
||||||
var infoSize = Math.round(data / app.ui.infoRatio) + 16;
|
var infoSize = Math.round(data / app.ui.infoRatio) + 16;
|
||||||
app.user.ui.sidebarSize = data.width;
|
app.user.ui.sidebarSize = data;
|
||||||
if (data.width < app.ui.sectionButtonsWidth && app.$ui.sectionButtons) {
|
if (data < app.ui.sectionButtonsWidth && app.$ui.sectionButtons) {
|
||||||
app.$ui.sectionButtons.remove();
|
app.$ui.sectionButtons.remove();
|
||||||
delete app.$ui.sectionButtons;
|
delete app.$ui.sectionButtons;
|
||||||
app.$ui.sectionbar.append(app.$ui.sectionSelect = ui.sectionSelect());
|
app.$ui.sectionbar.append(app.$ui.sectionSelect = ui.sectionSelect());
|
||||||
} else if (data.width >= app.ui.sectionButtonsWidth && app.$ui.sectionSelect) {
|
} else if (data >= app.ui.sectionButtonsWidth && app.$ui.sectionSelect) {
|
||||||
app.$ui.sectionSelect.remove();
|
app.$ui.sectionSelect.remove();
|
||||||
delete app.$ui.sectionSelect;
|
delete app.$ui.sectionSelect;
|
||||||
app.$ui.sectionbar.append(app.$ui.sectionButtons = ui.sectionButtons());
|
app.$ui.sectionbar.append(app.$ui.sectionButtons = ui.sectionButtons());
|
||||||
|
@ -1914,7 +1944,7 @@
|
||||||
resizeFolders();
|
resizeFolders();
|
||||||
},
|
},
|
||||||
resizeend: function(event, data) {
|
resizeend: function(event, data) {
|
||||||
UI.set({sidebarSize: data.width});
|
UI.set({sidebarSize: data});
|
||||||
},
|
},
|
||||||
toggle: function(event, data) {
|
toggle: function(event, data) {
|
||||||
UI.set({showSidebar: !data.collapsed});
|
UI.set({showSidebar: !data.collapsed});
|
||||||
|
@ -2346,7 +2376,7 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
that.display = function() { // fixme: used?
|
that.display = function() { // fixme: used?
|
||||||
app.$ui.rightPanel.replaceElement(1, app.$ui.contentPanel = ui.contentPanel());
|
app.$ui.rightPanel.replace(1, app.$ui.contentPanel = ui.contentPanel());
|
||||||
};
|
};
|
||||||
return that;
|
return that;
|
||||||
},
|
},
|
||||||
|
@ -3039,10 +3069,10 @@
|
||||||
} else {
|
} else {
|
||||||
app.$ui.browser.scrollToSelection();
|
app.$ui.browser.scrollToSelection();
|
||||||
app.user.ui.itemView == 'player' && app.$ui.player.options({
|
app.user.ui.itemView == 'player' && app.$ui.player.options({
|
||||||
width: data.width
|
width: data
|
||||||
});
|
});
|
||||||
app.user.ui.itemView == 'timeline' && app.$ui.editor.options({
|
app.user.ui.itemView == 'timeline' && app.$ui.editor.options({
|
||||||
width: data.width
|
width: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3198,7 +3228,7 @@
|
||||||
app.$ui.findElement = ui.findElement()
|
app.$ui.findElement = ui.findElement()
|
||||||
);
|
);
|
||||||
that.display = function() {
|
that.display = function() {
|
||||||
app.$ui.rightPanel.replaceElement(0, app.$ui.toolbar = ui.toolbar()); // fixme: remove later
|
app.$ui.rightPanel.replace(0, app.$ui.toolbar = ui.toolbar()); // fixme: remove later
|
||||||
}
|
}
|
||||||
return that;
|
return that;
|
||||||
},
|
},
|
||||||
|
@ -3232,7 +3262,7 @@
|
||||||
var id = data.selected[0].id;
|
var id = data.selected[0].id;
|
||||||
//UI.set({itemView: id});
|
//UI.set({itemView: id});
|
||||||
URL.set(app.user.ui.item + '/' + id);
|
URL.set(app.user.ui.item + '/' + id);
|
||||||
// app.$ui.contentPanel.replaceElement(1, app.$ui.item = ui.item());
|
// app.$ui.contentPanel.replace(1, app.$ui.item = ui.item());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return that;
|
return that;
|
||||||
|
@ -3346,12 +3376,10 @@
|
||||||
function getFoldersWidth() {
|
function getFoldersWidth() {
|
||||||
var width = app.user.ui.sidebarSize;
|
var width = app.user.ui.sidebarSize;
|
||||||
// fixme: don't use height(), look up in splitpanels
|
// fixme: don't use height(), look up in splitpanels
|
||||||
/*
|
|
||||||
Ox.print(getFoldersHeight(), '>', app.$ui.leftPanel.height() - 24 - 1 - app.$ui.info.height())
|
Ox.print(getFoldersHeight(), '>', app.$ui.leftPanel.height() - 24 - 1 - app.$ui.info.height())
|
||||||
if (getFoldersHeight() > app.$ui.leftPanel.height() - 24 - 1 - app.$ui.info.height()) {
|
if (getFoldersHeight() > app.$ui.leftPanel.height() - 24 - 1 - app.$ui.info.height()) {
|
||||||
width -= app.ui.scrollbarSize;
|
width -= app.ui.scrollbarSize;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
return width;
|
return width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3433,8 +3461,8 @@
|
||||||
return getGroupWidth(i, width);
|
return getGroupWidth(i, width);
|
||||||
});
|
});
|
||||||
//Ox.print('widths', widths);
|
//Ox.print('widths', widths);
|
||||||
//app.$ui.browser.size(0, widths[0].list).size(2, widths[4].list);
|
app.$ui.browser.size(0, widths[0].list).size(2, widths[4].list);
|
||||||
//app.$ui.groupsInnerPanel.size(0, widths[1].list).size(2, widths[3].list);
|
app.$ui.groupsInnerPanel.size(0, widths[1].list).size(2, widths[3].list);
|
||||||
$.each(app.$ui.groups, function(i, list) {
|
$.each(app.$ui.groups, function(i, list) {
|
||||||
list.resizeColumn('name', widths[i].column);
|
list.resizeColumn('name', widths[i].column);
|
||||||
});
|
});
|
||||||
|
@ -3851,15 +3879,15 @@
|
||||||
update: function() {
|
update: function() {
|
||||||
URL.parse();
|
URL.parse();
|
||||||
if (app.user.ui.section != old.user.ui.section) {
|
if (app.user.ui.section != old.user.ui.section) {
|
||||||
app.$ui.appPanel.replaceElement(1, app.$ui.mainPanel = ui.mainPanel());
|
app.$ui.appPanel.replace(1, app.$ui.mainPanel = ui.mainPanel());
|
||||||
} else if (app.user.ui.sitePage != old.user.ui.sitePage) {
|
} else if (app.user.ui.sitePage != old.user.ui.sitePage) {
|
||||||
app.$ui.mainPanel.replaceElement(1, app.$ui.rightPanel = ui.rightPanel());
|
app.$ui.mainPanel.replace(1, app.$ui.rightPanel = ui.rightPanel());
|
||||||
} else if (!app.user.ui.item || !old.user.ui.item) {
|
} else if (!app.user.ui.item || !old.user.ui.item) {
|
||||||
app.$ui.mainPanel.replaceElement(1, app.$ui.rightPanel = ui.rightPanel());
|
app.$ui.mainPanel.replace(1, app.$ui.rightPanel = ui.rightPanel());
|
||||||
app.$ui.leftPanel.replaceElement(2, app.$ui.info = ui.info());
|
app.$ui.leftPanel.replace(2, app.$ui.info = ui.info());
|
||||||
} else {
|
} else {
|
||||||
app.$ui.contentPanel.replaceElement(1, ui.item());
|
app.$ui.contentPanel.replace(1, ui.item());
|
||||||
app.$ui.leftPanel.replaceElement(2, app.$ui.info = ui.info());
|
app.$ui.leftPanel.replace(2, app.$ui.info = ui.info());
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
old.user.ui.item &&
|
old.user.ui.item &&
|
||||||
|
@ -3913,7 +3941,7 @@
|
||||||
});
|
});
|
||||||
if (!match) {
|
if (!match) {
|
||||||
Query.fromString(location.hash.substr(1));
|
Query.fromString(location.hash.substr(1));
|
||||||
app.$ui.rightPanel.replaceElement(1, ui.contentPanel());
|
app.$ui.rightPanel.replace(1, ui.contentPanel());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue