flicker-free permission change in share dialog

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2016-11-29 12:51:37 +01:00 committed by Bjoern Schiessle
parent 74d1b0bada
commit 2514176e41
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
2 changed files with 131 additions and 62 deletions

View File

@ -35,47 +35,7 @@
'{{/unless}}' + '{{/unless}}' +
'{{/if}}' + '{{/if}}' +
'<a href="#"><span class="icon icon-more"></span></a>' + '<a href="#"><span class="icon icon-more"></span></a>' +
'<div class="popovermenu bubble hidden menu">' + '{{{popoverMenu}}}' +
'<ul>' +
'{{#if isResharingAllowed}} {{#if sharePermissionPossible}} {{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canShare-{{cid}}-{{shareWith}}" type="checkbox" name="share" class="permissions checkbox" {{#if hasSharePermission}}checked="checked"{{/if}} data-permissions="{{sharePermission}}" />' +
'<label for="canShare-{{cid}}-{{shareWith}}">{{canShareLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}} {{/if}} {{/if}}' +
'{{#if isFolder}}' +
'{{#if createPermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canCreate-{{cid}}-{{shareWith}}" type="checkbox" name="create" class="permissions checkbox" {{#if hasCreatePermission}}checked="checked"{{/if}} data-permissions="{{createPermission}}"/>' +
'<label for="canCreate-{{cid}}-{{shareWith}}">{{createPermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{#if updatePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canUpdate-{{cid}}-{{shareWith}}" type="checkbox" name="update" class="permissions checkbox" {{#if hasUpdatePermission}}checked="checked"{{/if}} data-permissions="{{updatePermission}}"/>' +
'<label for="canUpdate-{{cid}}-{{shareWith}}">{{updatePermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{#if deletePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canDelete-{{cid}}-{{shareWith}}" type="checkbox" name="delete" class="permissions checkbox" {{#if hasDeletePermission}}checked="checked"{{/if}} data-permissions="{{deletePermission}}"/>' +
'<label for="canDelete-{{cid}}-{{shareWith}}">{{deletePermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{/if}}' +
'<li>' +
'<a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span>{{unshareLabel}}</span></a>' +
'</li>' +
'</ul>' +
'</div>' +
'</span>' + '</span>' +
'</li>' + '</li>' +
'{{/each}}' + '{{/each}}' +
@ -94,6 +54,49 @@
'</ul>' '</ul>'
; ;
var TEMPLATE_POPOVER_MENU =
'<div class="popovermenu bubble hidden menu">' +
'<ul>' +
'{{#if isResharingAllowed}} {{#if sharePermissionPossible}} {{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canShare-{{cid}}-{{shareWith}}" type="checkbox" name="share" class="permissions checkbox" {{#if hasSharePermission}}checked="checked"{{/if}} data-permissions="{{sharePermission}}" />' +
'<label for="canShare-{{cid}}-{{shareWith}}">{{canShareLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}} {{/if}} {{/if}}' +
'{{#if isFolder}}' +
'{{#if createPermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canCreate-{{cid}}-{{shareWith}}" type="checkbox" name="create" class="permissions checkbox" {{#if hasCreatePermission}}checked="checked"{{/if}} data-permissions="{{createPermission}}"/>' +
'<label for="canCreate-{{cid}}-{{shareWith}}">{{createPermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{#if updatePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canUpdate-{{cid}}-{{shareWith}}" type="checkbox" name="update" class="permissions checkbox" {{#if hasUpdatePermission}}checked="checked"{{/if}} data-permissions="{{updatePermission}}"/>' +
'<label for="canUpdate-{{cid}}-{{shareWith}}">{{updatePermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{#if deletePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
'<span class="shareOption">' +
'<input id="canDelete-{{cid}}-{{shareWith}}" type="checkbox" name="delete" class="permissions checkbox" {{#if hasDeletePermission}}checked="checked"{{/if}} data-permissions="{{deletePermission}}"/>' +
'<label for="canDelete-{{cid}}-{{shareWith}}">{{deletePermissionLabel}}</label>' +
'</span>' +
'</li>' +
'{{/unless}}{{/if}}' +
'{{/if}}' +
'<li>' +
'<a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span>{{unshareLabel}}</span></a>' +
'</li>' +
'</ul>' +
'</div>';
/** /**
* @class OCA.Share.ShareDialogShareeListView * @class OCA.Share.ShareDialogShareeListView
* @member {OC.Share.ShareItemModel} model * @member {OC.Share.ShareItemModel} model
@ -114,8 +117,14 @@
/** @type {Function} **/ /** @type {Function} **/
_template: undefined, _template: undefined,
/** @type {Function} **/
_popoverMenuTemplate: undefined,
_menuOpen: false, _menuOpen: false,
/** @type {boolean|number} **/
_renderPermissionChange: false,
events: { events: {
'click .unshare': 'onUnshare', 'click .unshare': 'onUnshare',
'click .icon-more': 'onToggleMenu', 'click .icon-more': 'onToggleMenu',
@ -182,8 +191,8 @@
}); });
}, },
getShareeList: function() { getShareProperties: function() {
var universal = { return {
avatarEnabled: this.configModel.areAvatarsEnabled(), avatarEnabled: this.configModel.areAvatarsEnabled(),
unshareLabel: t('core', 'Unshare'), unshareLabel: t('core', 'Unshare'),
canShareLabel: t('core', 'can reshare'), canShareLabel: t('core', 'can reshare'),
@ -205,6 +214,15 @@
deletePermission: OC.PERMISSION_DELETE, deletePermission: OC.PERMISSION_DELETE,
isFolder: this.model.isFolder() isFolder: this.model.isFolder()
}; };
},
/**
* get an array of sharees' share properties
*
* @returns {Array}
*/
getShareeList: function() {
var universal = this.getShareProperties();
if(!this.model.hasUserShares()) { if(!this.model.hasUserShares()) {
return []; return [];
@ -256,29 +274,37 @@
}, },
render: function() { render: function() {
this.$el.html(this.template({ if(!this._renderPermissionChange) {
cid: this.cid, this.$el.html(this.template({
sharees: this.getShareeList(), cid: this.cid,
linkReshares: this.getLinkReshares() sharees: this.getShareeList(),
})); linkReshares: this.getLinkReshares()
}));
if(this.configModel.areAvatarsEnabled()) { if (this.configModel.areAvatarsEnabled()) {
this.$('.avatar').each(function() { this.$('.avatar').each(function () {
var $this = $(this); var $this = $(this);
if ($this.hasClass('imageplaceholderseed')) { if ($this.hasClass('imageplaceholderseed')) {
$this.css({width: 32, height: 32}); $this.css({width: 32, height: 32});
$this.imageplaceholder($this.data('seed')); $this.imageplaceholder($this.data('seed'));
} else { } else {
// user, size, ie8fix, hidedefault, callback, displayname $this.avatar($this.data('username'), 32);
$this.avatar($this.data('username'), 32, undefined, undefined, undefined, $this.data('displayname')); }
} });
}
this.$('.has-tooltip').tooltip({
placement: 'bottom'
}); });
} else {
var permissionChangeShareId = parseInt(this._renderPermissionChange, 10);
var shareWithIndex = this.model.findShareWithIndex(permissionChangeShareId);
var sharee = this.getShareeObject(shareWithIndex);
$.extend(sharee, this.getShareProperties());
var $li = this.$('li[data-share-id=' + permissionChangeShareId + ']');
$li.find('.popovermenu').replaceWith(this.popoverMenuTemplate(sharee));
} }
this.$('.has-tooltip').tooltip({
placement: 'bottom'
});
var _this = this; var _this = this;
this.$('.popovermenu').on('afterHide', function() { this.$('.popovermenu').on('afterHide', function() {
_this._menuOpen = false; _this._menuOpen = false;
@ -292,6 +318,8 @@
} }
} }
this._renderPermissionChange = false;
this.delegateEvents(); this.delegateEvents();
return this; return this;
@ -305,9 +333,28 @@
if (!this._template) { if (!this._template) {
this._template = Handlebars.compile(TEMPLATE); this._template = Handlebars.compile(TEMPLATE);
} }
var sharees = data['sharees'];
if(_.isArray(sharees)) {
for (var i = 0; i < sharees.length; i++) {
data['sharees'][i]['popoverMenu'] = this.popoverMenuTemplate(sharees[i]);
}
}
return this._template(data); return this._template(data);
}, },
/**
* renders the popover template and returns the resulting HTML
*
* @param {Object} data
* @returns {string}
*/
popoverMenuTemplate: function(data) {
if(!this._popoverMenuTemplate) {
this._popoverMenuTemplate = Handlebars.compile(TEMPLATE_POPOVER_MENU);
}
return this._popoverMenuTemplate(data);
},
onUnshare: function(event) { onUnshare: function(event) {
event.preventDefault(); event.preventDefault();
event.stopPropagation(); event.stopPropagation();
@ -386,6 +433,8 @@
}); });
this.model.updateShare(shareId, {permissions: permissions}); this.model.updateShare(shareId, {permissions: permissions});
this._renderPermissionChange = shareId;
}, },
}); });

View File

@ -391,6 +391,26 @@
return share.share_with_displayname; return share.share_with_displayname;
}, },
/**
* returns the array index of a sharee for a provided shareId
*
* @param shareId
* @returns {number}
*/
findShareWithIndex: function(shareId) {
var shares = this.get('shares');
if(!_.isArray(shares)) {
throw "Unknown Share";
}
for(var i = 0; i < shares.length; i++) {
var shareWith = shares[i];
if(shareWith['id'] == shareId) {
return i;
}
}
throw "Unknown Sharee";
},
getShareType: function(shareIndex) { getShareType: function(shareIndex) {
/** @type OC.Share.Types.ShareInfo **/ /** @type OC.Share.Types.ShareInfo **/
var share = this.get('shares')[shareIndex]; var share = this.get('shares')[shareIndex];