dependabot[bot] dab7914eab
Bump @justinribeiro/lite-youtube from 0.9.0 to 0.9.1 in /build/javascript (#273)
* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript (#265)

* Trying a new github workflow to install javascript packages

* Bump tailwindcss from 1.9.2 to 1.9.4 in /build/javascript (#266)

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 1.9.2 to 1.9.4.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript

Bumps [preact](https://github.com/preactjs/preact) from 10.5.4 to 10.5.5.
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](https://github.com/preactjs/preact/compare/10.5.4...10.5.5)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Owncast <owncast@owncast.online>

* Bump @justinribeiro/lite-youtube in /build/javascript

Bumps [@justinribeiro/lite-youtube](https://github.com/justinribeiro/lite-youtube) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/justinribeiro/lite-youtube/releases)
- [Commits](https://github.com/justinribeiro/lite-youtube/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Owncast <owncast@owncast.online>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
2020-10-20 15:15:56 -07:00

154 lines
3.9 KiB
JavaScript

var fs = require('fs');
var path = require('path');
var _ = require('lodash');
let iconsIndex = [];
// Merge a `source` object to a `target` recursively
function merge(target, source) {
// Check if font name is changed
if (source['font-name']) {
target['font-name'] = source['font-name'];
}
// Check if root dir is changed
if (source['root-dir']) {
target['root-dir'] = source['root-dir'];
}
// Check for icon changes
if (source.icons) {
for (let icon of source['icons']) {
let index = iconsIndex.indexOf(icon.name);
// Icon is replaced
if (index !== -1) {
target.icons[index] = icon;
}
// New icon is added
else {
target.icons.push(icon);
iconsIndex.push(icon.name);
}
}
}
return target;
}
module.exports = function(grunt) {
grunt.initConfig({
sass: {
dist: {
files: {
'css/videojs-icons.css': 'scss/videojs-icons.scss'
}
}
},
watch: {
all: {
files: ['**/*.hbs', '**/*.js', './icons.json'],
tasks: ['default']
}
}
});
grunt.registerTask('generate-font', function() {
var done = this.async();
let webfontsGenerator = require('webfonts-generator');
let iconConfig = grunt.file.readJSON(path.join(__dirname, '..', 'icons.json'));
let svgRootDir = iconConfig['root-dir'];
if (grunt.option('exclude-default')) {
// Exclude default video.js icons
iconConfig.icons = [];
}
let icons = iconConfig.icons;
// Index default icons
for (let i = 0; i < icons.length; i++) {
iconsIndex.push(icons[i].name);
}
// Merge custom icons
const paths = (grunt.option('custom-json') || '').split(',').filter(Boolean);
for (let i = 0; i < paths.length; i++) {
let customConfig = grunt.file.readJSON(path.resolve(process.cwd(), paths[i]));
iconConfig = merge(iconConfig, customConfig);
}
icons = iconConfig.icons;
let iconFiles = icons.map(function(icon) {
// If root-dir is specified for a specific icon, use that.
if (icon['root-dir']) {
return icon['root-dir'] + icon.svg;
}
// Otherwise, use the default root-dir.
return svgRootDir + icon.svg;
});
webfontsGenerator({
files: iconFiles,
dest: 'fonts/',
fontName: iconConfig['font-name'],
cssDest: 'scss/_icons.scss',
cssTemplate: './templates/scss.hbs',
htmlDest: 'index.html',
htmlTemplate: './templates/html.hbs',
html: true,
rename: function(iconPath) {
let fileName = path.basename(iconPath);
let iconName = _.result(_.find(icons, function(icon) {
let svgName = path.basename(icon.svg);
return svgName === fileName;
}), 'name');
return iconName;
},
types: ['svg', 'woff', 'ttf']
}, function(error) {
if (error) {
console.error(error);
done(false);
}
done();
});
});
grunt.registerTask('update-base64', function() {
let iconScssFile = './scss/_icons.scss';
let iconConfig;
if (grunt.option('custom-json')) {
iconConfig = grunt.file.readJSON(path.resolve(process.cwd(), grunt.option('custom-json')));
} else {
iconConfig = grunt.file.readJSON(path.join(__dirname, '..', 'icons.json'));
}
let fontName = iconConfig['font-name'];
let fontFiles = {
woff: './fonts/' + fontName + '.woff'
};
let scssContents = fs.readFileSync(iconScssFile).toString();
Object.keys(fontFiles).forEach(function(font) {
let fontFile = fontFiles[font];
let fontContent = fs.readFileSync(fontFile);
let regex = new RegExp(`(url.*font-${font}.*base64,)([^\\s]+)(\\).*)`);
scssContents = scssContents.replace(regex, `$1${fontContent.toString('base64')}$3`);
});
fs.writeFileSync(iconScssFile, scssContents);
});
grunt.registerTask('default', ['generate-font', 'update-base64', 'sass']);
};