pinafore/bin/build-svg.js

42 wiersze
1.5 KiB
JavaScript
Czysty Zwykły widok Historia

import svgs from './svgs.js'
import path from 'path'
import fs from 'fs'
import { promisify } from 'util'
2021-05-15 20:28:42 +00:00
import { optimize } from 'svgo'
import cheerioPackage from 'cheerio'
2018-01-27 20:48:22 +00:00
const { default: $ } = cheerioPackage
const __dirname = path.dirname(new URL(import.meta.url).pathname)
const readFile = promisify(fs.readFile)
const writeFile = promisify(fs.writeFile)
async function readSvg (svg) {
2019-08-03 20:49:37 +00:00
const filepath = path.join(__dirname, '../', svg.src)
const content = await readFile(filepath, 'utf8')
2021-05-15 20:28:42 +00:00
const optimized = (await optimize(content, { multipass: true }))
2019-08-03 20:49:37 +00:00
const $optimized = $(optimized.data)
const $path = $optimized.find('path, circle').removeAttr('fill')
2020-08-25 23:36:41 +00:00
const viewBox = $optimized.attr('viewBox') || `0 0 ${$optimized.attr('width')} ${$optimized.attr('height')}`
2019-08-03 20:49:37 +00:00
const $symbol = $('<symbol></symbol>')
.attr('id', svg.id)
2020-08-25 23:36:41 +00:00
.attr('viewBox', viewBox)
.append($path)
return $.xml($symbol)
}
2018-01-27 20:48:22 +00:00
export async function buildSvg () {
2019-08-03 20:49:37 +00:00
const inlineSvgs = svgs.filter(_ => _.inline)
const regularSvgs = svgs.filter(_ => !_.inline)
2019-08-03 20:49:37 +00:00
const inlineSvgStrings = (await Promise.all(inlineSvgs.map(readSvg))).join('')
const regularSvgStrings = (await Promise.all(regularSvgs.map(readSvg))).join('')
2019-08-03 20:49:37 +00:00
const inlineOutput = `<svg xmlns="http://www.w3.org/2000/svg" style="display:none">${inlineSvgStrings}</svg>`
const regularOutput = `<svg xmlns="http://www.w3.org/2000/svg">${regularSvgStrings}</svg>`
await writeFile(path.resolve(__dirname, '../static/icons.svg'), regularOutput, 'utf8')
2018-01-27 20:48:22 +00:00
return inlineOutput
2018-01-27 20:48:22 +00:00
}