1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-29 08:27:55 +00:00
seahub/static/scripts/app/views/myhome-shared-repos.js

138 lines
4.5 KiB
JavaScript
Raw Normal View History

2015-02-04 13:57:26 +00:00
define([
'jquery',
'underscore',
'backbone',
'common',
'app/collections/repos',
'app/views/shared-repo',
], function($, _, Backbone, Common, RepoCollection, SharedRepoView) {
'use strict';
var SharedReposView = Backbone.View.extend({
2015-11-24 04:10:17 +00:00
el: $('#repos-shared-to-me'),
2015-02-04 13:57:26 +00:00
2015-05-11 10:39:21 +00:00
reposHdTemplate: _.template($('#shared-repos-hd-tmpl').html()),
2015-02-04 13:57:26 +00:00
initialize: function(options) {
2015-11-24 04:10:17 +00:00
this.$table = this.$('table');
2015-02-04 13:57:26 +00:00
this.$tableHead = $('thead', this.$table);
this.$tableBody = $('tbody', this.$table);
2015-11-24 04:10:17 +00:00
this.$loadingTip = this.$('.loading-tip');
this.$emptyTip = this.$('.empty-tips');
2015-02-04 13:57:26 +00:00
this.repos = new RepoCollection({type: 'shared'});
this.listenTo(this.repos, 'add', this.addOne);
this.listenTo(this.repos, 'reset', this.reset);
},
addOne: function(repo, collection, options) {
2015-03-06 09:53:41 +00:00
var view = new SharedRepoView({model: repo, collection: this.repos});
2015-02-04 13:57:26 +00:00
if (options.prepend) {
this.$tableBody.prepend(view.render().el);
} else {
this.$tableBody.append(view.render().el);
}
},
2015-05-11 10:39:21 +00:00
renderReposHd: function() {
this.$tableHead.html(this.reposHdTemplate());
},
2015-02-04 13:57:26 +00:00
reset: function() {
this.$('.error').hide();
this.$loadingTip.hide();
2015-02-04 13:57:26 +00:00
if (this.repos.length) {
this.$emptyTip.hide();
this.renderReposHd();
this.$tableBody.empty();
this.repos.each(this.addOne, this);
2015-02-04 13:57:26 +00:00
this.$table.show();
} else {
this.$emptyTip.show();
this.$table.hide();
}
},
showSharedRepos: function() {
2015-11-24 04:10:17 +00:00
this.$el.show();
2015-02-04 13:57:26 +00:00
this.$table.hide();
var $loadingTip = this.$loadingTip;
$loadingTip.show();
var _this = this;
this.repos.fetch({
reset: true,
success: function (collection, response, opts) {
},
error: function (collection, response, opts) {
$loadingTip.hide();
var $error = _this.$('.error');
var err_msg;
if (response.responseText) {
if (response['status'] == 401 || response['status'] == 403) {
err_msg = gettext("Permission error");
} else {
err_msg = gettext("Error");
}
} else {
err_msg = gettext('Please check the network.');
}
$error.html(err_msg).show();
}
});
2015-02-04 13:57:26 +00:00
},
show: function() {
this.showSharedRepos();
},
hide: function() {
this.$el.hide();
},
events: {
2015-11-24 04:10:17 +00:00
'click .by-name': 'sortByName',
'click .by-time': 'sortByTime'
},
sortByName: function() {
$('.by-time .sort-icon', this.$table).hide();
var repos = this.repos;
var el = $('.by-name .sort-icon', this.$table);
repos.comparator = function(a, b) { // a, b: model
var result = Common.compareTwoWord(a.get('name'), b.get('name'));
if (el.hasClass('icon-caret-up')) {
return -result;
} else {
return result;
}
};
repos.sort();
this.$tableBody.empty();
repos.each(this.addOne, this);
el.toggleClass('icon-caret-up icon-caret-down').show();
2015-05-11 07:31:03 +00:00
repos.comparator = null;
},
sortByTime: function() {
$('.by-name .sort-icon', this.$table).hide();
var repos = this.repos;
var el = $('.by-time .sort-icon', this.$table);
repos.comparator = function(a, b) { // a, b: model
if (el.hasClass('icon-caret-down')) {
return a.get('mtime') < b.get('mtime') ? 1 : -1;
} else {
return a.get('mtime') < b.get('mtime') ? -1 : 1;
}
};
repos.sort();
this.$tableBody.empty();
repos.each(this.addOne, this);
el.toggleClass('icon-caret-up icon-caret-down').show();
2015-05-11 07:31:03 +00:00
repos.comparator = null;
}
2015-02-04 13:57:26 +00:00
});
return SharedReposView;
});