12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- /* eslint-disable vue/no-v-html */
- import { markup } from '@shared/utils/markup'
- interface Props {
- loading?: boolean
- error?: string
- position?: 'center' | 'right' | 'left'
- }
- withDefaults(defineProps<Props>(), {
- position: 'center',
- })
- </script>
- <script lang="ts">
- export default {
- inheritAttrs: false,
- }
- </script>
- <template>
- <div
- v-if="loading"
- v-bind="$attrs"
- class="flex"
- :class="{
- 'items-center justify-center': position === 'center',
- 'items-center justify-end': position === 'right',
- 'items-center justify-start': position === 'left',
- }"
- role="status"
- >
- <CommonIcon
- :label="__('Loading content')"
- name="mobile-loading"
- animation="spin"
- />
- </div>
- <div
- v-else-if="error"
- v-bind="$attrs"
- class="flex items-center justify-center gap-2 text-base text-red-bright"
- >
- <CommonIcon name="mobile-close-small" />
- <span v-html="markup($t(error))" />
- </div>
- <slot v-else />
- </template>
|