mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-15 13:30:05 +00:00
1234fb2dd1
Co-authored-by: Sebastian Di Luzio <sebastian.di-luzio@iu.org> Co-authored-by: Emanuel Pina <contacto@emanuelpina.pt> Co-authored-by: lazzzis <lazzzis@outlook.com> Co-authored-by: Joaquín Sánchez <userquin@gmail.com> Co-authored-by: TAKAHASHI Shuuji <shuuji3@gmail.com> Co-authored-by: Francesco <129339155+katullo11@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: patak-dev <matias.capeletto@gmail.com>
69 lines
2.3 KiB
Vue
69 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
import { formatTimeAgo } from '@vueuse/core'
|
|
import type { DraftItem } from '~/types'
|
|
|
|
const route = useRoute()
|
|
const { formatNumber } = useHumanReadableNumber()
|
|
const timeAgoOptions = useTimeAgoOptions()
|
|
|
|
const draftKey = ref('home')
|
|
|
|
const draftKeys = computed(() => Object.keys(currentUserDrafts.value))
|
|
const nonEmptyDrafts = computed(() => draftKeys.value
|
|
.filter(i => i !== draftKey.value && !isEmptyDraft(currentUserDrafts.value[i]))
|
|
.map(i => [i, currentUserDrafts.value[i]] as const),
|
|
)
|
|
|
|
watchEffect(() => {
|
|
draftKey.value = route.query.draft?.toString() || 'home'
|
|
})
|
|
|
|
onDeactivated(() => {
|
|
clearEmptyDrafts()
|
|
})
|
|
|
|
function firstDraftItemOf(drafts: DraftItem | Array<DraftItem>): DraftItem {
|
|
if (Array.isArray(drafts))
|
|
return drafts[0]
|
|
return drafts
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div flex="~ col" pb-6>
|
|
<div inline-flex justify-end h-8>
|
|
<VDropdown v-if="nonEmptyDrafts.length" placement="bottom-end">
|
|
<button btn-text flex="inline center">
|
|
{{ $t('compose.drafts', nonEmptyDrafts.length, { named: { v: formatNumber(nonEmptyDrafts.length) } }) }} 
|
|
<div aria-hidden="true" i-ri:arrow-down-s-line />
|
|
</button>
|
|
<template #popper="{ hide }">
|
|
<div flex="~ col">
|
|
<NuxtLink
|
|
v-for="[key, drafts] of nonEmptyDrafts" :key="key" border="b base" text-left py2 px4
|
|
hover:bg-active :replace="true" :to="`/compose?draft=${encodeURIComponent(key)}`" @click="hide()"
|
|
>
|
|
<div>
|
|
<div flex="~ gap-1" items-center>
|
|
<i18n-t keypath="compose.draft_title">
|
|
<code>{{ key }}</code>
|
|
</i18n-t>
|
|
<span v-if="firstDraftItemOf(drafts).lastUpdated" text-secondary text-sm>
|
|
· {{ formatTimeAgo(new Date(firstDraftItemOf(drafts).lastUpdated), timeAgoOptions) }}
|
|
</span>
|
|
</div>
|
|
<div text-secondary>
|
|
{{ htmlToText(firstDraftItemOf(drafts).params.status).slice(0, 50) }}
|
|
</div>
|
|
</div>
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
</VDropdown>
|
|
</div>
|
|
<div>
|
|
<PublishWidgetList expanded class="min-h-100!" :draft-key="draftKey" />
|
|
</div>
|
|
</div>
|
|
</template>
|