mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* 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>
222 lines
6.8 KiB
JavaScript
222 lines
6.8 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = resolveConfig;
|
|
|
|
var _some = _interopRequireDefault(require("lodash/some"));
|
|
|
|
var _mergeWith = _interopRequireDefault(require("lodash/mergeWith"));
|
|
|
|
var _isFunction = _interopRequireDefault(require("lodash/isFunction"));
|
|
|
|
var _isUndefined = _interopRequireDefault(require("lodash/isUndefined"));
|
|
|
|
var _defaults = _interopRequireDefault(require("lodash/defaults"));
|
|
|
|
var _map = _interopRequireDefault(require("lodash/map"));
|
|
|
|
var _get = _interopRequireDefault(require("lodash/get"));
|
|
|
|
var _toPath = _interopRequireDefault(require("lodash/toPath"));
|
|
|
|
var _negateValue = _interopRequireDefault(require("./negateValue"));
|
|
|
|
var _corePluginList = require("../corePluginList");
|
|
|
|
var _configurePlugins = _interopRequireDefault(require("./configurePlugins"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
const configUtils = {
|
|
negative(scale) {
|
|
return Object.keys(scale).filter(key => scale[key] !== '0').reduce((negativeScale, key) => ({ ...negativeScale,
|
|
[`-${key}`]: (0, _negateValue.default)(scale[key])
|
|
}), {});
|
|
},
|
|
|
|
breakpoints(screens) {
|
|
return Object.keys(screens).filter(key => typeof screens[key] === 'string').reduce((breakpoints, key) => ({ ...breakpoints,
|
|
[`screen-${key}`]: screens[key]
|
|
}), {});
|
|
}
|
|
|
|
};
|
|
|
|
function value(valueToResolve, ...args) {
|
|
return (0, _isFunction.default)(valueToResolve) ? valueToResolve(...args) : valueToResolve;
|
|
}
|
|
|
|
function mergeThemes(themes) {
|
|
const theme = (({
|
|
extend: _,
|
|
...t
|
|
}) => t)(themes.reduce((merged, t) => {
|
|
return (0, _defaults.default)(merged, t);
|
|
}, {}));
|
|
|
|
return { ...theme,
|
|
// In order to resolve n config objects, we combine all of their `extend` properties
|
|
// into arrays instead of objects so they aren't overridden.
|
|
extend: themes.reduce((merged, {
|
|
extend
|
|
}) => {
|
|
return (0, _mergeWith.default)(merged, extend, (mergedValue, extendValue) => {
|
|
if ((0, _isUndefined.default)(mergedValue)) {
|
|
return [extendValue];
|
|
}
|
|
|
|
if (Array.isArray(mergedValue)) {
|
|
return [extendValue, ...mergedValue];
|
|
}
|
|
|
|
return [extendValue, mergedValue];
|
|
});
|
|
}, {})
|
|
};
|
|
}
|
|
|
|
function mergeExtensions({
|
|
extend,
|
|
...theme
|
|
}) {
|
|
return (0, _mergeWith.default)(theme, extend, (themeValue, extensions) => {
|
|
// The `extend` property is an array, so we need to check if it contains any functions
|
|
if (!(0, _isFunction.default)(themeValue) && !(0, _some.default)(extensions, _isFunction.default)) {
|
|
return { ...themeValue,
|
|
...Object.assign({}, ...extensions)
|
|
};
|
|
}
|
|
|
|
return (resolveThemePath, utils) => ({ ...value(themeValue, resolveThemePath, utils),
|
|
...Object.assign({}, ...extensions.map(e => value(e, resolveThemePath, utils)))
|
|
});
|
|
});
|
|
}
|
|
|
|
function resolveFunctionKeys(object) {
|
|
const resolvePath = (key, defaultValue) => {
|
|
const path = (0, _toPath.default)(key);
|
|
let index = 0;
|
|
let val = object;
|
|
|
|
while (val !== undefined && val !== null && index < path.length) {
|
|
val = val[path[index++]];
|
|
val = (0, _isFunction.default)(val) ? val(resolvePath, configUtils) : val;
|
|
}
|
|
|
|
return val === undefined ? defaultValue : val;
|
|
};
|
|
|
|
return Object.keys(object).reduce((resolved, key) => {
|
|
return { ...resolved,
|
|
[key]: (0, _isFunction.default)(object[key]) ? object[key](resolvePath, configUtils) : object[key]
|
|
};
|
|
}, {});
|
|
}
|
|
|
|
function extractPluginConfigs(configs) {
|
|
let allConfigs = [];
|
|
configs.forEach(config => {
|
|
allConfigs = [...allConfigs, config];
|
|
const plugins = (0, _get.default)(config, 'plugins', []);
|
|
|
|
if (plugins.length === 0) {
|
|
return;
|
|
}
|
|
|
|
plugins.forEach(plugin => {
|
|
if (plugin.__isOptionsFunction) {
|
|
plugin = plugin();
|
|
}
|
|
|
|
allConfigs = [...allConfigs, ...extractPluginConfigs([(0, _get.default)(plugin, 'config', {})])];
|
|
});
|
|
});
|
|
return allConfigs;
|
|
}
|
|
|
|
function resolveVariants([firstConfig, ...variantConfigs]) {
|
|
if (Array.isArray(firstConfig)) {
|
|
return firstConfig;
|
|
}
|
|
|
|
return [firstConfig, ...variantConfigs].reverse().reduce((resolved, variants) => {
|
|
Object.entries(variants || {}).forEach(([plugin, pluginVariants]) => {
|
|
if ((0, _isFunction.default)(pluginVariants)) {
|
|
resolved[plugin] = pluginVariants({
|
|
variants(path) {
|
|
return (0, _get.default)(resolved, path, []);
|
|
},
|
|
|
|
before(toInsert, variant, existingPluginVariants = (0, _get.default)(resolved, plugin, [])) {
|
|
if (variant === undefined) {
|
|
return [...toInsert, ...existingPluginVariants];
|
|
}
|
|
|
|
const index = existingPluginVariants.indexOf(variant);
|
|
|
|
if (index === -1) {
|
|
return [...existingPluginVariants, ...toInsert];
|
|
}
|
|
|
|
return [...existingPluginVariants.slice(0, index), ...toInsert, ...existingPluginVariants.slice(index)];
|
|
},
|
|
|
|
after(toInsert, variant, existingPluginVariants = (0, _get.default)(resolved, plugin, [])) {
|
|
if (variant === undefined) {
|
|
return [...existingPluginVariants, ...toInsert];
|
|
}
|
|
|
|
const index = existingPluginVariants.indexOf(variant);
|
|
|
|
if (index === -1) {
|
|
return [...toInsert, ...existingPluginVariants];
|
|
}
|
|
|
|
return [...existingPluginVariants.slice(0, index + 1), ...toInsert, ...existingPluginVariants.slice(index + 1)];
|
|
},
|
|
|
|
without(toRemove, existingPluginVariants = (0, _get.default)(resolved, plugin, [])) {
|
|
return existingPluginVariants.filter(v => !toRemove.includes(v));
|
|
}
|
|
|
|
});
|
|
} else {
|
|
resolved[plugin] = pluginVariants;
|
|
}
|
|
});
|
|
return resolved;
|
|
}, {});
|
|
}
|
|
|
|
function resolveCorePlugins(corePluginConfigs) {
|
|
const result = [...corePluginConfigs].reverse().reduce((resolved, corePluginConfig) => {
|
|
if ((0, _isFunction.default)(corePluginConfig)) {
|
|
return corePluginConfig({
|
|
corePlugins: resolved
|
|
});
|
|
}
|
|
|
|
return (0, _configurePlugins.default)(corePluginConfig, resolved);
|
|
}, _corePluginList.corePluginList);
|
|
return result;
|
|
}
|
|
|
|
function resolvePluginLists(pluginLists) {
|
|
const result = [...pluginLists].reverse().reduce((resolved, pluginList) => {
|
|
return [...resolved, ...pluginList];
|
|
}, []);
|
|
return result;
|
|
}
|
|
|
|
function resolveConfig(configs) {
|
|
const allConfigs = extractPluginConfigs(configs);
|
|
return (0, _defaults.default)({
|
|
theme: resolveFunctionKeys(mergeExtensions(mergeThemes((0, _map.default)(allConfigs, t => (0, _get.default)(t, 'theme', {}))))),
|
|
variants: resolveVariants(allConfigs.map(c => c.variants)),
|
|
corePlugins: resolveCorePlugins(allConfigs.map(c => c.corePlugins)),
|
|
plugins: resolvePluginLists(configs.map(c => (0, _get.default)(c, 'plugins', [])))
|
|
}, ...allConfigs);
|
|
} |