diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-10-04 12:56:04 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-07 14:58:45 +0100 |
commit | c5597baf88c3f7bcea9c03a3fa35e1dc81e12bd5 (patch) | |
tree | b2d88ae33f7e99207913afd71dfdc9851485f8b5 /apps/files_sharing/js | |
parent | 1857e50259e3cedffd9d9c24ce2a47bf08ebf782 (diff) | |
download | nextcloud-server-c5597baf88c3f7bcea9c03a3fa35e1dc81e12bd5.tar.gz nextcloud-server-c5597baf88c3f7bcea9c03a3fa35e1dc81e12bd5.zip |
show whether the current folder was shared or not
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/share.js | 3 | ||||
-rw-r--r-- | apps/files_sharing/js/sharebreadcrumbview.js | 56 |
2 files changed, 59 insertions, 0 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 64fc7ef7296..7629124ec44 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -185,6 +185,9 @@ } }); fileList.registerTabView(shareTab); + + var breadCrumbSharingDetailView = new OCA.Sharing.ShareBreadCrumbView(); + fileList.registerBreadCrumbDetailView(breadCrumbSharingDetailView); }, /** diff --git a/apps/files_sharing/js/sharebreadcrumbview.js b/apps/files_sharing/js/sharebreadcrumbview.js new file mode 100644 index 00000000000..c469fd252aa --- /dev/null +++ b/apps/files_sharing/js/sharebreadcrumbview.js @@ -0,0 +1,56 @@ +/* global Handlebars, OC */ + +/** + * @copyright 2016 Christoph Wurst <christoph@winzerhof-wurst.at> + * + * @author 2016 Christoph Wurst <christoph@winzerhof-wurst.at> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +(function() { + 'use strict'; + + var TEMPLATE = '{{#if isShared}}' + + 'Shared!' + + '{{else}}' + + 'Not shared!' + + '{{/if}}'; + + var BreadCrumbView = OC.Backbone.View.extend({ + tagName: 'span', + _template: undefined, + template: function(data) { + if (!this._template) { + this._template = Handlebars.compile(TEMPLATE); + } + return this._template(data); + }, + render: function(data) { + var isShared = data.dirInfo && data.dirInfo.shareTypes && data.dirInfo.shareTypes.length > 0; + + this.$el.html(this.template({ + isShared: isShared + })); + + return this; + } + }); + + OCA.Sharing.ShareBreadCrumbView = BreadCrumbView; +})(); + |