2022-08-15 06:42:59 +00:00
|
|
|
document.getElementById('post-title').value = localStorage.getItem("post-title")
|
|
|
|
document.getElementById('post-text').value = localStorage.getItem("post-text")
|
|
|
|
document.getElementById('post-url').value = localStorage.getItem("post-url")
|
|
|
|
|
|
|
|
document.getElementById('post-new').checked = localStorage.getItem("post-new") == 'true'
|
|
|
|
document.getElementById('post-nsfw').checked = localStorage.getItem("post-nsfw") == 'true'
|
|
|
|
document.getElementById('post-private').checked = localStorage.getItem("post-private") == 'true'
|
|
|
|
document.getElementById('post-club').checked = localStorage.getItem("post-club") == 'true'
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-08-14 03:20:43 +00:00
|
|
|
markdown(document.getElementById("post-text"));
|
2022-07-16 21:00:02 +00:00
|
|
|
|
2022-08-11 17:18:53 +00:00
|
|
|
function checkForRequired() {
|
2022-08-14 03:20:43 +00:00
|
|
|
const title = document.getElementById("post-title");
|
|
|
|
const url = document.getElementById("post-url");
|
|
|
|
const text = document.getElementById("post-text");
|
|
|
|
const button = document.getElementById("create_button");
|
|
|
|
const image = document.getElementById("file-upload");
|
|
|
|
const image2 = document.getElementById("file-upload-submit");
|
|
|
|
|
2022-07-16 21:00:02 +00:00
|
|
|
if (url.value.length > 0 || image.files.length > 0 || image2.files.length > 0) {
|
|
|
|
text.required = false;
|
|
|
|
url.required=false;
|
|
|
|
} else if (text.value.length > 0 || image.files.length > 0 || image2.files.length > 0) {
|
|
|
|
url.required = false;
|
|
|
|
} else {
|
|
|
|
text.required = true;
|
|
|
|
url.required = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValidTitle = title.checkValidity();
|
|
|
|
const isValidURL = url.checkValidity();
|
|
|
|
const isValidText = text.checkValidity();
|
|
|
|
|
|
|
|
if (isValidTitle && (isValidURL || image.files.length > 0 || image2.files.length > 0)) {
|
|
|
|
button.disabled = false;
|
|
|
|
} else if (isValidTitle && isValidText) {
|
|
|
|
button.disabled = false;
|
|
|
|
} else {
|
|
|
|
button.disabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
checkForRequired();
|
|
|
|
|
|
|
|
function hide_image() {
|
2022-08-14 03:20:43 +00:00
|
|
|
x=document.getElementById('image-upload-block');
|
|
|
|
url=document.getElementById('post-url').value;
|
2022-07-16 21:00:02 +00:00
|
|
|
if (url.length>=1){
|
|
|
|
x.classList.add('d-none');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
x.classList.remove('d-none');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
document.onpaste = function(event) {
|
|
|
|
files = event.clipboardData.files
|
|
|
|
|
|
|
|
filename = files[0]
|
|
|
|
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
filename = filename.name.toLowerCase()
|
|
|
|
if (document.activeElement.id == 'post-text') {
|
|
|
|
let filename = ''
|
|
|
|
for (const file of files)
|
|
|
|
filename += file.name + ', '
|
|
|
|
filename = filename.toLowerCase().slice(0, -2)
|
|
|
|
document.getElementById('file-upload-submit').files = files;
|
|
|
|
document.getElementById('filename-show-submit').textContent = filename;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
f=document.getElementById('file-upload');
|
|
|
|
f.files = files;
|
|
|
|
document.getElementById('filename-show').textContent = filename;
|
|
|
|
document.getElementById('urlblock').classList.add('d-none');
|
|
|
|
if (filename.endsWith(".jpg") || filename.endsWith(".jpeg") || filename.endsWith(".png") || filename.endsWith(".gif") || filename.endsWith(".webp"))
|
|
|
|
{
|
|
|
|
var fileReader = new FileReader();
|
|
|
|
fileReader.readAsDataURL(f.files[0]);
|
|
|
|
fileReader.addEventListener("load", function () {document.getElementById('image-preview').setAttribute('src', this.result);});
|
|
|
|
}
|
|
|
|
document.getElementById('file-upload').setAttribute('required', 'false');
|
|
|
|
}
|
|
|
|
document.getElementById('post-url').value = null;
|
2022-08-15 06:42:59 +00:00
|
|
|
localStorage.setItem("post-url", "")
|
2022-07-16 21:00:02 +00:00
|
|
|
checkForRequired();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('file-upload').addEventListener('change', function(){
|
|
|
|
f=document.getElementById('file-upload');
|
|
|
|
document.getElementById('urlblock').classList.add('d-none');
|
|
|
|
document.getElementById('filename-show').textContent = document.getElementById('file-upload').files[0].name.substr(0, 20);
|
|
|
|
filename = f.files[0].name.toLowerCase()
|
|
|
|
if (filename.endsWith(".jpg") || filename.endsWith(".jpeg") || filename.endsWith(".png") || filename.endsWith(".gif") || filename.endsWith(".webp"))
|
|
|
|
{
|
|
|
|
var fileReader = new FileReader();
|
|
|
|
fileReader.readAsDataURL(f.files[0]);
|
|
|
|
fileReader.addEventListener("load", function () {document.getElementById('image-preview').setAttribute('src', this.result);});
|
|
|
|
}
|
|
|
|
checkForRequired();
|
|
|
|
})
|
|
|
|
|
|
|
|
function savetext() {
|
2022-08-15 06:42:59 +00:00
|
|
|
localStorage.setItem("post-title", document.getElementById('post-title').value)
|
|
|
|
localStorage.setItem("post-text", document.getElementById('post-text').value)
|
|
|
|
localStorage.setItem("post-url", document.getElementById('post-url').value)
|
|
|
|
|
2022-07-16 21:00:02 +00:00
|
|
|
let sub = document.getElementById('sub')
|
|
|
|
if (sub) localStorage.setItem("sub", sub.value)
|
2022-08-15 06:42:59 +00:00
|
|
|
|
|
|
|
localStorage.setItem("post-new", document.getElementById('post-new').checked)
|
|
|
|
localStorage.setItem("post-nsfw", document.getElementById('post-nsfw').checked)
|
|
|
|
localStorage.setItem("post-private", document.getElementById('post-private').checked)
|
|
|
|
localStorage.setItem("post-club", document.getElementById('post-club').checked)
|
2022-07-16 21:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function autoSuggestTitle() {
|
|
|
|
|
|
|
|
var urlField = document.getElementById("post-url");
|
|
|
|
|
|
|
|
var titleField = document.getElementById("post-title");
|
|
|
|
|
|
|
|
var isValidURL = urlField.checkValidity();
|
|
|
|
|
|
|
|
if (isValidURL && urlField.value.length > 0 && titleField.value === "") {
|
|
|
|
|
|
|
|
var x = new XMLHttpRequest();
|
|
|
|
x.withCredentials=true;
|
|
|
|
x.onreadystatechange = function() {
|
|
|
|
if (x.readyState == 4 && x.status == 200 && !titleField.value) {
|
|
|
|
|
|
|
|
title=JSON.parse(x.responseText)["title"];
|
|
|
|
titleField.value=title;
|
|
|
|
checkForRequired()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x.open('get','/submit/title?url=' + urlField.value);
|
|
|
|
x.send(null);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
function draft(t) {
|
|
|
|
const followers = document.getElementById("followers")
|
|
|
|
if (t.checked == true) {
|
|
|
|
followers.checked = false;
|
|
|
|
followers.disabled = true;
|
|
|
|
} else {
|
|
|
|
followers.disabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkRepost() {
|
|
|
|
const system = document.getElementById('system')
|
|
|
|
system.innerHTML = `To post an image, use a direct image link such as i.imgur.com`;
|
|
|
|
const url = document.getElementById('post-url').value
|
|
|
|
|
|
|
|
if (url) {
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("post", "/is_repost");
|
|
|
|
xhr.setRequestHeader('xhr', 'xhr');
|
2022-07-23 08:57:53 +00:00
|
|
|
const form = new FormData()
|
2022-07-16 21:00:02 +00:00
|
|
|
form.append("url", url);
|
|
|
|
|
|
|
|
xhr.onload=function(){
|
|
|
|
try {data = JSON.parse(xhr.response)}
|
|
|
|
catch(e) {console.log(e)}
|
|
|
|
|
|
|
|
if (data && data["permalink"]) {
|
|
|
|
const permalink = data["permalink"]
|
|
|
|
if (permalink) {
|
|
|
|
system.innerHTML = `<span class='text-danger'>This is a repost of <a href=${permalink}>${permalink}</a></span>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xhr.send(form)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-07 06:56:13 +00:00
|
|
|
function updateCategories() {
|
|
|
|
if (document.getElementById("submit-categories") == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sub = document.getElementById("sub").value;
|
|
|
|
|
|
|
|
xhrCategories = new XMLHttpRequest();
|
|
|
|
xhrCategories.open("GET", "/categories.json");
|
|
|
|
xhrCategories.onload = function () {
|
|
|
|
let data;
|
|
|
|
try {
|
|
|
|
data = JSON.parse(xhrCategories.response);
|
|
|
|
} catch(e) { console.log(e) }
|
|
|
|
|
|
|
|
document.getElementById("submit-categories").innerHTML = '';
|
|
|
|
data[sub].forEach(function (c) {
|
|
|
|
document.getElementById("submit-categories").innerHTML +=
|
|
|
|
`<input type="radio" id="category-${c.id}" name="category" value="${c.id}">` +
|
|
|
|
`<label for="category-${c.id}" class="post--category-tag" ` +
|
|
|
|
`style="color:${c.color_text}; background-color:${c.color_bg};">` +
|
|
|
|
`${c.name}</label>`;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
xhrCategories.send();
|
|
|
|
}
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
document.addEventListener('keydown', (e) => {
|
|
|
|
if(!((e.ctrlKey || e.metaKey) && e.key === "Enter"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const submitButton = document.getElementById('create_button')
|
|
|
|
|
|
|
|
submitButton.click();
|
|
|
|
});
|
|
|
|
|
2022-08-07 06:56:13 +00:00
|
|
|
checkRepost();
|
|
|
|
updateCategories();
|