123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <SmartLink
- :to="`${/^\/(?!\/).*$/.test(to) ? localePath(to) : to}`"
- :exact="exact"
- :blank="blank"
- class="inline-flex items-center justify-center py-2 font-semibold transition whitespace-nowrap focus:outline-none"
- :class="[
- color
- ? `text-${color}-500 hover:text-${color}-600 focus-visible:text-${color}-600`
- : 'text-secondary hover:text-secondaryDark focus-visible:text-secondaryDark',
- { 'pointer-events-none': loading },
- label ? 'rounded px-4' : 'px-2',
- { 'rounded-full': rounded },
- { 'opacity-75 cursor-not-allowed': disabled },
- { 'flex-row-reverse': reverse },
- { 'px-6 py-4 text-lg': large },
- {
- 'border border-divider hover:border-dividerDark focus-visible:border-dividerDark':
- outline,
- },
- {
- 'bg-primaryLight hover:bg-primaryDark focus-visible:bg-primaryDark':
- filled,
- },
- ]"
- :disabled="disabled"
- :tabindex="loading ? '-1' : '0'"
- role="button"
- >
- <span
- v-if="!loading"
- class="inline-flex items-center justify-center whitespace-nowrap"
- :class="{ 'flex-row-reverse': reverse }"
- >
- <i
- v-if="icon"
- class="material-icons"
- :class="[
- { '!text-2xl': large },
- label ? (reverse ? 'ml-2' : 'mr-2') : '',
- ]"
- >
- {{ icon }}
- </i>
- <SmartIcon
- v-if="svg"
- :name="svg"
- class="svg-icons"
- :class="[
- { '!h-6 !w-6': large },
- label ? (reverse ? 'ml-2' : 'mr-2') : '',
- ]"
- />
- {{ label }}
- <div v-if="shortcut.length" class="ml-2 <sm:hidden">
- <kbd
- v-for="(key, index) in shortcut"
- :key="`key-${index}`"
- class="shortcut-key"
- >
- {{ key }}
- </kbd>
- </div>
- </span>
- <SmartSpinner v-else />
- </SmartLink>
- </template>
- <script setup lang="ts">
- interface Props {
- to: string
- exact: boolean
- blank: boolean
- label: string
- icon: string
- svg: string
- color: string
- disabled: boolean
- loading: boolean
- reverse: boolean
- rounded: boolean
- large: boolean
- outline: boolean
- shortcut: string[]
- filled: boolean
- }
- withDefaults(defineProps<Props>(), {
- to: "",
- exact: true,
- blank: false,
- label: "",
- icon: "",
- svg: "",
- color: "",
- disabled: false,
- loading: false,
- reverse: false,
- rounded: false,
- large: false,
- outline: false,
- shortcut: () => [],
- filled: false,
- })
- </script>
|