1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-28 16:08:25 +00:00
seahub/static/scripts/app/views/group.js
2016-04-19 14:41:17 +08:00

229 lines
7.7 KiB
JavaScript

define([
'jquery',
'underscore',
'backbone',
'common',
'app/collections/group-repos',
'app/views/group-repo',
'app/views/add-group-repo',
'app/views/group-members',
'app/views/group-discussions',
'app/views/group-settings'
], function($, _, Backbone, Common, GroupRepos, GroupRepoView,
AddGroupRepoView, GroupMembersView, GroupDiscussionsView, GroupSettingsView) {
'use strict';
var GroupView = Backbone.View.extend({
id: 'group',
template: _.template($('#group-tmpl').html()),
groupTopTemplate: _.template($('#group-top-tmpl').html()),
reposHdTemplate: _.template($('#shared-repos-hd-tmpl').html()),
events: {
'click #group-settings-icon': 'toggleSettingsPanel',
'click #group-members-icon': 'toggleMembersPanel',
'click #group-discussions-icon': 'toggleDiscussionsPanel',
'click .repo-create': 'createRepo',
'click .by-name': 'sortByName',
'click .by-time': 'sortByTime'
},
initialize: function(options) {
this.group = {}; // will be fetched when rendering the top bar
this.repos = new GroupRepos();
this.listenTo(this.repos, 'add', this.addOne);
this.listenTo(this.repos, 'reset', this.reset);
this.settingsView = new GroupSettingsView({ groupView: this });
this.membersView = new GroupMembersView({ groupView: this });
this.discussionsView = new GroupDiscussionsView({ groupView: this });
this.render();
},
addOne: function(repo, collection, options) {
var view = new GroupRepoView({
model: repo,
group_id: this.group_id,
is_staff: this.repos.is_staff
});
if (options.prepend) {
this.$tableBody.prepend(view.render().el);
} else {
this.$tableBody.append(view.render().el);
}
},
renderReposHd: function() {
this.$tableHead.html(this.reposHdTemplate());
},
reset: function() {
this.$('.error').hide();
this.$loadingTip.hide();
if (this.repos.length) {
this.$emptyTip.hide();
this.renderReposHd();
this.$tableBody.empty();
this.repos.each(this.addOne, this);
this.$table.show();
} else {
this.$emptyTip.show();
this.$table.hide();
}
},
renderGroupTop: function(options) {
var _this = this;
var $groupTop = $('#group-top');
$.ajax({
url: Common.getUrl({
'name': 'group',
'group_id': this.group_id
}),
cache: false,
dataType: 'json',
success: function (data) {
_this.group = data;
$groupTop.html(_this.groupTopTemplate(data));
if (options) {
if (options.showDiscussions) {
_this.showDiscussions();
}
}
},
error: function(xhr) {
var err_msg;
if (xhr.responseText) {
err_msg = $.parseJSON(xhr.responseText).error_msg;
} else {
err_msg = gettext("Please check the network.");
}
$groupTop.html('<p class="error">' + err_msg + '</p>');
}
});
},
showRepoList: function(group_id, options) {
this.group_id = group_id;
this.$emptyTip.hide();
this.renderGroupTop(options);
this.$table.hide();
var $loadingTip = this.$loadingTip;
$loadingTip.show();
var _this = this;
this.repos.setGroupID(group_id);
this.repos.fetch({
cache: false,
reset: true,
data: {from: 'web'},
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();
}
});
},
render: function() {
this.$el.html(this.template());
this.$table = this.$('table');
this.$tableHead = this.$('thead');
this.$tableBody = this.$('tbody');
this.$loadingTip = this.$('#group-repos .loading-tip');
this.$emptyTip = this.$('#group-repos .empty-tips');
this.attached = false;
},
show: function(group_id, options) {
if (!this.attached) {
// if the user swith bettern different groups,
// the group view is already attached.
$("#right-panel").html(this.$el);
this.attached = true;
}
this.showRepoList(group_id, options);
},
hide: function() {
this.attached = false;
this.$el.detach();
},
createRepo: function() {
new AddGroupRepoView(this.repos);
},
sortByName: function() {
this.$('.by-time .sort-icon').hide();
var repos = this.repos;
var el = this.$('.by-name .sort-icon');
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();
repos.comparator = null;
return false;
},
sortByTime: function() {
this.$('.by-name .sort-icon').hide();
var repos = this.repos;
var el = this.$('.by-time .sort-icon');
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();
repos.comparator = null;
return false;
},
toggleSettingsPanel: function() {
return this.settingsView.toggle();
},
toggleMembersPanel: function() {
return this.membersView.toggle();
},
showDiscussions: function() {
return this.discussionsView.show();
},
toggleDiscussionsPanel: function() {
return this.discussionsView.toggle();
}
});
return GroupView;
});