2024-04-27 09:04:02 +02:00
|
|
|
<template>
|
|
|
|
|
<div class="px-6 py-4">
|
|
|
|
|
<div class="py-2 relative">
|
|
|
|
|
<textarea :disabled="submitting" ref="textarea" v-model="content" placeholder="You can use Markdown here!"
|
|
|
|
|
class="resize-none min-h-48 prose prose-invert max-h-[70dvh] w-full p-0 focus:!ring-0 !ring-none !border-none !outline-none placeholder:text-zinc-500 bg-transparent appearance-none focus:!border-none focus:!outline-none disabled:cursor-not-allowed"></textarea>
|
|
|
|
|
<div
|
|
|
|
|
:class="['absolute bottom-0 right-0 p-2 text-gray-400 font-semibold text-xs', remainingCharacters < 0 && 'text-red-500']">
|
|
|
|
|
{{ remainingCharacters }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex flex-row gap-1 border-white/20">
|
|
|
|
|
<ButtonsPrimary :loading="submitting" @click="send" class="ml-auto rounded-full">
|
|
|
|
|
<span>Send!</span>
|
|
|
|
|
</ButtonsPrimary>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import type { Instance } from "~/types/mastodon/instance";
|
|
|
|
|
|
|
|
|
|
const { textarea, input: content } = useTextareaAutosize();
|
|
|
|
|
const { Control_Enter, Command_Enter } = useMagicKeys();
|
|
|
|
|
|
|
|
|
|
watchEffect(() => {
|
|
|
|
|
if (Control_Enter.value || Command_Enter.value) {
|
|
|
|
|
send();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
instance: Instance;
|
|
|
|
|
}>();
|
|
|
|
|
|
|
|
|
|
const submitting = ref(false);
|
|
|
|
|
const tokenData = useTokenData();
|
|
|
|
|
const client = useMegalodon(tokenData);
|
|
|
|
|
|
|
|
|
|
const send = async () => {
|
|
|
|
|
submitting.value = true;
|
|
|
|
|
|
2024-04-28 07:02:27 +02:00
|
|
|
fetch(new URL("/api/v1/statuses", client.value?.baseUrl ?? "").toString(), {
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
Authorization: `Bearer ${tokenData.value?.access_token}`,
|
2024-04-27 09:04:02 +02:00
|
|
|
},
|
2024-04-28 07:02:27 +02:00
|
|
|
body: JSON.stringify({
|
|
|
|
|
status: content.value,
|
|
|
|
|
content_type: "text/markdown",
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
.then(async (res) => {
|
|
|
|
|
if (!res.ok) {
|
|
|
|
|
throw new Error("Failed to send status");
|
|
|
|
|
}
|
2024-04-27 09:04:02 +02:00
|
|
|
|
2024-04-28 07:02:27 +02:00
|
|
|
content.value = "";
|
|
|
|
|
submitting.value = false;
|
|
|
|
|
useEvent("composer:send", await res.json());
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
useEvent("composer:close");
|
|
|
|
|
});
|
2024-04-27 09:04:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const characterLimit = computed(
|
|
|
|
|
() => props.instance?.configuration.statuses.max_characters ?? 0,
|
|
|
|
|
);
|
|
|
|
|
const remainingCharacters = computed(
|
|
|
|
|
() => characterLimit.value - (content.value?.length ?? 0),
|
|
|
|
|
);
|
|
|
|
|
</script>
|