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

138 lines
4.1 KiB
JavaScript
Raw Normal View History

2014-09-25 10:28:03 +00:00
'use strict';
2014-09-25 16:28:49 +00:00
//@ Ox.DIMENSIONS <o> Names of horizontal and vertical dimensions
Ox.DIMENSIONS = Ox.UI.DIMENSIONS = {
horizontal: ['width', 'height'],
vertical: ['height', 'width']
};
//@ Ox.EDGES <o> Names of horizontal and vertical edges
Ox.EDGES = Ox.UI.EDGES = {
horizontal: ['left', 'right', 'top', 'bottom'],
vertical: ['top', 'bottom', 'left', 'right']
};
//@ Ox.SCOLLBAR_SIZE <n> Size of scrollbars
Ox.SCROLLBAR_SIZE = Ox.UI.SCROLLBAR_SIZE = $.browser.webkit ? 8 : (function() {
var inner = Ox.$('<p>').css({
height: '200px',
width: '100%'
}),
outer = Ox.$('<div>').css({
height: '150px',
left: 0,
overflow: 'hidden',
position: 'absolute',
top: 0,
visibility: 'hidden',
width: '200px'
}).append(inner).appendTo($('body')),
width = inner[0].offsetWidth;
outer.css({overflow: 'scroll'});
width = 1 + width - (inner[0].offsetWidth == width
? outer[0].clientWidth : inner[0].offsetWidth);
outer.remove();
return width;
})();
//@ Ox.UI_PATH <str> Path of Ox UI
Ox.UI_PATH = Ox.UI.PATH = Ox.PATH + 'Ox.UI/';
Ox.documentReady(function() {
// FIXME: use Ox.$foo everywhere!
//@ Ox.$body <o> jQuery-wrapped body
Ox.$body = Ox.UI.$body = $('body');
//@ Ox.$document <o> jQuery-wrapped document
Ox.$document = Ox.UI.$document = $(document);
//@ Ox.$head <o> jQuery-wrapped head
Ox.$head = Ox.UI.$head = $('head');
//@ Ox.$window <o> jQuery-wrapped window
Ox.$window = Ox.UI.$window = $(window);
});
2014-09-25 16:47:29 +00:00
//@ Ox.$elements <o> Reference to all Ox Elements
Ox.$elements = Ox.UI.elements = {};
2014-09-25 16:28:49 +00:00
/*@
Ox.getImageData <f> Returns properties of an Ox UI image
(url) -> <s> Image Name
@*/
Ox.getImageData = Ox.UI.getImageData = Ox.cache(function(url) {
2014-09-25 16:28:49 +00:00
var str = 'data:image/svg+xml;base64,';
return Ox.startsWith(url, str)
? JSON.parse(atob(url.split(',')[1]).match(/<!--(.+?)-->/)[1])
: null;
});
2014-09-25 10:28:03 +00:00
/*@
2014-09-25 16:28:49 +00:00
Ox.getImageURL <f> Returns the URL of an Ox UI image
2014-09-25 10:28:03 +00:00
(name[, color[, theme]]) -> <s> Image URL
name <s> Image name
color <s|[n]> Color name or RGB values
theme <s> Theme name
@*/
Ox.getImageURL = Ox.UI.getImageURL = Ox.cache(function(name, color, theme) {
2014-09-25 10:28:03 +00:00
var colorName,
2014-09-25 16:28:49 +00:00
colors = {
marker: {
'#000000': 'videoMarkerBorder',
'#FFFFFF': 'videoMarkerBackground'
},
symbol: {
'#FF0000': 'symbolWarningColor'
}
},
image = Ox.IMAGES[name],
2014-09-25 10:28:03 +00:00
themeData,
type = Ox.toDashes(name).split('-')[0];
color = color || 'default';
theme = theme || Ox.Theme();
themeData = Ox.Theme.getThemeData(theme);
if (type == 'symbol') {
if (Ox.isString(color)) {
colorName = color;
color = themeData[
'symbol' + color[0].toUpperCase() + color.slice(1) + 'Color'
];
}
image = image.replace(/#808080/g, '#' + Ox.toHex(color));
}
Ox.forEach(colors[type], function(name, hex) {
image = image.replace(
new RegExp(hex, 'g'),
'$' + Ox.toHex(themeData[name])
);
});
image = image.replace(/\$/g, '#');
return 'data:image/svg+xml;base64,' + btoa(
image + '<!--' + JSON.stringify(Ox.extend(color ? {
color: colorName
} : {}, {
name: name, theme: theme
})) + '-->'
);
}, {
key: function(args) {
args[1] = args[1] || 'default';
args[2] = args[2] || Ox.Theme();
return JSON.stringify(args);
}
});
//@ Ox.getOxElement <f> Returns the Ox.Element of a DOM element, or `undefined`
Ox.getOxElement = Ox.UI.getOxElement = function(element) {
2014-09-25 16:47:29 +00:00
return Ox.$elements[$(element).data('oxid')];
2014-09-25 10:28:03 +00:00
};
2014-09-25 16:28:49 +00:00
/*@
Ox.hideScreen <f> Hide and remove Ox UI loading screen
2014-09-25 16:28:49 +00:00
@*/
Ox.hideScreen = Ox.UI.hideLoadingScreen = function() {
2014-09-25 17:14:05 +00:00
Ox.UILoadingScreen.hide();
2014-09-25 16:28:49 +00:00
};
2014-09-25 10:28:03 +00:00
//@ Ox.isOxElement <f> Returns `true` if a DOM element is an Ox.Element
Ox.isOxElement = Ox.UI.isOxElement = function(element) {
return !!$(element).data('oxid');
};