1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-18 16:36:15 +00:00

new activity page

This commit is contained in:
lian
2015-07-24 11:37:57 +08:00
parent fa177dd150
commit dfc7f1856f
13 changed files with 340 additions and 8 deletions

View File

@@ -0,0 +1,62 @@
define([
'jquery',
'underscore',
'backbone',
'common',
'app/views/details-item'
], function($, _, Backbone, Common, DetailsItemView) {
'use strict';
var DetailsView = Backbone.View.extend({
id: 'ls-ch',
template: _.template($('#details-popup-tmpl').html()),
initialize: function (options) {
this.repo_id = options['repo_id'];
this.cmmt_id = options['cmmt_id'];
this.$el.html(this.template()).modal({autoResize:true});
$('#simplemodal-container').css({'width':'auto', 'height':'auto'});
this.getDetails();
},
getDetails: function () {
var repo_id = this.repo_id,
cmmt_id = this.cmmt_id,
details_title,
_this = this;
Common.ajaxGet({
get_url: Common.getUrl({ name:'get_history_changes', repo_id: repo_id}),
data: {'commit_id': cmmt_id},
after_op_success: function (data) {
_this.$('.loading-tip').hide();
_this.$('.commit-time').html(data['date_time']);
for (var item in data) {
if (data[item].length > 0 && item != 'date_time') {
if (item == "new") { details_title = gettext("New files") }
if (item == "removed") { details_title = gettext("Deleted files") }
if (item == "renamed") { details_title = gettext("Renamed or Moved files") }
if (item == "modified") { details_title = gettext("Modified files") }
if (item == "newdir") { details_title = gettext("New directories") }
if (item == "deldir") { details_title = gettext("Deleted directories") }
var view = new DetailsItemView({details_title: details_title, details: data[item]});
_this.$el.append(view.render().el);
}
}
$(window).resize();
},
after_op_error: function(xhr) {
Common.ajaxErrorHandler(xhr);
}
});
}
});
return DetailsView;
})