oxjs/source/Ox.UI/js/Core/Theme.js

155 lines
5.6 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2011-05-16 08:24:46 +00:00
/*@
Ox.Theme <f> get/set theme
() -> <s> Get current theme
(theme) -> <s> Set current theme
theme <s> name of theme
@*/
2011-04-22 22:03:10 +00:00
2011-10-26 14:52:03 +00:00
Ox.Theme = (function() {
2011-04-23 16:45:50 +00:00
2012-06-17 14:42:27 +00:00
var localStorage = Ox.localStorage('Ox'),
that = function(theme) {
return theme ? setTheme(theme) : getTheme();
};
2011-04-23 16:45:50 +00:00
function getTheme() {
2012-05-25 21:42:10 +00:00
var classNames = Ox.UI.$body.attr('class'),
theme = '';
classNames && Ox.forEach(classNames.split(' '), function(className) {
2011-04-23 16:45:50 +00:00
if (Ox.startsWith(className, 'OxTheme')) {
theme = className.replace('OxTheme', '').toLowerCase();
2012-05-25 07:46:34 +00:00
Ox.Break();
2011-04-23 16:45:50 +00:00
}
});
return theme;
}
2012-06-12 11:15:24 +00:00
function renderElement(value, type) {
var $element, background, color, lightness = that[getTheme()].lightness;
2011-10-26 14:52:03 +00:00
if (type == 'hue') {
2012-06-24 15:41:27 +00:00
background = Ox.rgb(value, 1, lightness.background);
color = Ox.rgb(value, 1, lightness.color);
2011-10-26 14:52:03 +00:00
} else if (type == 'saturation') {
background = Ox.range(7).map(function(i) {
2012-06-24 15:41:27 +00:00
return Ox.rgb(i * 60, value, lightness.background);
2011-10-26 14:52:03 +00:00
});
2012-06-24 15:41:27 +00:00
color = Ox.rgb(0, 0, lightness.color);
2011-10-26 14:52:03 +00:00
} else if (type == 'lightness') {
background = Ox.range(3).map(function() {
2012-06-12 11:15:24 +00:00
return Math.round(value * 255);
2011-10-26 14:52:03 +00:00
});
color = Ox.range(3).map(function() {
2012-06-12 11:15:24 +00:00
return Math.round(value * 255) + (value < 0.5 ? 128 : -128);
2011-10-26 14:52:03 +00:00
});
} else if (type == 'gradient') {
background = Ox.range(2).map(function(i) {
2012-06-12 11:15:24 +00:00
return Ox.rgb(value, 1, lightness.background).map(function(value) {
2012-06-24 15:41:27 +00:00
return value + (i == 0 ? 16 : -16);
2011-10-26 14:52:03 +00:00
});
});
2012-06-24 15:41:27 +00:00
color = Ox.rgb(value, 1, lightness.color);
2011-10-26 14:52:03 +00:00
}
$element = $('<div>')
.addClass(
'OxColor'
+ (type == 'lightness' ? '' : ' OxColor' + Ox.toTitleCase(type))
)
.css({
color: 'rgb(' + color.join(', ') + ')'
})
2012-06-12 11:15:24 +00:00
.data(type == 'lightness' ? {} : {OxColor: value});
2011-10-26 14:52:03 +00:00
if (Ox.isNumber(background[0])) {
$element.css({
background: 'rgb(' + background.join(', ') + ')'
});
} else {
['moz', 'o', 'webkit'].forEach(function(browser) {
$element.css({
background: '-' + browser + '-linear-gradient('
+ (background.length == 2 ? 'top' : 'left') + ', '
+ background.map(function(rgb, i) {
return 'rgb(' + rgb.join(', ') + ') '
+ Math.round(i * 100 / (background.length - 1)) + '%';
}).join(', ')
+ ')'
});
});
}
return $element;
};
2011-04-23 16:45:50 +00:00
function setTheme(theme) {
var currentTheme = getTheme();
if (theme != currentTheme) {
2011-04-25 11:40:03 +00:00
Ox.UI.$body
.addClass('OxTheme' + Ox.toTitleCase(theme))
.removeClass('OxTheme' + Ox.toTitleCase(currentTheme));
2011-10-26 14:52:03 +00:00
$('.OxColor').each(function() {
2012-06-12 11:15:24 +00:00
var $element = $(this);
if ($element.hasClass('OxColorName')) {
$element.attr({src: Ox.UI.getImageURL(
$element.data('OxImage'), theme, $element.data('OxColor')
)});
} else {
Ox.forEach(['hue', 'saturation', 'gradient'], function(type) {
if ($element.hasClass('OxColor' + Ox.toTitleCase(type))) {
var value = $element.data('OxColor'),
$element_ = renderElement(value, type);
2011-10-26 14:52:03 +00:00
$element.css({
background: $element_.css('background'),
color: $element_.css('color')
});
2012-06-12 11:15:24 +00:00
Ox.Break();
}
});
}
2011-10-26 14:52:03 +00:00
});
2012-06-12 11:15:24 +00:00
$('img').add('input[type="image"]').not('.OxColor').not('.OxVideo')
.each(function(element) {
var $element = $(this), src = $element.attr('src');
$element.attr({
src: Ox.UI.getImageURL(Ox.UI.getImageName(src), theme)
});
2011-04-23 16:45:50 +00:00
});
}
2012-06-17 14:42:27 +00:00
localStorage({theme: theme});
2011-10-26 14:52:03 +00:00
return that;
2011-04-23 16:45:50 +00:00
}
2012-05-21 10:38:18 +00:00
/*@
2012-06-12 11:15:24 +00:00
formatColor <f> Returns a themed colored element
2012-05-21 10:38:18 +00:00
@*/
2012-06-12 11:15:24 +00:00
that.formatColor = function(value, type) {
return renderElement(value, type)
2011-10-26 14:52:03 +00:00
.css({textAlign: 'center'})
2012-06-12 11:15:24 +00:00
.html(Ox.formatNumber(value, 3));
2011-10-26 14:52:03 +00:00
};
2011-04-23 16:45:50 +00:00
2012-05-21 10:38:18 +00:00
/*@
2012-06-12 11:15:24 +00:00
formatColorLevel <f> Returns a themed colored element
2012-05-21 10:38:18 +00:00
@*/
2011-10-26 14:52:03 +00:00
that.formatColorLevel = function(index, values, hueRange) {
hueRange = hueRange || (Ox.isBoolean(index) ? [0, 120] : [120, 0]);
var step = (hueRange[1] - hueRange[0]) / (values.length - 1),
hue = hueRange[0] + index * step;
return renderElement(hue, 'gradient')
.css({textAlign: 'center'})
.html(values[+index]);
2011-04-22 22:03:10 +00:00
};
2012-06-12 11:15:24 +00:00
/*@
getColorImage <f> Returns a themed colored image
@*/
that.getColorImage = function(name, value, tooltip) {
return (tooltip ? Ox.Element({element: '<img>', tooltip: tooltip}) : $('<img>'))
.addClass('OxColor OxColorName')
.attr({src: Ox.UI.getImageURL(name, null, value)})
.data({OxColor: value, OxImage: name});
};
2011-10-26 14:52:03 +00:00
return that;
2011-04-22 22:03:10 +00:00
2011-11-04 16:04:46 +00:00
}());