123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <SmartLink
- :to="`${/^\/(?!\/).*$/.test(to) ? localePath(to) : to}`"
- :exact="exact"
- :blank="blank"
- class="inline-flex items-center flex-shrink-0 px-4 py-2 rounded transition hover:bg-primaryDark hover:text-secondaryDark focus:outline-none focus-visible:bg-primaryDark focus-visible:text-secondaryDark"
- :class="[
- { 'opacity-75 cursor-not-allowed': disabled },
- { 'pointer-events-none': loading },
- { 'flex-1': label },
- { 'flex-row-reverse justify-end': reverse },
- {
- 'border border-divider hover:border-dividerDark focus-visible:border-dividerDark':
- outline,
- },
- ]"
- :disabled="disabled"
- :tabindex="loading ? '-1' : '0'"
- role="menuitem"
- >
- <span
- v-if="!loading"
- class="inline-flex items-center"
- :class="{ 'self-start': infoIcon }"
- >
- <i
- v-if="icon"
- class="opacity-75 material-icons"
- :class="[
- label ? (reverse ? 'ml-4' : 'mr-4') : '',
- { 'text-accent': active },
- ]"
- >
- {{ icon }}
- </i>
- <SmartIcon
- v-if="svg"
- :name="svg"
- class="opacity-75 svg-icons"
- :class="[
- label ? (reverse ? 'ml-4' : 'mr-4') : '',
- { 'text-accent': active },
- ]"
- />
- </span>
- <SmartSpinner v-else class="mr-4 text-secondaryDark" />
- <div
- class="inline-flex items-start flex-1 truncate"
- :class="{ 'flex-col': description }"
- >
- <div class="font-semibold truncate">
- {{ label }}
- </div>
- <p v-if="description" class="my-2 text-left text-secondaryLight">
- {{ description }}
- </p>
- </div>
- <i
- v-if="infoIcon"
- class="items-center self-center ml-6 material-icons"
- :class="{ 'text-accent': activeInfoIcon }"
- >
- {{ infoIcon }}
- </i>
- <div v-if="shortcut.length" class="ml-2 <sm:hidden font-medium">
- <kbd
- v-for="(key, index) in shortcut"
- :key="`key-${index}`"
- class="-mr-2 shortcut-key"
- >
- {{ key }}
- </kbd>
- </div>
- </SmartLink>
- </template>
- <script lang="ts">
- import { defineComponent } from "@nuxtjs/composition-api"
- export default defineComponent({
- props: {
- to: {
- type: String,
- default: "",
- },
- exact: {
- type: Boolean,
- default: true,
- },
- blank: {
- type: Boolean,
- default: false,
- },
- label: {
- type: String,
- default: "",
- },
- description: {
- type: String,
- default: "",
- },
- icon: {
- type: String,
- default: "",
- },
- svg: {
- type: String,
- default: "",
- },
- disabled: {
- type: Boolean,
- default: false,
- },
- loading: {
- type: Boolean,
- default: false,
- },
- reverse: {
- type: Boolean,
- default: false,
- },
- outline: {
- type: Boolean,
- default: false,
- },
- shortcut: {
- type: Array,
- default: () => [],
- },
- active: {
- type: Boolean,
- default: false,
- },
- activeInfoIcon: {
- type: Boolean,
- default: false,
- },
- infoIcon: {
- type: String,
- default: "",
- },
- },
- })
- </script>
|