178 lines
4.2 KiB
TypeScript
Raw Normal View History

2018-04-02 05:34:16 +00:00
import AnimeNotifier from "../AnimeNotifier"
2017-10-17 09:27:15 +00:00
// Edit post
2019-04-22 09:06:50 +00:00
export function editPost(_: AnimeNotifier, element: HTMLElement) {
2017-10-17 09:27:15 +00:00
let postId = element.dataset.id
2019-04-22 06:02:51 +00:00
if(!postId) {
console.error("Post missing post ID:", postId)
return
}
let render = document.getElementById("render-" + postId) as HTMLElement
let source = document.getElementById("source-" + postId) as HTMLElement
let edit = document.getElementById("edit-toolbar-" + postId) as HTMLElement
2017-10-17 09:27:15 +00:00
render.classList.toggle("hidden")
source.classList.toggle("hidden")
edit.classList.toggle("hidden")
2019-04-22 06:02:51 +00:00
let title = document.getElementById("title-" + postId)
2017-10-17 09:27:15 +00:00
if(title) {
title.classList.toggle("hidden")
}
}
// Save post
2019-04-22 06:02:51 +00:00
export async function savePost(arn: AnimeNotifier, element: HTMLElement) {
2017-10-17 09:27:15 +00:00
let postId = element.dataset.id
2018-04-02 05:44:11 +00:00
let source = document.getElementById("source-" + postId) as HTMLTextAreaElement
let title = document.getElementById("title-" + postId) as HTMLInputElement
2017-10-17 09:27:15 +00:00
let text = source.value
let updates: any = {
Text: text,
}
// Add title for threads only
if(title) {
updates.Title = title.value
}
let apiEndpoint = arn.findAPIEndpoint(element)
2019-04-22 06:02:51 +00:00
try {
await arn.post(apiEndpoint, updates)
arn.reloadContent()
} catch(err) {
arn.statusMessage.showError(err)
}
2017-10-17 09:27:15 +00:00
}
2017-11-25 14:26:56 +00:00
// Delete post
2019-04-22 06:02:51 +00:00
export async function deletePost(arn: AnimeNotifier, element: HTMLElement) {
2017-11-25 14:26:56 +00:00
if(!confirm(`Are you sure you want to delete this Post?`)) {
return
}
let endpoint = arn.findAPIEndpoint(element)
2019-04-22 06:02:51 +00:00
try {
await arn.post(endpoint + "/delete")
arn.reloadContent()
} catch(err) {
arn.statusMessage.showError(err)
}
}
2018-10-29 02:30:23 +00:00
// Create post
2019-04-22 06:02:51 +00:00
export async function createPost(arn: AnimeNotifier, element: HTMLElement) {
2018-11-05 11:57:37 +00:00
let textarea = document.getElementById("new-post-text") as HTMLTextAreaElement
2018-10-29 02:30:23 +00:00
let {parentId, parentType} = element.dataset
2017-10-17 09:27:15 +00:00
let post = {
text: textarea.value,
2018-10-29 02:30:23 +00:00
parentId,
parentType,
2017-10-17 09:27:15 +00:00
tags: []
}
2019-04-22 06:02:51 +00:00
try {
await arn.post("/api/new/post", post)
await arn.reloadContent()
textarea.value = ""
} catch(err) {
arn.statusMessage.showError(err)
}
2017-10-17 09:27:15 +00:00
}
// Create thread
2019-04-22 06:02:51 +00:00
export async function createThread(arn: AnimeNotifier) {
2018-04-02 05:44:11 +00:00
let title = document.getElementById("title") as HTMLInputElement
let text = document.getElementById("text") as HTMLTextAreaElement
let category = document.getElementById("tag") as HTMLInputElement
2017-10-17 09:27:15 +00:00
let thread = {
title: title.value,
text: text.value,
tags: [category.value]
}
2019-04-22 06:02:51 +00:00
try {
await arn.post("/api/new/thread", thread)
await arn.app.load("/forum/" + thread.tags[0])
} catch(err) {
arn.statusMessage.showError(err)
}
2018-04-25 16:59:23 +00:00
}
2018-11-05 10:05:36 +00:00
// Reply to a post
2018-11-05 11:57:37 +00:00
export async function reply(arn: AnimeNotifier, element: HTMLElement) {
let apiEndpoint = arn.findAPIEndpoint(element)
let repliesId = `replies-${element.dataset.postId}`
let replies = document.getElementById(repliesId)
2019-04-22 06:02:51 +00:00
if(!replies) {
console.error("Missing replies container:", element)
return
}
2018-11-05 11:57:37 +00:00
// Delete old reply area
let oldReplyArea = document.getElementById("new-post")
if(oldReplyArea) {
oldReplyArea.remove()
}
// Delete old reply button
2018-11-15 11:19:40 +00:00
let oldPostActions = document.getElementsByClassName("new-post-actions")[0]
2018-11-05 11:57:37 +00:00
if(oldPostActions) {
oldPostActions.remove()
}
// Fetch new reply UI
try {
let response = await fetch(`${apiEndpoint}/reply/ui`)
let html = await response.text()
replies.innerHTML = html + replies.innerHTML
arn.onNewContent(replies)
arn.assignActions()
} catch(err) {
arn.statusMessage.showError(err)
}
}
2018-11-05 10:05:36 +00:00
2018-11-05 11:57:37 +00:00
// Cancel replying to a post
2019-04-22 09:06:50 +00:00
export function cancelReply(arn: AnimeNotifier, _: HTMLElement) {
2018-11-05 11:57:37 +00:00
arn.reloadContent()
2018-11-05 10:05:36 +00:00
}
2018-04-25 16:59:23 +00:00
// Lock thread
export function lockThread(arn: AnimeNotifier, element: HTMLButtonElement) {
2019-04-22 06:02:51 +00:00
return setThreadLock(arn, element, true)
2018-04-25 16:59:23 +00:00
}
// Unlock thread
export function unlockThread(arn: AnimeNotifier, element: HTMLButtonElement) {
2019-04-22 06:02:51 +00:00
return setThreadLock(arn, element, false)
2018-04-25 16:59:23 +00:00
}
// Set thread locked state
2019-04-22 06:02:51 +00:00
async function setThreadLock(arn: AnimeNotifier, element: HTMLButtonElement, state: boolean) {
2018-04-25 16:59:23 +00:00
let verb = state ? "lock" : "unlock"
if(!confirm(`Are you sure you want to ${verb} this Thread?`)) {
return
}
let endpoint = arn.findAPIEndpoint(element)
2019-04-22 06:02:51 +00:00
try {
await arn.post(`${endpoint}/${verb}`)
await arn.reloadContent()
} catch(err) {
arn.statusMessage.showError(err)
}
2017-10-17 09:27:15 +00:00
}