1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 17:02:15 +00:00
seahub/static/scripts/app/views/dirent-grid.js

159 lines
5.6 KiB
JavaScript
Raw Normal View History

2016-01-31 14:06:40 +00:00
define([
'jquery',
'underscore',
'backbone',
'common',
'file-tree',
'app/views/share',
'app/views/folder-perm'
], function($, _, Backbone, Common, FileTree, ShareView, FolderPermView) {
'use strict';
app = app || {};
app.globalState = app.globalState || {};
var DirentGridView = Backbone.View.extend({
tagName: 'li',
className: 'grid-item',
dirTemplate: _.template($('#grid-view-dir-item-tmpl').html()),
2016-02-22 14:32:52 +00:00
dirOpTemplate: _.template($('#grid-view-dir-op-tmpl').html()),
2016-01-31 14:06:40 +00:00
fileTemplate: _.template($('#grid-view-file-item-tmpl').html()),
2016-02-22 14:32:52 +00:00
fileOpTemplate: _.template($('#grid-view-file-op-tmpl').html()),
2016-01-31 14:06:40 +00:00
// renameTemplate: _.template($("#grid-rename-form-template").html()),
// mvcpTemplate: _.template($("#mvcp-form-template").html()),
// mvProgressTemplate: _.template($("#mv-progress-popup-template").html()),
initialize: function(options) {
this.dirView = options.dirView;
this.dir = this.dirView.dir;
this.listenTo(this.model, "change", this.render);
this.listenTo(this.model, 'remove', this.remove); // for multi dirents: delete, mv
},
render: function() {
var dir = this.dir;
var dirent_path = Common.pathJoin([dir.path, this.model.get('obj_name')]);
var url;
var template;
if (this.model.get('is_dir')) {
template = this.dirTemplate;
if (dir.category) {
url = "#" + dir.category + "/lib/" + dir.repo_id + Common.encodePath(dirent_path);
} else {
url = "#lib/" + dir.repo_id + Common.encodePath(dirent_path);
}
} else {
template = this.fileTemplate;
url = "/lib/" + dir.repo_id + "/file" + Common.encodePath(dirent_path);
}
this.$el.html(template({
dirent: this.model.attributes,
dirent_path: dirent_path,
url: url,
category: dir.category,
repo_id: dir.repo_id,
is_repo_owner: dir.is_repo_owner,
can_generate_shared_link: app.pageOptions.can_generate_shared_link,
2016-02-22 14:32:52 +00:00
is_pro: app.pageOptions.is_pro,
2016-01-31 14:06:40 +00:00
repo_encrypted: dir.encrypted
}));
this.$('.file-locked-icon').attr('title', gettext("locked by {placeholder}").replace('{placeholder}', this.model.get('lock_owner_name')));
return this;
},
events: {
'mouseenter': 'highlight',
'mouseleave': 'rmHighlight',
2016-02-22 14:32:52 +00:00
'mousedown .img-link': 'showPopupMenu',
'mousedown .text-link': 'showPopupMenu'
/*
2016-01-31 14:06:40 +00:00
'click .dir-link': 'visitDir',
'click .share': 'share',
'click .delete': 'del', // 'delete' is a preserve word
'click .rename': 'rename',
'click .mv': 'mvcp',
'click .cp': 'mvcp',
'click .set-folder-permission': 'setFolderPerm',
'click .lock-file': 'lockFile',
'click .unlock-file': 'unlockFile'
2016-02-22 14:32:52 +00:00
*/
2016-01-31 14:06:40 +00:00
},
highlight: function() {
this.$('.img-link').addClass('hl');
this.$('.text-link').addClass('hl');
/*
if (!$('.grid-hidden-op:visible').length && !$('#grid-rename-form').length) {
this.$('.grid-img-inner-container').addClass('hl');
}
*/
},
rmHighlight: function() {
this.$('.img-link').removeClass('hl');
this.$('.text-link').removeClass('hl');
/*
if (!$('.grid-hidden-op:visible').length && !$('#grid-rename-form').length) {
this.$('.grid-img-inner-container').removeClass('hl');
}
*/
},
showPopupMenu: function(e) {
e = e || window.event;
2016-02-22 14:32:52 +00:00
var dir = this.dir;
var dirent_path = Common.pathJoin([dir.path, this.model.get('obj_name')]);
var url;
var template;
2016-01-31 14:06:40 +00:00
2016-02-22 14:32:52 +00:00
if (this.model.get('is_dir')) {
template = this.dirOpTemplate;
if (dir.category) {
url = "#" + dir.category + "/lib/" + dir.repo_id + Common.encodePath(dirent_path);
2016-01-31 14:06:40 +00:00
} else {
2016-02-22 14:32:52 +00:00
url = "#lib/" + dir.repo_id + Common.encodePath(dirent_path);
2016-01-31 14:06:40 +00:00
}
2016-02-22 14:32:52 +00:00
} else {
template = this.fileOpTemplate;
url = "/lib/" + dir.repo_id + "/file" + Common.encodePath(dirent_path) + "?dl=1";
2016-01-31 14:06:40 +00:00
}
2016-02-22 14:32:52 +00:00
this.$('.img-link').addClass('hl');
this.$('.text-link').addClass('hl');
2016-01-31 14:06:40 +00:00
2016-02-22 14:32:52 +00:00
if (e.which == 3) {
var op = template({
dirent: this.model.attributes,
dirent_path: dirent_path,
url: url,
category: dir.category,
repo_id: dir.repo_id,
is_repo_owner: dir.is_repo_owner,
can_generate_shared_link: app.pageOptions.can_generate_shared_link,
is_pro: app.pageOptions.is_pro,
repo_encrypted: dir.encrypted
2016-01-31 14:06:40 +00:00
});
2016-02-22 14:32:52 +00:00
this.$el.append(op);
this.$('.grid-item-op').css({
'left': '100px',
'top': '100px',
2016-01-31 14:06:40 +00:00
});
2016-02-22 14:32:52 +00:00
// TODO: bind operations here
2016-01-31 14:06:40 +00:00
return false;
2016-02-22 14:32:52 +00:00
}
2016-01-31 14:06:40 +00:00
}
2016-02-22 14:32:52 +00:00
2016-01-31 14:06:40 +00:00
});
return DirentGridView;
});