parent
d9a240577d
commit
c1d9640369
5 changed files with 114 additions and 31 deletions
|
@ -110,9 +110,8 @@ pandora.ui.clipList = function(videoRatio) {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
init: function(data) {
|
init: function(data) {
|
||||||
// fixme: status needs an overhaul
|
if (!ui.item && ui.listView == 'clip'/* && pandora.$ui.statusbar*/) {
|
||||||
if (!ui.item && pandora.$ui.total) {
|
pandora.$ui.statusbar.set('total', data);
|
||||||
pandora.$ui.total.html(pandora.ui.status('total', data));
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
open: function(data) {
|
open: function(data) {
|
||||||
|
|
|
@ -63,7 +63,7 @@ pandora.ui.clipsView = function(videoRatio) {
|
||||||
var items = data.items;
|
var items = data.items;
|
||||||
$status.html(
|
$status.html(
|
||||||
(items ? Ox.formatNumber(items) : 'No')
|
(items ? Ox.formatNumber(items) : 'No')
|
||||||
+ ' clip' + (items == 1 ? '' : 's')
|
+ ' Clip' + (items == 1 ? '' : 's')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -386,12 +386,12 @@ pandora.ui.list = function() {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
init: function(data) {
|
init: function(data) {
|
||||||
pandora.$ui.total.html(pandora.ui.status('total', data));
|
pandora.$ui.statusbar.set('total', data);
|
||||||
data = [];
|
data = [];
|
||||||
pandora.site.totals.forEach(function(v) {
|
pandora.site.totals.forEach(function(v) {
|
||||||
data[v.id] = 0;
|
data[v.id] = 0;
|
||||||
});
|
});
|
||||||
pandora.$ui.selected.html(pandora.ui.status('selected', data));
|
pandora.$ui.statusbar.set('selected', data);
|
||||||
},
|
},
|
||||||
open: function(data) {
|
open: function(data) {
|
||||||
var set = {item: data.ids[0]};
|
var set = {item: data.ids[0]};
|
||||||
|
@ -502,7 +502,7 @@ pandora.ui.list = function() {
|
||||||
}
|
}
|
||||||
pandora.$ui.leftPanel.replaceElement(2, pandora.$ui.info = pandora.ui.info());
|
pandora.$ui.leftPanel.replaceElement(2, pandora.$ui.info = pandora.ui.info());
|
||||||
if (data.ids.length == 0) {
|
if (data.ids.length == 0) {
|
||||||
pandora.$ui.selected.html(pandora.ui.status('selected', {items: 0}));
|
pandora.$ui.statusbar.set('selected', {items: 0});
|
||||||
} else {
|
} else {
|
||||||
if (Ox.isUndefined(data.rest)) {
|
if (Ox.isUndefined(data.rest)) {
|
||||||
query = {
|
query = {
|
||||||
|
@ -532,7 +532,7 @@ pandora.ui.list = function() {
|
||||||
pandora.api.find({
|
pandora.api.find({
|
||||||
query: query
|
query: query
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
pandora.$ui.selected.html(pandora.ui.status('selected', result.data));
|
pandora.$ui.statusbar.set('selected', result.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -230,7 +230,7 @@ pandora.ui.navigationView = function(type, videoRatio) {
|
||||||
function updateStatusbar(items) {
|
function updateStatusbar(items) {
|
||||||
$status.html(
|
$status.html(
|
||||||
(items ? Ox.formatNumber(items) : 'No')
|
(items ? Ox.formatNumber(items) : 'No')
|
||||||
+ ' clip' + (items == 1 ? '' : 's')
|
+ ' Clip' + (items == 1 ? '' : 's')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,28 +1,112 @@
|
||||||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
pandora.ui.statusbar = function() {
|
pandora.ui.statusbar = function() {
|
||||||
var that = Ox.Bar({
|
|
||||||
size: 16
|
var $text = {
|
||||||
})
|
titleTotal: Ox.Element('<span>').html('Total: '),
|
||||||
.css({
|
total: Ox.Element('<span>'),
|
||||||
textAlign: 'center'
|
titleSelected: Ox.Element('<span>').html(' — Selected: '),
|
||||||
})
|
selected: Ox.Element('<span>'),
|
||||||
.append(
|
loading: Ox.Element('<span>').html('Loading...')
|
||||||
Ox.Element()
|
},
|
||||||
.css({
|
|
||||||
marginTop: '2px',
|
that = Ox.Bar({size: 16})
|
||||||
fontSize: '9px'
|
.css({
|
||||||
})
|
textAlign: 'center'
|
||||||
.append(
|
})
|
||||||
pandora.$ui.total = Ox.Element('<span>')
|
.append(
|
||||||
)
|
Ox.Element()
|
||||||
.append(
|
.css({
|
||||||
Ox.Element('<span>').html(' — ')
|
marginTop: '2px',
|
||||||
)
|
fontSize: '9px'
|
||||||
.append(
|
})
|
||||||
pandora.$ui.selected = Ox.Element('<span>')
|
.append($text.loading)
|
||||||
)
|
.append($text.titleTotal)
|
||||||
);
|
.append($text.total)
|
||||||
|
.append($text.titleSelected)
|
||||||
|
.append($text.selected)
|
||||||
|
);
|
||||||
|
|
||||||
|
function getText(data) {
|
||||||
|
var ui = pandora.user.ui,
|
||||||
|
itemName = ui.listView == 'clip'
|
||||||
|
? (data.items == 1 ? 'Clip' : 'Clips')
|
||||||
|
: (pandora.site.itemName[data.items == 1 ? 'singular' : 'plural']),
|
||||||
|
parts = [];
|
||||||
|
parts.push(Ox.formatNumber(data.items) + ' '+ itemName);
|
||||||
|
if (data.runtime)
|
||||||
|
parts.push(Ox.formatDuration(data.runtime, 'short'));
|
||||||
|
if (data.files)
|
||||||
|
parts.push(data.files + ' file' + (data.files == 1 ? '' : 's'));
|
||||||
|
if (!data.runtime && data.duration)
|
||||||
|
parts.push(Ox.formatDuration(data.duration, 'short'));
|
||||||
|
else if (data.duration)
|
||||||
|
parts.push(Ox.formatDuration(data.duration));
|
||||||
|
if (data.size)
|
||||||
|
parts.push(Ox.formatValue(data.size, 'B'));
|
||||||
|
if (data.pixels)
|
||||||
|
parts.push(Ox.formatValue(data.pixels, 'px'));
|
||||||
|
return parts.join(', ');
|
||||||
|
}
|
||||||
|
|
||||||
|
function setTotal() {
|
||||||
|
pandora.api.find({
|
||||||
|
query: pandora.user.ui.find,
|
||||||
|
sort: pandora.user.ui.listSort
|
||||||
|
}, function(result) {
|
||||||
|
that.set('selected', {items: 0});
|
||||||
|
that.set('total', result.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
that.set = function(key, data) {
|
||||||
|
if (key == 'loading') {
|
||||||
|
Ox.forEach($text, function($element, key) {
|
||||||
|
$element[key == 'loading' ? 'show' : 'hide']();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$text.loading.hide();
|
||||||
|
if (key == 'selected') {
|
||||||
|
if (data.items == 0) {
|
||||||
|
$text.titleTotal.hide();
|
||||||
|
$text.titleSelected.hide();
|
||||||
|
$text.selected.hide();
|
||||||
|
} else {
|
||||||
|
$text.titleTotal.show();
|
||||||
|
$text.titleSelected.show();
|
||||||
|
$text.selected.html(getText(data)).show();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$text.total.html(getText(data)).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
that.bindEvent({
|
||||||
|
pandora_find: function() {
|
||||||
|
that.set('loading');
|
||||||
|
if (['map', 'calendar'].indexOf(pandora.user.ui.listView) > -1) {
|
||||||
|
setTotal();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
pandora_listview: function(data) {
|
||||||
|
var isNavigationView = ['map', 'calendar'].indexOf(data.value) > -1,
|
||||||
|
wasNavigationView = ['map', 'calendar'].indexOf(data.previousValue) > -1;
|
||||||
|
that.set('loading');
|
||||||
|
if (isNavigationView && !wasNavigationView) {
|
||||||
|
setTotal();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
that.set('loading');
|
||||||
|
if (['map', 'calendar'].indexOf(pandora.user.ui.listView) > -1) {
|
||||||
|
setTotal();
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue