chore: update

This commit is contained in:
Benjamin Canac
2021-12-09 17:46:13 +01:00
parent 637450495c
commit f3f40dd862
14 changed files with 219 additions and 20 deletions

View File

@@ -48,6 +48,10 @@
</div>
</div>
</UContainer>
<ClientOnly>
<UNotifications />
</ClientOnly>
</div>
</template>
@@ -56,7 +60,7 @@ import { UseDark } from '@vueuse/components'
const sections = [
{ label: 'Getting Started', links: [{ label: 'Usage', to: '/' }, { label: 'Examples', to: '/examples' }, { label: 'Migration', to: '/migration' }, { label: 'Dark mode', to: '/dark' }] },
{ label: 'Elements', links: [{ label: 'Avatar', to: '/components/Avatar' }, { label: 'AvatarGroup', to: '/components/AvatarGroup' }, { label: 'Badge', to: '/components/Badge' }, { label: 'Button', to: '/components/Button' }, { label: 'Dropdown', to: '/components/Dropdown' }, { label: 'Icon', to: '/components/Icon' }, { label: 'Link', to: '/components/Link' }] },
{ label: 'Elements', links: [{ label: 'Avatar', to: '/components/Avatar' }, { label: 'AvatarGroup', to: '/components/AvatarGroup' }, { label: 'Badge', to: '/components/Badge' }, { label: 'Button', to: '/components/Button' }, { label: 'Dropdown', to: '/components/Dropdown' }, { label: 'Icon', to: '/components/Icon' }] },
{ label: 'Feedback', links: [{ label: 'Alert', to: '/components/Alert' }] },
{ label: 'Forms', links: [{ label: 'Checkbox', to: '/components/Checkbox' }, { label: 'Input', to: '/components/Input' }, { label: 'InputGroup', to: '/components/InputGroup' }, { label: 'Radio', to: '/components/Radio' }, { label: 'RadioGroup', to: '/components/RadioGroup' }, { label: 'Select', to: '/components/Select' }, { label: 'SelectCustom', to: '/components/SelectCustom' }, { label: 'Textarea', to: '/components/Textarea' }, { label: 'Toggle', to: '/components/Toggle' }, { label: 'ToggleGroup', to: '/components/ToggleGroup' }] },
{ label: 'Layout', links: [{ label: 'Card', to: '/components/Card' }, { label: 'Container', to: '/components/Container' }] },

View File

@@ -1,7 +1,11 @@
<template>
<UCard v-if="component" class="relative flex flex-col lg:max-h-[calc(100vh-10rem)]" body-class="px-4 py-5 sm:p-6 relative" footer-class="px-4 py-4 sm:px-6 flex-1 lg:overflow-y-auto">
<div class="flex justify-center">
<component :is="is" v-bind="boundProps" />
<component :is="is" v-bind="boundProps">
<template v-if="defaultProps[params.component].slot" #default>
<component :is="`U${defaultProps[params.component].slot}`" v-bind="defaultProps[defaultProps[params.component].slot]" />
</template>
</component>
</div>
<template v-if="props.length" #footer>
@@ -108,11 +112,13 @@ const defaultProps = {
name: 'heroicons-outline:bell'
},
Input: {
name: 'input'
name: 'input',
placeholder: 'Enter text'
},
InputGroup: {
name: 'input',
label: 'Input group'
label: 'Input group',
slot: 'Input'
},
ToggleGroup: {
name: 'input',
@@ -133,6 +139,11 @@ const defaultProps = {
},
Tooltip: {
text: 'Tooltip text'
},
Notification: {
id: '1',
title: 'Notification title',
callback: 'alert(\'Timer expired\')'
}
}
@@ -181,8 +192,22 @@ const props = ref(refProps)
const boundProps = computed(() => {
const bound = {}
for (const prop of props.value) {
let value = prop.value
if (!value) {
continue
}
try {
bound[prop.key] = prop.type === 'Array' ? JSON.parse(prop.value) : prop.value
if (prop.type === 'Array') {
value = JSON.parse(value)
} else if (prop.type === 'Number') {
value = Number(value)
} else if (prop.type === 'Function') {
// eslint-disable-next-line no-new-func
value = Function(value)
}
bound[prop.key] = value
} catch (e) {
continue
}

View File

@@ -170,6 +170,13 @@
<UToggle v-model="isSwitchEnabled" icon-off="heroicons-solid:x" icon-on="heroicons-solid:check" />
</div>
<div>
<div class="font-medium text-sm mb-1 u-text-gray-700">
Notifications:
</div>
<UButton icon="heroicons-outline:bell" variant="red" label="Trigger an error" @click="onNotificationClick" />
</div>
<div>
<div class="font-medium text-sm mb-1 u-text-gray-700">
Card:
@@ -200,6 +207,8 @@
const isModalOpen = ref(false)
const isSwitchEnabled = ref(false)
const { $toast } = useNuxtApp()
function toggleModalIsOpen () {
isModalOpen.value = !isModalOpen.value
}
@@ -341,4 +350,8 @@ const solutions = [
]
const description = ref('Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.')
const onNotificationClick = () => {
$toast.error({ title: 'Error', description: 'This is an error message' })
}
</script>

View File

@@ -187,7 +187,13 @@ const components = [
},
{
label: 'Notification',
to: '/components/Notification'
to: '/components/Notification',
nuxt3: true
},
{
label: 'Notifications',
to: '/components/Notifications',
nuxt3: true
},
{
label: 'Popover',
@@ -201,7 +207,8 @@ const components = [
},
{
label: 'Tooltip',
to: '/components/Tooltip'
to: '/components/Tooltip',
nuxt3: true
}
]
</script>

View File

@@ -31,6 +31,7 @@
"defu": "^5.0.0",
"gradient-avatar": "^1.0.2",
"lodash-es": "^4.17.21",
"nanoid": "^3.1.30",
"pathe": "^0.2.0"
},
"devDependencies": {

View File

@@ -31,14 +31,9 @@
variant="white"
size="xs"
class="mt-2"
@click.native.stop="cancel"
@click.stop="cancel"
>
Undo
<div class="inline-flex items-center rounded u-bg-gray-200 ml-1.5">
<span class="w-full px-1 text-center u-text-gray-600 text-xxs">
Z
</span>
</div>
</Button>
</div>
<div class="flex-shrink-0 ml-4">
@@ -47,7 +42,7 @@
@click.stop="close"
>
<span class="sr-only">Close</span>
<Icon name="outline/x" class="w-5 h-5" />
<Icon name="heroicons-solid:x" class="w-5 h-5" />
</button>
</div>
</div>
@@ -117,10 +112,10 @@ export default {
computed: {
iconName () {
return this.icon || ({
warning: 'solid/exclamation-circle',
info: 'solid/information-circle',
success: 'solid/check-circle',
error: 'solid/x-circle'
warning: 'heroicons-outline:exclamation-circle',
info: 'heroicons-outline:information-circle',
success: 'heroicons-outline:check-circle',
error: 'heroicons-outline:x-circle'
})[this.type]
},
iconClass () {

View File

@@ -0,0 +1,28 @@
<template>
<div class="fixed bottom-0 right-0 flex flex-col justify-end w-full z-55 sm:w-96">
<div
v-if="notifications.length"
class="px-4 py-6 space-y-3 overflow-y-auto sm:px-6 lg:px-8"
>
<div
v-for="(notification, index) of notifications"
v-show="index === notifications.length - 1"
:key="notification.id"
>
<Notification
v-bind="notification"
:class="notification.click && 'cursor-pointer'"
@click="notification.click && notification.click(notification)"
@close="$toast.removeNotification(notification.id)"
/>
</div>
</div>
</div>
</template>
<script setup>
import Notification from './Notification'
const { $toast } = useNuxtApp()
const notifications = useState('notifications')
</script>

View File

@@ -1,5 +1,5 @@
import { resolve } from 'pathe'
import { defineNuxtModule, installModule, addComponentsDir, addTemplate, resolveModule } from '@nuxt/kit'
import { defineNuxtModule, installModule, addComponentsDir, addTemplate, resolveModule, addPlugin } from '@nuxt/kit'
import { colors } from '@unocss/preset-uno'
import defu from 'defu'
import type { UnocssNuxtOptions } from '@unocss/nuxt'
@@ -176,6 +176,10 @@ export default defineNuxtModule<UiOptions>({
getContents: () => `/* @unocss-include */ export default ${JSON.stringify(ui)}`
})
addPlugin(resolve(__dirname, './plugins/ticker.client'))
addPlugin(resolve(__dirname, './plugins/timer.client'))
addPlugin(resolve(__dirname, './plugins/toast.client'))
addComponentsDir({
path: resolve(__dirname, './components/elements'),
prefix,

View File

@@ -0,0 +1,19 @@
import { defineNuxtPlugin } from '#app'
function Ticker (callback, interval) {
let id
this.start = function () {
id = window.setInterval(callback, interval)
}
this.stop = function () {
window.clearInterval(id)
}
this.start()
}
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.provide('ticker', Ticker)
})

View File

@@ -0,0 +1,34 @@
import { defineNuxtPlugin } from '#app'
function Timer (callback, delay) {
let timerId
let start
let remaining = delay
this.pause = function () {
window.clearTimeout(timerId)
remaining -= new Date() - start
}
this.resume = function () {
start = new Date()
window.clearTimeout(timerId)
timerId = window.setTimeout(callback, remaining)
}
this.reset = function () {
start = new Date()
window.clearTimeout(timerId)
timerId = window.setTimeout(callback, delay)
}
this.stop = function () {
window.clearTimeout(timerId)
}
this.resume()
}
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.provide('timer', Timer)
})

View File

@@ -0,0 +1,53 @@
import { nanoid } from 'nanoid'
import { Ref } from 'vue'
import { Notification } from '../types'
import { defineNuxtPlugin, useState } from '#app'
export default defineNuxtPlugin((nuxtApp) => {
const notifications: Ref<Notification[]> = useState('notifications', () => [])
function addNotification (notification: Partial<Notification>) {
const body = {
id: nanoid(),
...notification
}
const index = notifications.value.findIndex((n: Notification) => n.id === body.id)
if (index === -1) {
notifications.value.push(body as Notification)
}
return body
}
function removeNotification (id: string) {
notifications.value = notifications.value.filter((n: Notification) => n.id !== id)
}
nuxtApp.provide('toast', {
addNotification,
removeNotification,
success ({ title, description }: { title?: string, description?: string } = {}) {
addNotification({
type: 'success',
title,
description,
timeout: 4000
})
},
error ({ title = 'An error occurred!', description }: { title?: string, description?: string } = {}) {
addNotification({
type: 'error',
title,
description,
timeout: 4000
})
}
})
})
declare module '#app' {
interface NuxtApp {
$toast: object
}
}

3
src/types/index.ts Normal file
View File

@@ -0,0 +1,3 @@
export * from './notifications'
export * from './organizations'
export * from './users'

View File

@@ -0,0 +1,10 @@
export interface Notification {
id: string
title: string
description: string
type: string
icon?: string
timeout: number
undo?: Function
callback?: Function
}

View File

@@ -15,6 +15,9 @@
"node",
"@nuxt/kit"
],
"allowJs": true
"allowJs": true,
"paths": {
"#app": ["./node_modules/nuxt3/dist/app"]
}
}
}