1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 00:42:53 +00:00
seahub/static/scripts/app/views/organization.js

184 lines
6.0 KiB
JavaScript
Raw Normal View History

2015-03-07 07:56:10 +00:00
define([
'jquery',
'underscore',
'backbone',
'common',
2015-04-03 09:01:13 +00:00
'app/collections/pub-repos',
'app/views/organization-repo',
2015-05-14 03:28:12 +00:00
'app/views/create-pub-repo',
2015-04-03 09:01:13 +00:00
'app/views/add-pub-repo'
], function($, _, Backbone, Common, PubRepoCollection, OrganizationRepoView,
2015-05-14 03:28:12 +00:00
CreatePubRepoView, AddPubRepoView) {
2015-03-07 07:56:10 +00:00
'use strict';
var OrganizationView = Backbone.View.extend({
2015-11-24 04:10:17 +00:00
el: '#organization-repos',
2015-03-07 07:56:10 +00:00
2015-05-11 10:39:21 +00:00
reposHdTemplate: _.template($('#shared-repos-hd-tmpl').html()),
initialize: function(options) {
2015-11-24 04:10:17 +00:00
this.$table = this.$('table');
this.$tableHead = $('thead', this.$table);
2015-03-07 07:56:10 +00:00
this.$tableBody = $('tbody', this.$table);
2015-11-24 04:10:17 +00:00
this.$loadingTip = this.$('.loading-tip');
this.$emptyTip = this.$('.empty-tips');
2015-03-07 07:56:10 +00:00
2015-04-03 09:01:13 +00:00
this.repos = new PubRepoCollection();
2015-03-07 07:56:10 +00:00
this.listenTo(this.repos, 'add', this.addOne);
this.listenTo(this.repos, 'reset', this.reset);
this.dirView = options.dirView;
2015-05-28 05:57:00 +00:00
// show/hide 'add lib' menu
var $add_lib = $('#add-pub-lib'),
$add_lib_menu = $('#add-pub-lib-menu');
$add_lib.click(function() {
$add_lib_menu.toggleClass('hide');
$add_lib_menu.css({
'top': $add_lib.position().top + $add_lib.outerHeight(),
2015-05-28 08:08:30 +00:00
'right': 10 // align right with $add_lib
2015-05-28 05:57:00 +00:00
});
});
$('.item', $add_lib_menu).hover(
function() {
$(this).css({'background':'#f3f3f3'});
},
function() {
$(this).css({'background':'transparent'});
}
);
$(document).click(function(e) {
Common.closePopup(e, $add_lib_menu, $add_lib);
});
2015-03-07 07:56:10 +00:00
},
events: {
2015-11-24 04:10:17 +00:00
'click .share-existing': 'addRepo',
'click .create-new': 'createRepo',
'click .by-name': 'sortByName',
'click .by-time': 'sortByTime'
2015-03-07 07:56:10 +00:00
},
createRepo: function() {
2015-05-14 03:28:12 +00:00
new CreatePubRepoView(this.repos);
},
addRepo: function() {
new AddPubRepoView(this.repos);
2015-03-07 07:56:10 +00:00
},
addOne: function(repo, collection, options) {
var view = new OrganizationRepoView({model: repo, collection: this.repos});
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-03-07 07:56:10 +00:00
reset: function() {
this.$('.error').hide();
this.$loadingTip.hide();
2015-03-07 07:56:10 +00:00
if (this.repos.length) {
this.$emptyTip.hide();
this.renderReposHd();
this.$tableBody.empty();
this.repos.each(this.addOne, this);
2015-03-07 07:56:10 +00:00
this.$table.show();
} else {
this.$table.hide();
this.$emptyTip.show();
2015-03-07 07:56:10 +00:00
}
},
2015-04-11 07:14:56 +00:00
showRepoList: function() {
this.dirView.hide();
2015-11-24 04:10:17 +00:00
this.$el.show();
var $loadingTip = this.$loadingTip;
$loadingTip.show();
var _this = this;
this.repos.fetch({
2015-10-08 09:54:59 +00:00
cache: false,
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-04-11 07:14:56 +00:00
hideRepoList: function() {
2015-11-24 04:10:17 +00:00
this.$el.hide();
},
showDir: function(repo_id, path) {
var path = path || '/';
2015-04-11 07:14:56 +00:00
this.hideRepoList();
2015-04-11 09:35:02 +00:00
this.dirView.showDir('org', repo_id, path);
},
sortByName: function() {
$('.by-time .sort-icon', this.$table).hide();
var repos = this.repos;
2015-07-09 09:16:10 +00:00
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);
2015-07-09 09:16:10 +00:00
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;
2015-07-09 09:16:10 +00:00
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);
2015-07-09 09:16:10 +00:00
el.toggleClass('icon-caret-up icon-caret-down').show();
2015-05-11 07:31:03 +00:00
repos.comparator = null;
2015-04-11 07:14:56 +00:00
},
hide: function() {
this.hideRepoList();
2015-04-14 06:48:56 +00:00
this.$emptyTip.hide();
2015-04-11 07:14:56 +00:00
this.dirView.hide();
2015-03-07 07:56:10 +00:00
}
});
return OrganizationView;
});