UNPKG

vueless

Version:

Vue Styleless UI Component Library, powered by Tailwind CSS.

112 lines (96 loc) 2.54 kB
import { getArgTypes, getSlotNames, getSlotsFragment, getDocsDescription, } from "../../utils/storybook.ts"; import ULoader from "../../ui.loader/ULoader.vue"; import URow from "../../ui.container-row/URow.vue"; import UButton from "../../ui.button/UButton.vue"; import { ref } from "vue"; import type { Meta, StoryFn } from "@storybook/vue3"; import type { Props } from "../types.ts"; interface ULoaderArgs extends Props { slotTemplate?: string; enum: "size" | "color"; } export default { id: "9010", title: "Loaders and Skeletons / Loader", component: ULoader, args: { loading: true, }, argTypes: { ...getArgTypes(ULoader.__name), }, parameters: { docs: { ...getDocsDescription(ULoader.__name), }, }, } as Meta; const DefaultTemplate: StoryFn<ULoaderArgs> = (args: ULoaderArgs) => ({ components: { ULoader }, setup() { const slots = getSlotNames(ULoader.__name); return { args, slots }; }, template: ` <ULoader v-bind="args"> ${args.slotTemplate || getSlotsFragment("")} </ULoader> `, }); const EnumVariantTemplate: StoryFn<ULoaderArgs> = (args: ULoaderArgs, { argTypes }) => ({ components: { ULoader, URow }, setup() { return { args, options: argTypes?.[args.enum]?.options, }; }, template: ` <URow class="flex-wrap"> <ULoader v-for="(option, index) in options" :key="index" v-bind="args" :[args.enum]="option" /> </URow> `, }); const LoadingTemplate: StoryFn<ULoaderArgs> = (args: ULoaderArgs) => ({ components: { ULoader, UButton, URow }, setup() { function toggleLoader() { isLoading.value = !isLoading.value; } const isLoading = ref(true); return { args, isLoading, toggleLoader }; }, template: ` <URow align="center"> <UButton @click="toggleLoader" size="sm">Toggle Loader</UButton> <ULoader v-bind="args" :loading="isLoading" /> </URow> `, }); export const Default = DefaultTemplate.bind({}); Default.args = {}; export const Sizes = EnumVariantTemplate.bind({}); Sizes.args = { enum: "size" }; export const Colors = EnumVariantTemplate.bind({}); Colors.args = { enum: "color" }; export const Loading = LoadingTemplate.bind({}); Loading.args = {}; export const SlotDefault = DefaultTemplate.bind({}); SlotDefault.args = { size: "lg", slotTemplate: ` <template #default> <img src="https://media.tenor.com/9zmtHZ0tIjkAAAAi/nyancat-rainbow-cat.gif" alt="Cat" /> </template> `, };