feat: basic post intent support

This commit is contained in:
Anthony Fu 2023-01-03 18:46:04 +01:00
parent 564a754a4d
commit 9871327a72

25
pages/intent/post.vue Normal file
View file

@ -0,0 +1,25 @@
<script setup lang="ts">
import type { StatusVisibility } from 'masto'
const router = useRouter()
const route = useRoute()
onMounted(async () => {
// TODO: login check
await openPublishDialog('intent', getDefaultDraft({
status: route.query.text as string,
sensitive: route.query.sensitive === 'true' || route.query.sensitive === null,
spoilerText: route.query.spoiler_text as string,
visibility: route.query.visibility as StatusVisibility,
language: route.query.language as string,
}), true)
// TODO: need a better idea 👀
await router.replace('/home')
})
</script>
<template>
<div>
<slot />
</div>
</template>