Fix duplicate bogus share field when link sharing is not allowed
Whenever link share is not allowed, it was outputting a bogus sharing field which name would conflict with the regular sharing field. This fix makes sure that the bogus sharing field with "Resharing not allowed" message only appears when triggered by removed share permissions.
This commit is contained in:
parent
e4c5bf790d
commit
6735005be0
|
@ -48,7 +48,7 @@
|
|||
' {{/if}}' +
|
||||
'{{else}}' +
|
||||
// FIXME: this doesn't belong in this view
|
||||
'<input id="shareWith-{{cid}}" class="shareWithField" type="text" placeholder="{{noSharingPlaceholder}}" disabled="disabled"/>' +
|
||||
'{{#if noSharingPlaceholder}}<input id="shareWith-{{cid}}" class="shareWithField" type="text" placeholder="{{noSharingPlaceholder}}" disabled="disabled"/>{{/if}}' +
|
||||
'{{/if}}'
|
||||
;
|
||||
|
||||
|
@ -238,15 +238,18 @@
|
|||
|
||||
render: function() {
|
||||
var linkShareTemplate = this.template();
|
||||
var resharingAllowed = this.model.sharePermissionPossible();
|
||||
|
||||
if( !this.model.sharePermissionPossible()
|
||||
if(!resharingAllowed
|
||||
|| !this.showLink
|
||||
|| !this.configModel.isShareWithLinkAllowed())
|
||||
{
|
||||
this.$el.html(linkShareTemplate({
|
||||
shareAllowed: false,
|
||||
noSharingPlaceholder: t('core', 'Resharing is not allowed')
|
||||
}));
|
||||
var templateData = {shareAllowed: false};
|
||||
if (!resharingAllowed) {
|
||||
// add message
|
||||
templateData.noSharingPlaceholder = t('core', 'Resharing is not allowed');
|
||||
}
|
||||
this.$el.html(linkShareTemplate(templateData));
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
|
@ -218,6 +218,7 @@ describe('OC.Share.ShareDialogView', function() {
|
|||
dialog.render();
|
||||
|
||||
expect(dialog.$el.find('.linkCheckbox').length).toEqual(0);
|
||||
expect(dialog.$el.find('.shareWithField').length).toEqual(1);
|
||||
});
|
||||
it('shows populated link share when a link share exists', function() {
|
||||
// this is how the OC.Share class does it...
|
||||
|
|
Loading…
Reference in New Issue