-
Notifications
You must be signed in to change notification settings - Fork 29
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
✨ FR: Json schema for custom block #10
Comments
Hi @johnsoncodehk , I'm learning how to write a volar plugin. I try to specify a Json schema for a specific custom block: /** @type {import('@volar/vue-language-core').VueLanguagePlugin} */
const schemaUrl = 'https://json.schemastore.org/prettierrc.json'
const blockType = 'route'
const plugin = () => {
return {
name: 'example-volar-plugin-json-schema',
version: 1,
getEmbeddedFileNames(fileName, sfc) {
const names = []
for (let i = 0; i < sfc.customBlocks.length; i++) {
const customBlock = sfc.customBlocks[i]
names.push(
fileName +
'.customBlock_' +
customBlock.type +
'_' +
i +
'.' +
customBlock.lang
)
}
return names
},
resolveEmbeddedFile(fileName, sfc, embeddedFile) {
if (embeddedFile.fileName.replace(fileName, '').match(/^\.(jsx|tsx)$/)) {
for (const block of sfc.customBlocks) {
if (block.type === blockType) {
try {
block.content = block.content.replace(
'{',
`{"$schema":"${schemaUrl}",`
)
} catch {
/* continue regardless of error */
}
}
}
}
const match = embeddedFile.fileName.match(
/^(.*)\.customBlock_([^_]+)_(\d+)\.([^.]+)$/
)
if (match) {
embeddedFile.content[0][2] = -`"$schema":"${schemaUrl}",`.length
}
},
}
}
module.exports = plugin I don't know if my thinking is correct. It seems that autocompletion, hover and validation, they all work! But when I hover on a property, tip shows twice: The second problem is that the relative path of Json schema in a SFC custom block is related to root of the disk instead of workspace: Maybe we need to implement Any guidance would be appreciated! |
Hi @kingyue737, you don't need to use VueLanguagePlugin, please try https://github.com/johnsoncodehk/volar-plugins/tree/master/packages/vue-json. |
Some popular libraries like
vue-i18n
,unplugin-vue-router
,vite-plugin-pages
and@nuxtjs/router-extras
allow to define a custom json block in SFC, eg.<route>
,<i18n>
. With support of json schema, users can profit auto-completion or validation in those custom blocks.Author of volar thinks it's easy to implement😀
The text was updated successfully, but these errors were encountered: