2020-05-22 06:36:24 +00:00
|
|
|
// @flow
|
2021-11-16 21:16:18 +00:00
|
|
|
|
2021-11-15 08:37:54 +00:00
|
|
|
import { createMuiTheme } from '@material-ui/core/styles';
|
|
|
|
|
|
|
|
import { font, colors, colorMap, spacing, shape, typography, breakpoints } from '../base/ui/Tokens';
|
|
|
|
import { createColorTokens } from '../base/ui/utils';
|
2020-05-22 06:36:24 +00:00
|
|
|
|
2021-11-15 08:37:54 +00:00
|
|
|
/**
|
|
|
|
* Creates MUI branding theme based on the custom theme json.
|
|
|
|
*
|
|
|
|
* @param {Object} customTheme - The branded custom theme.
|
|
|
|
* @returns {Object} - The MUI theme.
|
|
|
|
*/
|
|
|
|
export function createMuiBrandingTheme(customTheme: Object) {
|
|
|
|
const {
|
|
|
|
palette: customPalette,
|
|
|
|
shape: customShape,
|
|
|
|
typography: customTypography,
|
|
|
|
breakpoints: customBreakpoints,
|
|
|
|
spacing: customSpacing
|
|
|
|
} = customTheme;
|
|
|
|
|
|
|
|
const newPalette = createColorTokens(colorMap, colors);
|
|
|
|
|
|
|
|
if (customPalette) {
|
|
|
|
overwriteRecurrsive(newPalette, customPalette);
|
|
|
|
}
|
|
|
|
|
|
|
|
const newShape = { ...shape };
|
|
|
|
|
|
|
|
if (customShape) {
|
|
|
|
overwriteRecurrsive(newShape, customShape);
|
|
|
|
}
|
|
|
|
|
|
|
|
const newTypography = {
|
|
|
|
font: { ...font },
|
|
|
|
...typography
|
|
|
|
};
|
|
|
|
|
|
|
|
if (customTypography) {
|
|
|
|
overwriteRecurrsive(newTypography, customTypography);
|
|
|
|
}
|
|
|
|
|
|
|
|
const newBreakpoints = { ...breakpoints };
|
|
|
|
|
|
|
|
if (customBreakpoints) {
|
|
|
|
overwriteRecurrsive(newBreakpoints, customBreakpoints);
|
|
|
|
}
|
|
|
|
|
|
|
|
let newSpacing = [ ...spacing ];
|
|
|
|
|
|
|
|
if (customSpacing && customSpacing.length) {
|
|
|
|
newSpacing = customSpacing;
|
|
|
|
}
|
|
|
|
|
|
|
|
return createMuiTheme({
|
|
|
|
props: {
|
|
|
|
// disable ripple effect on buttons globally
|
|
|
|
MuiButtonBase: {
|
|
|
|
disableRipple: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// use token spacing array
|
|
|
|
spacing: newSpacing
|
|
|
|
}, {
|
|
|
|
palette: newPalette,
|
|
|
|
shape: newShape,
|
|
|
|
typography: newTypography,
|
|
|
|
breakpoints: newBreakpoints
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-16 21:16:18 +00:00
|
|
|
* Overwrites recursively values from object 2 into object 1 based on common keys.
|
|
|
|
* (Merges object2 into object1).
|
|
|
|
*
|
|
|
|
* @param {Object} obj1 - The object holding the merged values.
|
|
|
|
* @param {Object} obj2 - The object to compare to and take values from.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2021-11-15 08:37:54 +00:00
|
|
|
function overwriteRecurrsive(obj1: Object, obj2: Object) {
|
|
|
|
Object.keys(obj2).forEach(key => {
|
|
|
|
if (obj1.hasOwnProperty(key)) {
|
|
|
|
if (typeof obj1[key] === 'object') {
|
|
|
|
overwriteRecurrsive(obj1[key], obj2[key]);
|
|
|
|
} else {
|
|
|
|
obj1[key] = obj2[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|