UNPKG

vueless

Version:

Vue Styleless UI Component Library, powered by Tailwind CSS.

191 lines (166 loc) 4.56 kB
import { getArgTypes, getSlotNames, getSlotsFragment, getDocsDescription, } from "../../utils/storybook.ts"; import UAlert from "../../ui.text-alert/UAlert.vue"; import URow from "../../ui.container-row/URow.vue"; import UCol from "../../ui.container-col/UCol.vue"; import UIcon from "../../ui.image-icon/UIcon.vue"; import UButton from "../../ui.button/UButton.vue"; import UBadge from "../../ui.text-badge/UBadge.vue"; import type { Meta, StoryFn } from "@storybook/vue3"; import type { Props } from "../types.ts"; interface UAlertArgs extends Props { slotTemplate?: string; enum: "size" | "color" | "variant"; } export default { id: "4030", title: "Text & Content / Alert", component: UAlert, args: { title: "Network Error", }, argTypes: { ...getArgTypes(UAlert.__name), }, parameters: { docs: { ...getDocsDescription(UAlert.__name), }, }, } as Meta; const DefaultTemplate: StoryFn<UAlertArgs> = (args: UAlertArgs) => ({ components: { UAlert, UIcon, URow, UButton }, setup() { const slots = getSlotNames(UAlert.__name); return { args, slots }; }, template: ` <UAlert v-bind="args"> ${args.slotTemplate || getSlotsFragment("")} </UAlert> `, }); const EnumVariantTemplate: StoryFn<UAlertArgs> = (args: UAlertArgs, { argTypes }) => ({ components: { UAlert, UCol }, setup() { function getText(value: string) { return `This is Alert's ${value} size`; } let prefixedOptions = argTypes?.[args.enum]?.options; if (argTypes?.[args.enum]?.name === "size") { prefixedOptions = prefixedOptions?.map((option) => getText(option)); } return { args, options: argTypes?.[args.enum]?.options, prefixedOptions }; }, template: ` <UCol align="stretch"> <UAlert v-for="(option, index) in options" :key="index" v-bind="args" :[args.enum]="option" :title="prefixedOptions[index]" /> </UCol> `, }); export const Default = DefaultTemplate.bind({}); Default.args = {}; export const Description = DefaultTemplate.bind({}); Description.args = { description: "Unable to connect to the server. Please check your internet connection and try again.", }; export const Variants = EnumVariantTemplate.bind({}); Variants.args = { enum: "variant" }; export const Bordered = DefaultTemplate.bind({}); Bordered.args = { title: "Your connection is secure", variant: "thirdary", bordered: true, color: "green", }; Bordered.parameters = { docs: { description: { story: "Add border to the `thirdary` variant.", }, }, }; export const Sizes = EnumVariantTemplate.bind({}); Sizes.args = { enum: "size" }; export const Colors = EnumVariantTemplate.bind({}); Colors.args = { enum: "color" }; export const Closable = DefaultTemplate.bind({}); Closable.args = { closable: true }; export const SlotClose = DefaultTemplate.bind({}); SlotClose.args = { closable: true, slotTemplate: ` <template #close> <UButton variant="primary" color="white" size="sm" label="Close" /> </template> `, }; export const Slots: StoryFn<UAlertArgs> = (args) => ({ components: { UAlert, UIcon, URow, UCol, UBadge }, setup() { return { args }; }, template: ` <UCol> <URow> <UAlert v-bind="args"> <template #title> <UBadge label="Connection lost" size="lg" color="red" variant="secondary" /> </template> </UAlert> <UAlert v-bind="args"> <template #description> <UBadge label="We are trying to reconnect. Please wait a moment or check your network settings." color="red" variant="thirdary" /> </template> </UAlert> </URow> <URow> <UAlert v-bind="args"> <template #top> <UIcon name="wifi_off" color="red" /> </template> </UAlert> <UAlert v-bind="args"> <template #bottom> <UIcon name="sync" color="blue" /> </template> </UAlert> <UAlert v-bind="args"> <template #left> <UIcon name="warning" color="yellow" /> </template> </UAlert> <UAlert v-bind="args" label="Delete"> <template #right> <UIcon name="play_arrow" color="green" /> </template> </UAlert> </URow> </UCol> `, });