2023-01-16 09:55:00 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
|
|
|
const { status } = defineProps<{
|
|
|
|
status: mastodon.v1.Status
|
|
|
|
}>()
|
|
|
|
|
|
|
|
const {
|
|
|
|
toggle: _toggleTranslation,
|
|
|
|
translation,
|
|
|
|
enabled: isTranslationEnabled,
|
2023-01-17 21:41:26 +00:00
|
|
|
} = useTranslation(status, getLanguageCode())
|
2023-01-21 10:19:03 +00:00
|
|
|
const preferenceHideTranslation = usePreferences('hideTranslation')
|
|
|
|
|
2023-01-29 12:18:49 +00:00
|
|
|
const showButton = computed(() => !preferenceHideTranslation.value && isTranslationEnabled)
|
2023-01-16 09:55:00 +00:00
|
|
|
|
|
|
|
let translating = $ref(false)
|
2023-03-30 20:01:24 +01:00
|
|
|
async function toggleTranslation() {
|
2023-01-16 09:55:00 +00:00
|
|
|
translating = true
|
|
|
|
try {
|
|
|
|
await _toggleTranslation()
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
translating = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<button
|
2023-01-21 10:19:03 +00:00
|
|
|
v-if="showButton" p-0 flex="~ center" gap-2 text-sm
|
2023-01-16 18:04:51 +00:00
|
|
|
:disabled="translating" disabled-bg-transparent btn-text class="disabled-text-$c-text-btn-disabled-deeper" @click="toggleTranslation"
|
2023-01-16 09:55:00 +00:00
|
|
|
>
|
|
|
|
<span v-if="translating" block animate-spin preserve-3d>
|
|
|
|
<span block i-ri:loader-2-fill />
|
|
|
|
</span>
|
|
|
|
<div v-else i-ri:translate />
|
|
|
|
{{ translation.visible ? $t('menu.show_untranslated') : $t('menu.translate_post') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped></style>
|