icon.ts 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import path from 'path'
  2. import fs from 'fs-extra'
  3. import inquirer from 'inquirer'
  4. import chalk from 'chalk'
  5. import pkg from '../package.json'
  6. interface Icon {
  7. name: string
  8. prefix: string
  9. icons: string[]
  10. }
  11. async function generateIcon() {
  12. const dir = path.resolve(process.cwd(), 'node_modules/@iconify/json')
  13. const raw = await fs.readJSON(path.join(dir, 'collections.json'))
  14. const collections = Object.entries(raw).map(([id, v]) => ({
  15. ...(v as any),
  16. id
  17. }))
  18. const choices = collections.map((item) => ({ key: item.id, value: item.id, name: item.name }))
  19. inquirer
  20. .prompt([
  21. // {
  22. // type: 'list',
  23. // name: 'useType',
  24. // choices: [
  25. // { key: 'local', value: 'local', name: 'Local' },
  26. // { key: 'onLine', value: 'onLine', name: 'OnLine' }
  27. // ],
  28. // message: 'How to use icons?'
  29. // },
  30. {
  31. type: 'list',
  32. name: 'iconSet',
  33. choices: choices,
  34. message: 'Select the icon set that needs to be generated?'
  35. }
  36. ])
  37. // ↓命令行问答的答案
  38. .then(async (answers) => {
  39. const { iconSet } = answers
  40. // const isOnLine = useType === 'onLine'
  41. const outputDir = path.resolve(process.cwd(), 'src/components/IconPicker/src/data')
  42. fs.ensureDir(outputDir)
  43. const genCollections = collections.filter((item) => [iconSet].includes(item.id))
  44. const prefixSet: string[] = []
  45. for (const info of genCollections) {
  46. const data = await fs.readJSON(path.join(dir, 'json', `${info.id}.json`))
  47. if (data) {
  48. const { prefix } = data
  49. const icons = Object.keys(data.icons).map((item) => `${prefix}:${item}`)
  50. await fs.writeFileSync(
  51. path.join('src/components/IconPicker/src/data', `icons.${prefix}.ts`),
  52. `export default ${JSON.stringify({ name: info.name, prefix, icons })}`
  53. )
  54. // ↓分类处理完成,push类型名称
  55. prefixSet.push(prefix)
  56. }
  57. }
  58. console.log(
  59. `✨ ${chalk.cyan(`[${pkg.name}]`)}` + ' - Icon generated successfully:' + `[${prefixSet}]`
  60. )
  61. })
  62. }
  63. generateIcon()