Skip to content

Commit

Permalink
fix(#3399/build): import css in type_script files, so it is not tree-…
Browse files Browse the repository at this point in the history
…shaken from headless components (#3403)
  • Loading branch information
m0ksem authored May 23, 2023
1 parent 9e12d8b commit f5d3d6b
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions packages/ui/build/plugins/append-component-css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,17 @@ const parsePath = (path: string) => {
}
}

/**
* Checks if file is Vuestic component script source
* Component always have script which is stored in file with name like Va[ComponentName].vue_vue_type_script_lang
*/
const isVuesticComponent = (filename: string) => {
return /Va.*\.(js|mjs)$/.test(filename)
// Va[ComponentName].vue_vue_type_script_lang
return /Va\w*.vue_vue_type_script_lang.*\.mjs$/.test(filename)
}

const extractVuesticComponentName = (filename: string) => {
return filename.match(/(Va\w*).vue_vue_type_script_lang.*/)?.[1]
}

const SOURCE_MAP_COMMENT_FRAGMENT = '//# sourceMappingURL='
Expand All @@ -32,9 +41,15 @@ export const appendComponentCss = createDistTransformPlugin({

const { name, dir } = parsePath(path)

const componentName = extractVuesticComponentName(name)

if (!componentName) {
throw new Error(`Can't extract component name from ${name}`)
}

const distPath = resolve(this.outDir, '..', '..')
const relativeDistPath = relative(dir, distPath)
const relativeFilePath = relativeDistPath + '/' + name.replace(/-.*$/, '') + '.css'
const relativeFilePath = relativeDistPath + '/' + componentName.replace(/-.*$/, '') + '.css'

// There are few cases how vite can store css files (depends on vite version, but we handle both for now):
// CSS stored in dist folder (root)
Expand All @@ -43,10 +58,10 @@ export const appendComponentCss = createDistTransformPlugin({
}

// CSS stored in component folder
const cssFilePath = `${dir}/${name}.css`
const cssFilePath = `${dir}/${componentName}.css`

if (existsSync(cssFilePath)) {
return appendBeforeSourceMapComment(componentContent, `\nimport './${name}.css';`)
return appendBeforeSourceMapComment(componentContent, `\nimport './${componentName}.css';`)
}
},
})

0 comments on commit f5d3d6b

Please sign in to comment.