Skip to content

Commit

Permalink
Fix several issues around browser back navigation (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker authored Sep 15, 2024
1 parent 74e65bc commit db225d5
Show file tree
Hide file tree
Showing 10 changed files with 64 additions and 23 deletions.
9 changes: 7 additions & 2 deletions bookmarks/frontend/behaviors/bulk-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@ class BulkEdit extends Behavior {
constructor(element) {
super(element);

this.active = false;
this.active = element.classList.contains("active");

this.init = this.init.bind(this);
this.onToggleActive = this.onToggleActive.bind(this);
this.onToggleAll = this.onToggleAll.bind(this);
this.onToggleBookmark = this.onToggleBookmark.bind(this);
this.onActionSelected = this.onActionSelected.bind(this);

this.init();
// Reset when bookmarks are refreshed
document.addEventListener("refresh-bookmark-list-done", () => this.init());
document.addEventListener("refresh-bookmark-list-done", this.init);
}

destroy() {
document.removeEventListener("refresh-bookmark-list-done", this.init);
}

init() {
Expand Down
10 changes: 8 additions & 2 deletions bookmarks/frontend/behaviors/confirm-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ class ConfirmButtonBehavior extends Behavior {
}

destroy() {
Behavior.interacting = false;
this.reset();
this.element.setAttribute("type", this.element.dataset.type);
this.element.setAttribute("name", this.element.dataset.name);
this.element.setAttribute("value", this.element.dataset.value);
}

onClick(event) {
Expand Down Expand Up @@ -70,7 +73,10 @@ class ConfirmButtonBehavior extends Behavior {
reset() {
setTimeout(() => {
Behavior.interacting = false;
this.container.remove();
if (this.container) {
this.container.remove();
this.container = null;
}
this.element.classList.remove("d-none");
});
}
Expand Down
4 changes: 4 additions & 0 deletions bookmarks/frontend/behaviors/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ class DropdownBehavior extends Behavior {
});
}

destroy() {
this.close();
}

open() {
this.element.classList.add("active");
document.addEventListener("click", this.onOutsideClick);
Expand Down
7 changes: 6 additions & 1 deletion bookmarks/frontend/behaviors/global-shortcuts.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ class GlobalShortcuts extends Behavior {
constructor(element) {
super(element);

document.addEventListener("keydown", this.onKeyDown.bind(this));
this.onKeyDown = this.onKeyDown.bind(this);
document.addEventListener("keydown", this.onKeyDown);
}

destroy() {
document.removeEventListener("keydown", this.onKeyDown);
}

onKeyDown(event) {
Expand Down
6 changes: 5 additions & 1 deletion bookmarks/frontend/behaviors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const mutationObserver = new MutationObserver((mutations) => {
});
});

window.addEventListener("turbo:load", () => {
document.addEventListener("turbo:load", () => {
mutationObserver.observe(document.body, {
childList: true,
subtree: true,
Expand All @@ -25,6 +25,10 @@ window.addEventListener("turbo:load", () => {
applyBehaviors(document.body);
});

document.addEventListener("turbo:before-cache", () => {
destroyBehaviors(document.body);
});

export class Behavior {
constructor(element) {
this.element = element;
Expand Down
28 changes: 20 additions & 8 deletions bookmarks/frontend/behaviors/tag-autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,35 @@ import { ApiClient } from "../api";
class TagAutocomplete extends Behavior {
constructor(element) {
super(element);
const wrapper = document.createElement("div");
const input = element.querySelector("input");
if (!input) {
console.warning("TagAutocomplete: input element not found");
return;
}

const container = document.createElement("div");
const apiBaseUrl = document.documentElement.dataset.apiBaseUrl || "";
const apiClient = new ApiClient(apiBaseUrl);

new TagAutoCompleteComponent({
target: wrapper,
target: container,
props: {
id: element.id,
name: element.name,
value: element.value,
placeholder: element.getAttribute("placeholder") || "",
id: input.id,
name: input.name,
value: input.value,
placeholder: input.getAttribute("placeholder") || "",
apiClient: apiClient,
variant: element.getAttribute("variant"),
variant: input.getAttribute("variant"),
},
});

element.replaceWith(wrapper.firstElementChild);
this.input = input;
this.autocomplete = container.firstElementChild;
input.replaceWith(this.autocomplete);
}

destroy() {
this.autocomplete.replaceWith(this.input);
}
}

Expand Down
5 changes: 2 additions & 3 deletions bookmarks/templates/bookmarks/bulk_edit/bar.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
<option value="bulk_unshare">Unshare</option>
{% endif %}
</select>
<div class="tag-autocomplete d-none">
<input ld-tag-autocomplete variant="small"
name="bulk_tag_string" class="form-input input-sm" placeholder="Tag names...">
<div class="tag-autocomplete d-none" ld-tag-autocomplete>
<input name="bulk_tag_string" class="form-input input-sm" placeholder="Tag names..." variant="small">
</div>
<button ld-confirm-button type="submit" name="bulk_execute" class="btn btn-link btn-sm">
<span>Execute</span>
Expand Down
4 changes: 2 additions & 2 deletions bookmarks/templates/bookmarks/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
The form has been pre-filled with the existing bookmark, and saving the form will update the existing bookmark.
</div>
</div>
<div class="form-group">
<div class="form-group" ld-tag-autocomplete>
<label for="{{ form.tag_string.id_for_label }}" class="form-label">Tags</label>
{{ form.tag_string|add_class:"form-input"|attr:"ld-tag-autocomplete"|attr:"autocomplete:off"|attr:"autocapitalize:off" }}
{{ form.tag_string|add_class:"form-input"|attr:"autocomplete:off"|attr:"autocapitalize:off" }}
<div class="form-input-hint">
Enter any number of tags separated by space and <strong>without</strong> the hash (#).
If a tag does not exist it will be automatically created.
Expand Down
12 changes: 9 additions & 3 deletions bookmarks/templates/bookmarks/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@
}
const apiClient = new linkding.ApiClient('{% url 'bookmarks:api-root' %}')
const input = document.querySelector('#search input[name="q"]')
const wrapper = document.createElement('div')
const container = document.createElement('div')
new linkding.SearchAutoComplete({
target: wrapper,
target: container,
props: {
name: 'q',
placeholder: 'Search for words or #tags',
Expand All @@ -103,6 +103,12 @@
search,
}
})
input.replaceWith(wrapper.firstElementChild);

const autoComplete = container.firstElementChild;
input.replaceWith(autoComplete);

document.addEventListener("turbo:before-cache", () => {
autoComplete.replaceWith(input);
}, {once: true});
})();
</script>
2 changes: 1 addition & 1 deletion bookmarks/tests/test_bookmark_edit_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_should_prefill_bookmark_form_fields(self):
tag_string = build_tag_string(bookmark.tag_names, " ")
self.assertInHTML(
f"""
<input ld-tag-autocomplete type="text" name="tag_string" value="{tag_string}"
<input type="text" name="tag_string" value="{tag_string}"
autocomplete="off" autocapitalize="off" class="form-input" id="id_tag_string">
""",
html,
Expand Down

0 comments on commit db225d5

Please sign in to comment.