index.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #!/usr/bin/env node
  2. import fs from 'fs-extra';
  3. import { optimize } from 'svgo';
  4. import svgstore from 'svgstore';
  5. export default function svgSprite(datas) {
  6. // 可接收多组参数,处理多个文件夹内的文件
  7. // Multiple parameters can be accepted to process files in multiple folders
  8. const data = datas ? datas : [{ inFile: 'src/lib/symbol', outFile: 'static/fonts', fileName: '', simple: true }];
  9. // 循环处理每一组参数
  10. // Loop through each set of parameters
  11. data.forEach(item => {
  12. const { inFile, outFile, fileName, simple = true } = item;
  13. // 如果 fileName 为默认 '',则将 inFile 的最后一个文件夹作为 fileName,注意不同操作系统的路径分隔符
  14. // If fileName is the default '', then the last folder of inFile is used as fileName, pay attention to the path separator of different operating systems
  15. const fileNameInner = fileName ? fileName : inFile.split('/').pop();
  16. handleFile(inFile, outFile, fileNameInner, simple);
  17. });
  18. return { name: 'rollup-plugin-stdf-icon' };
  19. }
  20. // 处理一个文件夹内的文件
  21. // Process files in a folder
  22. function handleFile(inFile, outFile, fileName, simple = true) {
  23. // 如果 outFile 不存在, 则创建
  24. // If outFile does not exist, create it
  25. if (!fs.existsSync(outFile)) {
  26. fs.mkdirSync(outFile);
  27. }
  28. // 创建一个空的 svgstore
  29. // Create an empty svgstore
  30. const sprites = svgstore({ cleanDefs: true });
  31. // 循环 icons 目录下的所有 svg 文件
  32. // Loop through all svg files in the icons directory
  33. const svgs = fs.readdirSync(inFile);
  34. svgs.forEach(svg => {
  35. if (!svg.endsWith('.svg')) {
  36. // 读取 svg 文件内容, 如果文件不是 svg 文件, 则给出提示并跳过
  37. // Read the contents of the svg file, if the file is not an svg file, give a prompt and skip
  38. console.warn(`[rollup-plugin-stdf-icon]: ${inFile}/${svg} is not a svg file, skip it!`);
  39. } else {
  40. const code = fs.readFileSync(`${inFile}/${svg}`, 'utf8');
  41. // 使用 SVGO 进行优化
  42. // Use SVGO for optimization
  43. const result = optimize(code);
  44. // 删除 result 中的 p-id class 等属性
  45. // Delete p-id class and other attributes in result
  46. result.data = result.data.replace(/p-id="[^"]*"/g, '').replace(/class="[^"]*"/g, '');
  47. // 如果 result 中有 fill 属性,属性值不为 none, 则将 fill 属性值设置为 currentColor
  48. // If there is a fill attribute in result, the attribute value is not none, then set the fill attribute value to currentColor
  49. if (simple && result.data.indexOf('fill=') > -1 && result.data.indexOf('fill="none"') === -1) {
  50. result.data = result.data.replace(/fill="[^"]*"/g, 'fill="currentColor"');
  51. }
  52. // 如果 result 中有 stroke 属性,属性值不为 none, 则将 stroke 属性值设置为 currentColor
  53. // If there is a stroke attribute in result, the attribute value is not none, then set the stroke attribute value to currentColor
  54. if (simple && result.data.indexOf('stroke=') > -1 && result.data.indexOf('stroke="none"') === -1) {
  55. result.data = result.data.replace(/stroke="[^"]*"/g, 'stroke="currentColor"');
  56. }
  57. // 将优化后的 svg 添加到 sprites 中
  58. // Add the optimized svg to sprites
  59. sprites.add(svg.replace('.svg', ''), result.data, { copyAttrs: ['fill', 'stroke'] });
  60. }
  61. });
  62. // 删除 sprites 的 <?xml...?> 标签和 <!DOCTYPE...> 标签 和 <defs/> 标签
  63. // Delete the <?xml...?> tag and <!DOCTYPE...> tag of sprites
  64. const spritesStr = sprites
  65. .toString()
  66. .replace(/<\?xml[^>]*>/g, '')
  67. .replace(/<!DOCTYPE[^>]*>/g, '')
  68. .replace(/<defs\/>/g, '');
  69. // 写入到指定的文件中
  70. // Write to the specified file
  71. fs.writeFileSync(outFile + '/' + fileName + '.svg', spritesStr);
  72. }