2016-10-08 01:56:29 +08:00
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
|
|
* @ngdoc directive
|
|
|
|
* @name passmanApp.directive:passwordGen
|
|
|
|
* @description
|
|
|
|
* # passwordGen
|
|
|
|
*/
|
|
|
|
angular.module('passmanApp')
|
|
|
|
.directive('useTheme', ['$window', function ($window) {
|
2016-09-14 21:09:55 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
function invertColor (hexTripletColor) {
|
|
|
|
var color = hexTripletColor;
|
|
|
|
color = color.substring(1); // remove #
|
|
|
|
color = parseInt(color, 16); // convert to integer
|
|
|
|
color = 0xFFFFFF ^ color; // invert three bytes
|
|
|
|
color = color.toString(16); // convert to hex
|
|
|
|
color = ("000000" + color).slice(-6); // pad with leading zeros
|
|
|
|
color = "#" + color; // prepend #
|
|
|
|
return color;
|
|
|
|
}
|
2016-09-28 06:46:51 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
return {
|
|
|
|
restrict: 'A',
|
|
|
|
scope: {
|
|
|
|
type: '=type',
|
|
|
|
color: '=',
|
|
|
|
negative: '='
|
|
|
|
},
|
|
|
|
link: function (scope, el, attr, ctrl) {
|
|
|
|
var _color = jQuery('#header').css('background-color');
|
|
|
|
var _bg = _color;
|
|
|
|
if (scope.negative) {
|
|
|
|
_bg = invertColor(_bg);
|
|
|
|
}
|
|
|
|
if (!scope.type) {
|
|
|
|
jQuery(el).css('background-color', _bg);
|
|
|
|
} else {
|
|
|
|
jQuery(el).css(scope.type, _bg);
|
|
|
|
}
|
|
|
|
if (scope.color) {
|
|
|
|
jQuery(el).css('color', invertColor(_color));
|
|
|
|
}
|
2016-09-27 01:15:39 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
|
|
|
}]);
|
|
|
|
}());
|