Small improvments in sorting.
This commit is contained in:
parent
a447502703
commit
3a92606e0c
4 changed files with 17 additions and 19 deletions
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
modulejs.define('core/event', ['_'], function (_) {
|
modulejs.define('core/event', ['_'], function (_) {
|
||||||
|
|
||||||
var subscriptions = {},
|
var slice = Array.prototype.slice,
|
||||||
|
subscriptions = {},
|
||||||
|
|
||||||
sub = function (topic, callback) {
|
sub = function (topic, callback) {
|
||||||
|
|
||||||
|
@ -24,7 +25,7 @@ modulejs.define('core/event', ['_'], function (_) {
|
||||||
|
|
||||||
pub = function (topic, data) {
|
pub = function (topic, data) {
|
||||||
|
|
||||||
var args = Array.prototype.slice.call(arguments, 1);
|
var args = slice.call(arguments, 1);
|
||||||
|
|
||||||
// console.log('EVENT PUB', topic, args);
|
// console.log('EVENT PUB', topic, args);
|
||||||
if (_.isString(topic) && subscriptions[topic]) {
|
if (_.isString(topic) && subscriptions[topic]) {
|
||||||
|
|
|
@ -14,15 +14,9 @@ modulejs.define('core/format', ['_', 'moment'], function (_, moment) {
|
||||||
defaultMetric = decimalMetric,
|
defaultMetric = decimalMetric,
|
||||||
defaultDateFormat = 'YYYY-MM-DD HH:mm',
|
defaultDateFormat = 'YYYY-MM-DD HH:mm',
|
||||||
|
|
||||||
setDefaultMetric = function (metric) {
|
setDefaultMetric = function (useBinaryMetric) {
|
||||||
|
|
||||||
if (!metric) {
|
defaultMetric = useBinaryMetric ? binaryMetric : decimalMetric;
|
||||||
defaultMetric = decimalMetric;
|
|
||||||
} else if (metric === true) {
|
|
||||||
defaultMetric = binaryMetric;
|
|
||||||
} else {
|
|
||||||
defaultMetric = metric;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
formatSize = function (size, metric) {
|
formatSize = function (size, metric) {
|
||||||
|
@ -48,13 +42,9 @@ modulejs.define('core/format', ['_', 'moment'], function (_, moment) {
|
||||||
defaultDateFormat = dateFormat;
|
defaultDateFormat = dateFormat;
|
||||||
},
|
},
|
||||||
|
|
||||||
formatDate = function (millis, dateFormat) {
|
formatDate = function (millis) {
|
||||||
|
|
||||||
if (!_.isNumber(millis) || !millis) {
|
return _.isNumber(millis) && millis ? moment(millis).format(defaultDateFormat) : '';
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return moment(millis).format(dateFormat || defaultDateFormat);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -65,7 +65,14 @@ modulejs.define('ext/sort', ['_', '$', 'core/settings', 'core/resource', 'core/e
|
||||||
|
|
||||||
$all.removeClass('ascending').removeClass('descending');
|
$all.removeClass('ascending').removeClass('descending');
|
||||||
order.head.addClass(order.clas);
|
order.head.addClass(order.clas);
|
||||||
$('#items .item').detach().sort(order.fn).appendTo('#items');
|
var current = $('#items .item');
|
||||||
|
var sorted = $('#items .item').sort(order.fn);
|
||||||
|
for (var i = 0, l = current.length; i < l; i += 1) {
|
||||||
|
if (current[i] !== sorted[i]) {
|
||||||
|
sorted.detach().sort(order.fn).appendTo('#items');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onContentChanged = function (item) {
|
onContentChanged = function (item) {
|
||||||
|
|
|
@ -16,7 +16,7 @@ modulejs.define('view/items', ['_', '$', 'core/settings', 'core/resource', 'core
|
||||||
'</a>' +
|
'</a>' +
|
||||||
'</li>',
|
'</li>',
|
||||||
hintTemplate = '<span class="hint"/>',
|
hintTemplate = '<span class="hint"/>',
|
||||||
itemsTemplate = '<ul id="items">' +
|
itemsTemplate = '<ul id="items" class="clearfix">' +
|
||||||
'<li class="header">' +
|
'<li class="header">' +
|
||||||
'<a class="icon"/>' +
|
'<a class="icon"/>' +
|
||||||
'<a class="label" href="#"><span class="l10n-name"/></a>' +
|
'<a class="label" href="#"><span class="l10n-name"/></a>' +
|
||||||
|
@ -25,7 +25,7 @@ modulejs.define('view/items', ['_', '$', 'core/settings', 'core/resource', 'core
|
||||||
'</li>' +
|
'</li>' +
|
||||||
'</ul>',
|
'</ul>',
|
||||||
emptyTemplate = '<div class="empty l10n-empty"/>',
|
emptyTemplate = '<div class="empty l10n-empty"/>',
|
||||||
contentTemplate = '<div id="content"><div id="extended" class="clearfix"/></div>',
|
contentTemplate = '<div id="content"><div id="extended"/></div>',
|
||||||
|
|
||||||
// updates this single item
|
// updates this single item
|
||||||
update = function (item, force) {
|
update = function (item, force) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue