1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-20 04:12:17 +00:00
seahub/static/scripts/sysadmin-app/views/mobile-devices.js
2016-04-23 18:07:09 +08:00

151 lines
4.7 KiB
JavaScript

define([
'jquery',
'underscore',
'backbone',
'common',
'moment',
'sysadmin-app/views/device',
'sysadmin-app/collection/devices'
], function($, _, Backbone, Common, Moment, Device, DevicesCollection) {
'use strict';
var DevicesView = Backbone.View.extend({
id: 'admin-devices',
template: _.template($("#admin-devices-tmpl").html()),
initialize: function() {
this.deviceCollection = new DevicesCollection();
this.listenTo(this.deviceCollection, 'add', this.addOne);
this.listenTo(this.deviceCollection, 'reset', this.reset);
},
render: function() {
this.$el.html(this.template({'cur_tab': 'mobile', 'is_pro': app.pageOptions.is_pro}));
this.$table = this.$('table');
this.$tableBody = $('tbody', this.$table);
this.$loadingTip = this.$('.loading-tip');
this.$emptyTip = this.$('.empty-tips');
this.$jsPrevious = this.$('.js-previous');
this.$jsNext = this.$('.js-next');
},
events: {
'click #paginator .js-next': 'getNextPage',
'click #paginator .js-previous': 'getPreviousPage'
},
initPage: function() {
this.$table.hide();
this.$tableBody.empty();
this.$loadingTip.show();
this.$emptyTip.hide();
this.$jsNext.hide();
this.$jsPrevious.hide();
},
getNextPage: function() {
this.initPage();
if (this.deviceCollection.state.hasNextPage) {
var _this = this;
this.deviceCollection.getNextPage({
reset:true,
data: {'platform': 'mobile'},
});
}
return false;
},
getPreviousPage: function() {
this.initPage();
if (this.deviceCollection.state.currentPage > 1) {
var _this = this;
this.deviceCollection.getPreviousPage({
reset:true,
data: {'platform': 'mobile'},
});
}
return false;
},
hide: function() {
this.$el.detach();
},
show: function(option) {
this.option = option;
this.render();
$("#right-panel").html(this.$el);
this.showMobileDevices();
},
showMobileDevices: function() {
this.initPage();
var _this = this,
current_page = this.option.current_page || this.deviceCollection.state.currentPage;
this.deviceCollection.fetch({
data: {'platform': 'mobile', 'page': current_page},
cache: false, // for IE
reset: true,
error: function (collection, response, opts) {
var err_msg;
if (response.responseText) {
if (response['status'] == 401 || response['status'] == 403) {
err_msg = gettext("Permission error");
} else {
err_msg = $.parseJSON(response.responseText).error_msg;
}
} else {
err_msg = gettext("Failed. Please check the network.");
}
Common.feedback(err_msg, 'error');
}
});
},
reset: function() {
var length = this.deviceCollection.length,
current_page = this.option.current_page || this.deviceCollection.state.currentPage;
this.$loadingTip.hide();
if (length > 0) {
this.deviceCollection.each(this.addOne, this);
this.$table.show();
} else {
this.$emptyTip.show();
}
this.renderPaginator();
app.router.navigate('mobile-devices/?page=' + current_page);
},
addOne: function(device) {
var view = new Device({model: device});
this.$tableBody.append(view.render().el);
},
renderPaginator: function() {
if (this.deviceCollection.state.hasNextPage) {
this.$jsNext.show();
} else {
this.$jsNext.hide();
}
var current_page = this.option.current_page || this.deviceCollection.state.currentPage;
if (current_page > 1 && this.deviceCollection.length > 0) {
this.$jsPrevious.show();
} else {
this.$jsPrevious.hide();
}
}
});
return DevicesView;
});