Fixed view collection link
This commit is contained in:
parent
7292ce0add
commit
d162946f07
@ -27,7 +27,7 @@ component AnimeListItem(viewUser *arn.User, item *arn.AnimeListItem, anime *arn.
|
|||||||
InputTextArea("Notes", item.Notes, "Notes", "Your notes")
|
InputTextArea("Notes", item.Notes, "Notes", "Your notes")
|
||||||
|
|
||||||
.buttons.mountable
|
.buttons.mountable
|
||||||
a.ajax.button(href="/animelist/" + item.Status)
|
a.ajax.button(href="/+" + viewUser.Nick + "/animelist/" + item.Status)
|
||||||
Icon("list")
|
Icon("list")
|
||||||
span View collection
|
span View collection
|
||||||
a.ajax.button(href=anime.Link())
|
a.ajax.button(href=anime.Link())
|
||||||
|
@ -22,12 +22,16 @@ export async function addAnimeToCollection(arn: AnimeNotifier, button: HTMLButto
|
|||||||
|
|
||||||
// Remove anime from collection
|
// Remove anime from collection
|
||||||
export function removeAnimeFromCollection(arn: AnimeNotifier, button: HTMLElement) {
|
export function removeAnimeFromCollection(arn: AnimeNotifier, button: HTMLElement) {
|
||||||
|
if(!confirm("Are you sure you want to remove it from your collection?")) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
button.innerText = "Removing..."
|
button.innerText = "Removing..."
|
||||||
|
|
||||||
let {animeId, nick} = button.dataset
|
let {animeId, nick} = button.dataset
|
||||||
let apiEndpoint = arn.findAPIEndpoint(button)
|
let apiEndpoint = arn.findAPIEndpoint(button)
|
||||||
|
|
||||||
arn.post(apiEndpoint + "/remove/" + animeId, "")
|
arn.post(apiEndpoint + "/remove/" + animeId, "")
|
||||||
.then(() => arn.app.load("/animelist/" + (arn.app.find("Status") as HTMLSelectElement).value))
|
.then(() => arn.app.load(`/+${nick}/animelist/` + (arn.app.find("Status") as HTMLSelectElement).value))
|
||||||
.catch(err => arn.statusMessage.showError(err))
|
.catch(err => arn.statusMessage.showError(err))
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user