Files
FloatingIsland/app/components/Post/PostEditor.vue
2025-11-08 12:20:58 +08:00

63 lines
1.4 KiB
Vue

<template>
<div class="flex flex-col gap-2">
<pub-select v-model:value="publisher" />
<v-textarea
v-model="content"
placeholder="What's happended?!"
@keydown.meta.enter.exact="submit"
@keydown.ctrl.enter.exact="submit"
/>
<div class="flex justify-between">
<v-btn type="primary" :loading="submitting" @click="submit">
Post
<template #append>
<v-icon>mdi-send</v-icon>
</template>
</v-btn>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { useSolarNetwork } from '~/composables/useSolarNetwork'
// Interface for uploaded files in the editor
interface UploadedFile {
name: string
url: string
type: string
}
const emits = defineEmits(['posted'])
const publisher = ref<string | undefined>()
const content = ref('')
const fileList = ref<UploadedFile[]>([])
const submitting = ref(false)
async function submit() {
submitting.value = true
const api = useSolarNetwork()
await api(`/sphere/posts?pub=${publisher.value}`, {
method: 'POST',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify({
content: content.value,
attachments: fileList.value
.filter((e) => e.url != null)
.map((e) => e.url!.split('/').reverse()[0]),
}),
})
submitting.value = false
content.value = ''
fileList.value = []
emits('posted')
}
</script>