mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-29 00:17:18 +00:00
Conflicts: media/css/sf_font2/seafile-font2.eot media/css/sf_font2/seafile-font2.ttf media/css/sf_font2/seafile-font2.woff requirements.txt seahub/api2/endpoints/dir_shared_items.py seahub/templates/js/templates.html seahub/views/ajax.py static/scripts/app/views/group-repo.js
79 lines
2.6 KiB
JavaScript
79 lines
2.6 KiB
JavaScript
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'common'
|
|
], function($, _, Backbone, Common) {
|
|
'use strict';
|
|
|
|
var GroupRepoView = Backbone.View.extend({
|
|
tagName: 'tr',
|
|
|
|
template: _.template($('#group-repo-tmpl').html()),
|
|
|
|
events: {
|
|
'mouseenter': 'highlight',
|
|
'mouseleave': 'rmHighlight',
|
|
'click .cancel-share': 'unshare'
|
|
},
|
|
|
|
initialize: function(options) {
|
|
this.group_id = options.group_id;
|
|
this.is_staff = options.is_staff;
|
|
|
|
this.show_shared_by = true; // default
|
|
if (options.show_shared_by !== undefined) { // e.g. views/group-item.js
|
|
this.show_shared_by = options.show_shared_by;
|
|
}
|
|
|
|
this.listenTo(this.model, 'destroy', this.remove);
|
|
},
|
|
|
|
render: function() {
|
|
var obj = this.model.toJSON();
|
|
$.extend(obj, {
|
|
group_id: this.group_id,
|
|
is_staff: this.is_staff,
|
|
// for '#groups' (no 'share_from_me')
|
|
share_from_me: app.pageOptions.username == this.model.get('owner') ? true : false,
|
|
// 'owner_name' for '#groups', 'owner_nickname' for '#group/id/'
|
|
owner_name: this.model.get('owner_nickname') || this.model.get('owner_name'),
|
|
show_shared_by: this.show_shared_by
|
|
});
|
|
this.$el.html(this.template(obj));
|
|
return this;
|
|
},
|
|
|
|
highlight: function() {
|
|
this.$el.addClass('hl').find('.op-icon').removeClass('vh');
|
|
},
|
|
|
|
rmHighlight: function() {
|
|
this.$el.removeClass('hl').find('.op-icon').addClass('vh');
|
|
},
|
|
|
|
unshare: function() {
|
|
var lib_name = this.model.get('name');
|
|
this.model.destroy({
|
|
wait: true,
|
|
success: function() {
|
|
var msg = gettext('Successfully unshared {placeholder}').replace('{placeholder}', '<span class="op-target">' + Common.HTMLescape(lib_name) + '</span>');
|
|
Common.feedback(msg, 'success', Common.SUCCESS_TIMOUT);
|
|
},
|
|
error: function(model, response) {
|
|
var err;
|
|
if (response.responseText) {
|
|
err = $.parseJSON(response.responseText).error_msg;
|
|
} else {
|
|
err = gettext("Failed. Please check the network.");
|
|
}
|
|
Common.feedback(err, 'error');
|
|
}
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
return GroupRepoView;
|
|
});
|