diff --git a/app/Http/Controllers/App/BookmarkletController.php b/app/Http/Controllers/App/BookmarkletController.php index fecf7403..ff1880c3 100644 --- a/app/Http/Controllers/App/BookmarkletController.php +++ b/app/Http/Controllers/App/BookmarkletController.php @@ -4,6 +4,8 @@ use App\Http\Controllers\Controller; use App\Models\Link; +use App\Models\LinkList; +use App\Models\Tag; use Illuminate\Contracts\View\View; use Illuminate\Http\Request; use Illuminate\Support\Arr; @@ -41,6 +43,8 @@ public function getLinkAddForm(Request $request) 'bookmark_description' => $newDescription, 'bookmark_tags' => $this->prepareTaxonomyEntries($newTags), 'bookmark_lists' => $this->prepareTaxonomyEntries($newLists), + 'all_tags' => Tag::visibleForUser()->get(['name', 'id']), + 'all_lists' => LinkList::visibleForUser()->get(['name', 'id']), ]); } diff --git a/app/Http/Controllers/Models/LinkController.php b/app/Http/Controllers/Models/LinkController.php index d0802438..18238674 100644 --- a/app/Http/Controllers/Models/LinkController.php +++ b/app/Http/Controllers/Models/LinkController.php @@ -10,6 +10,8 @@ use App\Http\Requests\Models\LinkUpdateRequest; use App\Http\Requests\Models\ToggleLinkCheckRequest; use App\Models\Link; +use App\Models\LinkList; +use App\Models\Tag; use App\Repositories\LinkRepository; use Illuminate\Contracts\View\View; use Illuminate\Http\RedirectResponse; @@ -64,6 +66,8 @@ public function create(): View return view('models.links.create', [ 'pageTitle' => trans('link.add'), 'existing_link' => null, + 'all_tags' => Tag::visibleForUser()->get(['name', 'id']), + 'all_lists' => LinkList::visibleForUser()->get(['name', 'id']), ]); } diff --git a/resources/assets/js/components/TagsSelect.js b/resources/assets/js/components/TagsSelect.js index e5abcebe..69d5fa67 100644 --- a/resources/assets/js/components/TagsSelect.js +++ b/resources/assets/js/components/TagsSelect.js @@ -30,14 +30,11 @@ export default class TagsSelect { valueField: 'id', labelField: 'name', searchField: 'name', - maxOptions: null, + maxOptions: 100000, onItemAdd: function () { this.setTextboxValue(''); this.refreshOptions(); }, - load: (query, callback) => { - this.handleTagLoading(query, callback); - }, render: { option: function (item, escape) { return selectObject.renderItem(item, escape); @@ -48,9 +45,12 @@ export default class TagsSelect { } }; + if (this.$el.dataset.tagData) { + this.config['options'] = JSON.parse(this.$el.dataset.tagData); + } + if (typeof this.$el.dataset.value !== 'undefined' && this.$el.dataset.value !== '') { - this.config['options'] = JSON.parse(this.$el.dataset.value); - this.config['items'] = this.config['options'].map((item) => item.id); + this.config['items'] = JSON.parse(this.$el.dataset.value).map((item) => item.id); } this.select = new TomSelect(this.$el, this.config); @@ -65,32 +65,6 @@ export default class TagsSelect { return typeof this.$el.dataset.allowCreation !== 'undefined'; } - handleTagLoading (query, callback) { - if (!query.length) return callback(); - - fetch(this.getFetchUrl(), { - method: 'POST', - credentials: 'same-origin', - headers: {'Content-Type': 'application/json'}, - body: JSON.stringify({ - _token: window.appData.user.token, - query: query - }) - }).then((response) => { - return response.json(); - }).then((results) => { - callback(results); - }).catch(() => { - callback(); - }); - } - - getFetchUrl () { - return this.type === 'tags' - ? window.appData.routes.fetch.searchTags - : window.appData.routes.fetch.searchLists; - } - displayNewSuggestions (tags) { if (typeof tags !== 'object' || tags.length === 0) { return; diff --git a/resources/views/models/links/partials/create-form.blade.php b/resources/views/models/links/partials/create-form.blade.php index 0ce6d5be..f6f96479 100644 --- a/resources/views/models/links/partials/create-form.blade.php +++ b/resources/views/models/links/partials/create-form.blade.php @@ -60,7 +60,7 @@ class="form-control{{ $errors->has('title') ? ' is-invalid' : '' }}"
@@ -74,7 +74,7 @@ class="tag-select"