budibase/packages/standard-components/node_modules/@spectrum-css/icon/gulpfile.js

120 lines
3.4 KiB
JavaScript

/*
Copyright 2019 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
const gulp = require('gulp');
const rename = require('gulp-rename');
const path = require('path');
const svgmin = require('gulp-svgmin');
const replace = require('gulp-replace');
const sort = require('gulp-sort');
const svgcombiner = require('gulp-svgcombiner');
const svgstore = require('gulp-svgstore');
const del = require('del');
const vinylPaths = require('vinyl-paths');
function clean() {
return del([
'combined/**'
]);
}
function sanitizeIcons() {
return gulp.src('{medium,large}/*.svg')
.pipe(replace(/<defs>[\s\S]*?<\/defs>/m, ''))
.pipe(replace(/<rect[\s\S]*?\/>/m, ''))
.pipe(svgmin({
plugins: [
{
removeAttrs: {
attrs: [
'class',
'data-name',
'id'
]
}
},
{ collapseGroups: true }
]
}))
.pipe(vinylPaths(del)) // delete the original file
.pipe(rename(path => path.basename = path.basename.split('_').pop().replace('Size', '')))
.pipe(gulp.dest('./'));
}
function generateCombinedIcons() {
return gulp.src('{medium,large}/*.svg')
.pipe(sort())
.pipe(svgcombiner({
processName: function(filePath) {
// Clean filename
return path.basename(filePath, path.extname(filePath)).replace(/S_UI(.*?)_.*/, '$1');
},
processClass: function(filePath) {
// Return the last directory
return 'spectrum-UIIcon--' + path.dirname(filePath).split(path.sep).pop();
}
}))
.pipe(gulp.dest('combined/'));
}
// Only ran by Adobe
const updateIcons = gulp.series(
clean,
sanitizeIcons,
generateCombinedIcons
);
const tasks = require('@spectrum-css/component-builder');
function generateSVGSprite() {
return gulp.src('combined/*.svg')
.pipe(rename(function(filePath) {
filePath.basename = 'spectrum-css-icon-' + filePath.basename;
}))
.pipe(svgstore({
inlineSvg: true
}))
.pipe(rename('spectrum-css-icons.svg'))
.pipe(gulp.dest('dist/'));
}
function getSVGSpriteTask(size) {
return function generateSVGSprite() {
return gulp.src(`${size}/*.svg`)
.pipe(rename(function(filePath) {
filePath.basename = 'spectrum-css-icon-' + filePath.basename.replace(/S_UI(.*?)_.*/, '$1');
}))
.pipe(svgstore({
inlineSvg: true
}))
.pipe(rename(`spectrum-css-icons-${size}.svg`))
.pipe(gulp.dest('dist/'));
};
}
const generateSVGSpriteMedium = getSVGSpriteTask('medium');
const generateSVGSpriteLarge = getSVGSpriteTask('large');
const buildIcons = gulp.parallel(
generateSVGSpriteMedium,
generateSVGSpriteLarge,
generateSVGSprite
);
const build = gulp.parallel(
buildIcons,
tasks.buildCSS
);
exports.updateIcons = updateIcons;
exports.build = exports.buildLite = exports.buildHeavy = build;
exports.default = build;