-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script lang="ts" setup> | ||
import type { DrawerRootEmits, DrawerRootProps } from 'vaul-vue' | ||
import { DrawerRoot } from 'vaul-vue' | ||
import { useForwardPropsEmits } from 'radix-vue' | ||
const props = withDefaults(defineProps<DrawerRootProps>(), { | ||
shouldScaleBackground: true, | ||
}) | ||
const emits = defineEmits<DrawerRootEmits>() | ||
const forwarded = useForwardPropsEmits(props, emits) | ||
</script> | ||
|
||
<template> | ||
<DrawerRoot v-bind="forwarded"> | ||
<slot /> | ||
</DrawerRoot> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<script lang="ts" setup> | ||
import { DrawerContent, DrawerPortal } from 'vaul-vue' | ||
import type { DialogContentEmits, DialogContentProps } from 'radix-vue' | ||
import { useForwardPropsEmits } from 'radix-vue' | ||
import type { HtmlHTMLAttributes } from 'vue' | ||
import DrawerOverlay from './DrawerOverlay.vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<DialogContentProps & { class?: HtmlHTMLAttributes['class'] }>() | ||
const emits = defineEmits<DialogContentEmits>() | ||
const forwarded = useForwardPropsEmits(props, emits) | ||
</script> | ||
|
||
<template> | ||
<DrawerPortal> | ||
<DrawerOverlay /> | ||
<DrawerContent | ||
v-bind="forwarded" :class="cn( | ||
'fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background', | ||
props.class, | ||
)" | ||
> | ||
<div class="mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" /> | ||
<slot /> | ||
</DrawerContent> | ||
</DrawerPortal> | ||
</template> |
20 changes: 20 additions & 0 deletions
20
talent-hub_website/components/ui/drawer/DrawerDescription.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script lang="ts" setup> | ||
import type { DrawerDescriptionProps } from 'vaul-vue' | ||
import { DrawerDescription } from 'vaul-vue' | ||
import { type HtmlHTMLAttributes, computed } from 'vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<DrawerDescriptionProps & { class?: HtmlHTMLAttributes['class'] }>() | ||
const delegatedProps = computed(() => { | ||
const { class: _, ...delegated } = props | ||
return delegated | ||
}) | ||
</script> | ||
|
||
<template> | ||
<DrawerDescription v-bind="delegatedProps" :class="cn('text-sm text-muted-foreground', props.class)"> | ||
<slot /> | ||
</DrawerDescription> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script lang="ts" setup> | ||
import type { HtmlHTMLAttributes } from 'vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<{ | ||
class?: HtmlHTMLAttributes['class'] | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div :class="cn('mt-auto flex flex-col gap-2 p-4', props.class)"> | ||
<slot /> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script lang="ts" setup> | ||
import type { HtmlHTMLAttributes } from 'vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<{ | ||
class?: HtmlHTMLAttributes['class'] | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div :class="cn('grid gap-1.5 p-4 text-center sm:text-left', props.class)"> | ||
<slot /> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts" setup> | ||
import { DrawerOverlay } from 'vaul-vue' | ||
import type { DialogOverlayProps } from 'radix-vue' | ||
import { type HtmlHTMLAttributes, computed } from 'vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<DialogOverlayProps & { class?: HtmlHTMLAttributes['class'] }>() | ||
const delegatedProps = computed(() => { | ||
const { class: _, ...delegated } = props | ||
return delegated | ||
}) | ||
</script> | ||
|
||
<template> | ||
<DrawerOverlay v-bind="delegatedProps" :class="cn('fixed inset-0 z-50 bg-black/80', props.class)" /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script lang="ts" setup> | ||
import type { DrawerTitleProps } from 'vaul-vue' | ||
import { DrawerTitle } from 'vaul-vue' | ||
import { type HtmlHTMLAttributes, computed } from 'vue' | ||
import { cn } from '@/lib/utils' | ||
const props = defineProps<DrawerTitleProps & { class?: HtmlHTMLAttributes['class'] }>() | ||
const delegatedProps = computed(() => { | ||
const { class: _, ...delegated } = props | ||
return delegated | ||
}) | ||
</script> | ||
|
||
<template> | ||
<DrawerTitle v-bind="delegatedProps" :class="cn('text-lg font-semibold leading-none tracking-tight', props.class)"> | ||
<slot /> | ||
</DrawerTitle> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export { DrawerPortal, DrawerTrigger, DrawerClose } from 'vaul-vue' | ||
export { default as Drawer } from './Drawer.vue' | ||
export { default as DrawerOverlay } from './DrawerOverlay.vue' | ||
export { default as DrawerContent } from './DrawerContent.vue' | ||
export { default as DrawerHeader } from './DrawerHeader.vue' | ||
export { default as DrawerFooter } from './DrawerFooter.vue' | ||
export { default as DrawerTitle } from './DrawerTitle.vue' | ||
export { default as DrawerDescription } from './DrawerDescription.vue' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<script lang="ts" setup> | ||
import { Toaster as Sonner, type ToasterProps } from 'vue-sonner' | ||
const props = defineProps<ToasterProps>() | ||
</script> | ||
|
||
<template> | ||
<Sonner | ||
class="toaster group" | ||
v-bind="props" | ||
:toast-options="{ | ||
classes: { | ||
toast: 'group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg', | ||
description: 'group-[.toast]:text-muted-foreground', | ||
actionButton: | ||
'group-[.toast]:bg-primary group-[.toast]:text-primary-foreground', | ||
cancelButton: | ||
'group-[.toast]:bg-muted group-[.toast]:text-muted-foreground', | ||
}, | ||
}" | ||
/> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as Toaster } from './Sonner.vue' |