-
-
Save egesu/5bbfe92f775dcea8ed9f100371edf9a1 to your computer and use it in GitHub Desktop.
Angular Material Directive to Access Theme Colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// source: https://gist.github.com/Todd-Werelius/bbc735daec6951938c4b | |
(function() { | |
angular.module('mdxUtil', ['ngMaterial']) | |
.directive('mdxPaintFg', function(mdx) { | |
"use strict"; | |
return { | |
restrict: 'A', | |
link: function(scope, element, attributes) { | |
setRGB(element, 'color', mdx.mdxThemeColors, attributes.mdxPaintFg, 'mdx-paint-fg'); | |
} | |
} | |
}) | |
.directive('mdxPaintBg', function(mdx) { | |
"use strict"; | |
return { | |
restrict: 'A', | |
link: function(scope, element, attributes) { | |
setRGB(element, 'background-color', mdx.mdxThemeColors, attributes.mdxPaintBg, 'mdx-paint-bg'); | |
} | |
} | |
}) | |
.directive('mdxPaintSvg', function(mdx) { | |
"use strict"; | |
return { | |
restrict: 'A', | |
link: function(scope, element, attributes) { | |
setRGB(element, 'fill', mdx.mdxThemeColors, attributes.mdxPaintSvg, 'mdx-paint-svg'); | |
} | |
} | |
}) | |
// Couldn't get access to _PALETTES any other way? | |
.provider('mdx', function($mdThemingProvider) { | |
return { | |
$get: function() { | |
"use strict"; | |
return { | |
mdxThemeColors: $mdThemingProvider | |
} | |
} | |
} | |
}); | |
function setRGB(element, styled, themeProvider, input, directiveName) { | |
"use strict"; | |
var themeName = 'default'; | |
var hueName = 'default'; | |
var intentionName = 'primary'; | |
var hueKey, theme, hue, intention; | |
// Do our best to parse out the attributes | |
angular.forEach(input.split(" "), function(value, key) { | |
if (0 === key) { | |
themeName = value; | |
} else | |
if ({ | |
primary: 'primary', | |
accent: 'accent', | |
warn: 'warn', | |
background: 'background' | |
}[value]) { | |
intentionName = value; | |
} else if ({ | |
default: 'default', | |
'hue-1': 'hue-1', | |
'hue-2': 'hue-2', | |
'hue-3': 'hue-3' | |
}[value]) { | |
hueName = value; | |
} else if ({ | |
'50': '50', | |
'100': '100', | |
'200': '200', | |
'300': '300', | |
'400': '400', | |
'500': '500', | |
'600': '600', | |
'700': '700', | |
'800': '800', | |
'A100': 'A100', | |
'A200': 'A200', | |
'A400': 'A400', | |
'A700': 'A700' | |
}[value]) { | |
hueKey = value; | |
} | |
}); | |
// Lookup and assign the right values | |
if ((theme = (themeProvider._THEMES[themeName] || themeProvider._THEMES.default))) { | |
if ((intention = theme.colors[intentionName])) { | |
if (!hueKey) { | |
hueKey = intention.hues[hueName]; | |
} | |
if ((hue = themeProvider._PALETTES[intention.name][hueKey])) { | |
element.css(styled, 'rgb(' + hue.value[0] + ',' + hue.value[1] + ',' + hue.value[2] + ')'); | |
return; | |
} | |
} | |
} | |
reportError("%s='%s' bad or missing attributes", directiveName, input); | |
} | |
function reportError(errString, name, input) { | |
"use strict"; | |
console.error(errString, name, input); | |
console.log(' usage %s="[theme] intention [hue]"', name); | |
console.log(' acceptable intentions : primary,accent,warn,background'); | |
console.log(' acceptable hues : default,hue-1,hue-2,hue-3'); | |
} | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment