mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
66 lines
No EOL
1.8 KiB
Text
66 lines
No EOL
1.8 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/meta", {title: "Create thread!" }) %>
|
|
|
|
<body >
|
|
<link rel="stylesheet" href="/css/create_thread.css" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.css">
|
|
<script src="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js"></script>
|
|
<%- include("extra/navbar") %>
|
|
|
|
<form>
|
|
<h2 class="title" style="align-self: baseline;">Title:</h2>
|
|
<input name="title" class="input" required></input>
|
|
<h2 class="title" style="align-self: baseline;">Content:</h2>
|
|
<textarea rows="4" cols="50" name="content" id="textarea" class="input" ></textarea>
|
|
<h2 class="title" style="align-self: baseline;">Category:</h2>
|
|
|
|
<select name="category">
|
|
<% for (const category of categories) { %>
|
|
<option value="<%= category.id %>"><%= category.name %></option>
|
|
<% } %>
|
|
</select>
|
|
|
|
<button class="btn-primary" style="width:100%" type="submit">Create Thread!</button>
|
|
</form>
|
|
|
|
|
|
<script type="module">
|
|
const textarea = document.getElementById("textarea");
|
|
const simplemde = new SimpleMDE({
|
|
autosave: {
|
|
enabled: true,
|
|
uniqueId: "thread-create",
|
|
delay: 1000,
|
|
},
|
|
element: textarea,
|
|
spellChecker: false
|
|
|
|
});
|
|
|
|
import request from "../../js/request.js";
|
|
|
|
document.addEventListener("submit", async e => {
|
|
e.preventDefault();
|
|
const form = e.target;
|
|
const data = new FormData(form);
|
|
|
|
const response = await request("/api/threads/", "POST", {
|
|
title: data.get("title"),
|
|
content: simplemde.value(),
|
|
category: data.get("category")
|
|
});
|
|
|
|
|
|
if (response)
|
|
window.location.href = "/threads/" + response.id;
|
|
|
|
|
|
});
|
|
</script>
|
|
<%- include("extra/footer") %>
|
|
|
|
</body>
|
|
|
|
</html> |