Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs/vue component meta #3352

Merged
merged 6 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { resolveAlias } from '@nuxt/kit'

import path from 'path'

import type { MetaCheckerOptions } from 'vue-component-meta'
import { createComponentMetaChecker } from 'vue-component-meta'

const checkerOptions: MetaCheckerOptions = {
forceUseTs: true,
printer: { newLine: 1 },
}

export const checker = createComponentMetaChecker(
path.join(resolveAlias('@'), '..', './ui', 'tsconfig.json'),
checkerOptions,
)
3 changes: 3 additions & 0 deletions packages/docs/modules/page-config/blocks/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { DefineComponent } from 'vue';
import { definePageConfigBlock } from '../../types'
import Component from './index.vue'
import { VisualOptions, type ManualApiOptions } from './types';
import type { ComponentMeta } from 'vue-component-meta'

const setup = (
componentName: string,
component: DefineComponent,
cssVariables: string,
meta: ComponentMeta,
manual?: ManualApiOptions,
visualOptions?: VisualOptions,
) => {
Expand All @@ -15,6 +17,7 @@ const setup = (
componentName,
component,
cssVariables,
meta,
manual,
visualOptions,
}
Expand Down
35 changes: 21 additions & 14 deletions packages/docs/modules/page-config/blocks/api/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script setup lang="ts">
import { DefineComponent, PropType } from 'vue';
import { parseComponent } from './component-parser'
import merge from 'lodash/merge'
import camelCase from 'lodash/camelCase'
import ApiTable from './components/api-table.vue';
Expand All @@ -23,15 +22,19 @@ const props = defineProps({
type: Array as PropType<CssVariables>,
required: true,
},
meta: {
type: Object as PropType<ManualApiOptions>,
required: true
},
visualOptions: {
type: Object as PropType<VisualOptions>,
default: () => ({}),
}
})

const options = parseComponent(props.component)

const withManual = merge(options, props.manual as ManualApiOptions)
const withManual = computed(() => {
return merge(props.meta, props.manual as ManualApiOptions)
})

const { t, te, fallbackLocale } = useI18n()

Expand Down Expand Up @@ -72,8 +75,8 @@ const cleanDefaultValue = (o: Record<string, any> | string) => {
return str
}

const propsOptions = Object
.entries(withManual.props || {})
const propsOptions = computed(() => Object
.entries(withManual.value.props || {})
.filter(([key, prop]) => !prop.hidden)
.map(([key, prop]) => ({
name: { name: key, ...prop },
Expand All @@ -84,9 +87,10 @@ const propsOptions = Object
.sort((a, b) => {
return a.name.name.localeCompare(b.name.name)
})
)

const eventsOptions = Object
.entries(withManual.events || {})
const eventsOptions = computed(() => Object
.entries(withManual.value.events || {})
.filter(([key, prop]) => !prop.hidden)
.map(([key, prop]) => ({
name: key,
Expand All @@ -95,31 +99,34 @@ const eventsOptions = Object
.sort((a, b) => {
return a.name.localeCompare(b.name)
})
)

const slotsOptions = Object
.entries(withManual.slots || {})
const slotsOptions = computed(() => Object
.entries(withManual.value.slots || {})
.map(([key, prop]) => ({
name: key,
description: t(getTranslation('slots', key)),
}))
.sort((a, b) => {
return a.name.localeCompare(b.name)
})
)

const methodsOptions = Object
.entries(withManual.methods || {})
const methodsOptions = computed(() => Object
.entries(withManual.value.methods || {})
.map(([key, prop]) => ({
name: key,
description: t(getTranslation('methods', key)),
}))
.sort((a, b) => {
return a.name.localeCompare(b.name)
})
)

const cssVariablesOptions = props.cssVariables.map(([name, value, comment]) => ({
const cssVariablesOptions = computed(() => props.cssVariables.map(([name, value, comment]) => ({
name, value, /* comment */ // TODO: Enable comment when everywhere is used correct comments
// TODO: Or add tanslations after i18n splitted
}))
})))
</script>

<template>
Expand Down
49 changes: 46 additions & 3 deletions packages/docs/modules/page-config/blocks/api/transform.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import pick from 'lodash/pick.js';
import kebabCase from 'lodash/kebabCase';
import { readFile } from 'fs/promises';
import { defineBlockTransform } from "../../compiler/define-block-transform";
import { CssVariables } from "./types";
import { checker } from './component-parser/meta'
import { ComponentMeta } from 'vue-component-meta';
import ts from 'typescript/lib/tsserverlibrary';
m0ksem marked this conversation as resolved.
Show resolved Hide resolved

const parseCssComment = (line: string) =>
const parseCssComment = (line: string) =>
(line.match(/\/\/(.*)|\/\*(.*)\*\//) || []).slice(1).filter((s) => Boolean(s)).join('').trim()
const parseCssVariables = (css: string | undefined): CssVariables => {
if (!css) { return [] }
Expand All @@ -20,7 +24,7 @@ const parseCssVariables = (css: string | undefined): CssVariables => {
variables.push([variable[0], variable[1], comment])
}
})

return variables
}

Expand All @@ -29,6 +33,44 @@ const readCssVariables = async (path: string | undefined) => {
return (await readFile(path, 'utf-8')).toString()
}

const stringifyMeta = (meta: ComponentMeta) => {
return JSON.stringify({
props: meta.props
.filter((prop) => !prop.global)
.sort((prop1, prop2) => Number(prop1.required) > Number(prop2.required) ? -1 : 1)
.reduce((acc, prop) => ({
...acc,
[prop.name]: ({
types: prop.type.replace(' | undefined', ''),
default: prop.default,
required: prop.required,
})
}), {}),
slots: meta.slots.reduce((acc, slot) => ({
...acc,
[slot.name]: ({
types: slot.type
})
}), {}),
events: meta.events.reduce((acc, event) => ({
...acc,
[event.name]: ({
types: event,
})
}), {}),
methods: {},
// TODO: We need to use exposed in components before
// methods: meta.exposed
// .filter((method) => /^\(.*\)\s?=>.*$/.test(method.type))
// .reduce((acc, method) => ({
// ...acc,
// [method.name]: ({
// types: method.type,
// }),
// }), {})
})
}

export default defineBlockTransform(async function (block) {
if (block.type !== 'api') { return }

Expand All @@ -40,5 +82,6 @@ export default defineBlockTransform(async function (block) {
const cssVariablesFile = await readCssVariables(cssVariablesPath)
const cssVariables = JSON.stringify(parseCssVariables(cssVariablesFile))

return block.replaceArgCode(0, `'${importName}', ${importComponent}, ${cssVariables}`)
const meta = checker.getComponentMeta(importPath, importName)
return block.replaceArgCode(0, `'${importName}', ${importComponent}, ${cssVariables}, ${stringifyMeta(meta)}`)
})
1 change: 1 addition & 0 deletions packages/docs/modules/page-config/blocks/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export type ManualApiOptionsItem = {
export type ManualPropApiOptions = ManualApiOptionsItem & {
hidden?: boolean; // Won't appear in documentation. Intended for internal usage props, such as icon and color configs.
types?: string;
default?: any;
// add more here
}

Expand Down
1 change: 1 addition & 0 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"vitest": "^0.18.1",
"vue-component-meta": "^1.2.0",
"vue-tsc": "^1.0.24"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"vite": "^4.2.1",
"vitest": "*",
"vue-bundle-renderer": "0.4.1",
"vue-tsc": "^0.38.2",
"vue-tsc": "^1.2.0",
"webpack": "5",
"webpack-cli": "^4.9.2",
"when-dependencies-installed": "^1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"vue": "^3.0.4",
"vue-book": "0.2.0-alpha.0",
"vue-loader": "^16.3.0",
"vue-tsc": "^0.38.2",
"vue-tsc": "^1.2.0",
"vuelidate": "^0.7.5",
"webpack": "^5.4.1",
"webpack-bundle-analyzer": "^4.1.0",
Expand Down
Loading