e2549fa660
Tab heads are not rendered if only one tab. The tab contents is updated on-demand. This means that if a tab is not visible it is not rendered at first. If the tab was already rendered through switching, its model will not get updated until the next time it becomes visible. This will prevent needless rerendering of invisible tab contents, especially considering that some tabs might need extra ajax requests.
57 lines
1 KiB
JavaScript
57 lines
1 KiB
JavaScript
/*
|
|
* Copyright (c) 2015
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3
|
|
* or later.
|
|
*
|
|
* See the COPYING-README file.
|
|
*
|
|
*/
|
|
|
|
(function() {
|
|
var TEMPLATE =
|
|
'<div><ul>{{#if owner}}<li>Owner: {{owner}}</li>{{/if}}</ul></div>';
|
|
|
|
/**
|
|
* @memberof OCA.Sharing
|
|
*/
|
|
var ShareTabView = OCA.Files.DetailTabView.extend(
|
|
/** @lends OCA.Sharing.ShareTabView.prototype */ {
|
|
id: 'shareTabView',
|
|
className: 'tab shareTabView',
|
|
|
|
_template: null,
|
|
|
|
getLabel: function() {
|
|
return t('files_sharing', 'Sharing');
|
|
},
|
|
|
|
/**
|
|
* Renders this details view
|
|
*/
|
|
render: function() {
|
|
this.$el.empty();
|
|
|
|
if (!this._template) {
|
|
this._template = Handlebars.compile(TEMPLATE);
|
|
}
|
|
|
|
if (this.model) {
|
|
console.log(this.model);
|
|
var owner = this.model.get('shareOwner');
|
|
if (owner === OC.currentUser) {
|
|
owner = null;
|
|
}
|
|
this.$el.append(this._template({
|
|
owner: owner
|
|
}));
|
|
|
|
} else {
|
|
// TODO: render placeholder text?
|
|
}
|
|
}
|
|
});
|
|
|
|
OCA.Sharing.ShareTabView = ShareTabView;
|
|
})();
|
|
|