diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-09-05 02:02:55 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-16 07:23:27 +0200 |
commit | 258a2e2696c0c2a1e784fe27cbd8ca9a4dc8b8ca (patch) | |
tree | 158797333115ab4ed60ea876ade7a3f06b69a8e2 /core/js/sharedialogview.js | |
parent | 858a2a4e6c42f8cc68212439930c16029a6bba36 (diff) | |
download | nextcloud-server-258a2e2696c0c2a1e784fe27cbd8ca9a4dc8b8ca.tar.gz nextcloud-server-258a2e2696c0c2a1e784fe27cbd8ca9a4dc8b8ca.zip |
now you even can share
Diffstat (limited to 'core/js/sharedialogview.js')
-rw-r--r-- | core/js/sharedialogview.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js index 12e682a3b82..e3da0384fa4 100644 --- a/core/js/sharedialogview.js +++ b/core/js/sharedialogview.js @@ -100,6 +100,36 @@ ? new OC.Share[className](subViewOptions) : options[name]; } + + _.bindAll(this, 'autocompleteHandler'); + }, + + autocompleteHandler: function (search, response) { + var view = this; + var $loading = this.$el.find('.shareWithLoading'); + $loading.removeClass('hidden'); + $loading.addClass('inlineblock'); + $.get(OC.filePath('core', 'ajax', 'share.php'), { + fetch: 'getShareWith', + search: search.term.trim(), + limit: 200, + itemShares: OC.Share.itemShares, + itemType: view.model.get('itemType') + }, function (result) { + $loading.addClass('hidden'); + $loading.removeClass('inlineblock'); + if (result.status == 'success' && result.data.length > 0) { + $("#shareWith").autocomplete("option", "autoFocus", true); + response(result.data); + } else { + response(); + } + }).fail(function () { + $loading.addClass('hidden'); + $loading.removeClass('inlineblock'); + OC.Notification.show(t('core', 'An error occured. Please try again')); + window.setTimeout(OC.Notification.hide, 5000); + }); }, render: function() { @@ -111,6 +141,22 @@ remoteShareInfo: this._renderRemoteShareInfoPart(), })); + var view = this; + this.$el.find('#shareWith').autocomplete({ + minLength: 2, + delay: 750, + source: this.autocompleteHandler, + select: function(e, s) { + var expiration = ''; + if($('#expirationCheckbox').is(':checked') === true) { + expiration = view.$el.find('#expirationDate').val() + } + view.model.addShare(e, s, { + expiration: expiration + }); + } + }); + this.resharerInfoView.$el = this.$el.find('.resharerInfoView'); this.resharerInfoView.render(); |