carto/lib/less/browser.js

224 lines
7.1 KiB
JavaScript
Raw Normal View History

(function () {
//
// Select all links with the 'rel' attribute set to "less"
//
2010-05-19 08:28:24 +08:00
var sheets = [];
2010-05-19 09:16:44 +08:00
less.env = location.hostname == '127.0.0.1' ||
location.hostname == '0.0.0.0' ||
location.hostname == 'localhost' ||
location.protocol == 'file:' ? 'development'
: 'production';
// Load the stylesheets when the body is ready
var readyTimer = setInterval(function () {
if (document.body) {
if (!document.querySelectorAll && typeof(jQuery) === "undefined") {
log("No selector method found");
} else {
sheets = (document.querySelectorAll || jQuery).call(document, 'link[rel="stylesheet/less"]');
}
clearInterval(readyTimer);
loadStyleSheets(function (root, sheet, env) {
if (env.local) {
log("less: loading " + sheet.href + " from local storage.");
} else {
createCSS(root.toCSS(), sheet, env.lastModified);
log("less: parsed " + sheet.href + " successfully.");
}
});
}
}, 10);
//
// Auto-refresh
//
if (less.env === 'development') {
refreshTimer = setInterval(function () {
if (/!refresh/.test(location.hash)) {
loadStyleSheets(function (root, sheet, lastModified) {
if (root) {
createCSS(root.toCSS(), sheet, lastModified);
}
});
}
}, 1000);
}
function loadStyleSheets(callback) {
for (var i = 0; i < sheets.length; i++) {
2010-06-08 04:12:25 +08:00
loadStyleSheet(sheets[i], callback);
}
}
function loadStyleSheet(sheet, callback) {
var css = typeof(localStorage) !== "undefined" && localStorage.getItem(sheet.href);
var styles = css && JSON.parse(css);
2010-06-08 04:12:25 +08:00
xhr(sheet.href, function (data, lastModified) {
if (styles && (new(Date)(lastModified).valueOf() ===
new(Date)(styles.timestamp).valueOf())) {
// Use local copy
createCSS(styles.css, sheet);
callback(null, sheet, { local: true });
2010-06-08 04:12:25 +08:00
} else {
// Use remote copy (re-parse)
new(less.Parser)({ optimization: 3 }).parse(data, function (e, root) {
if (e) { return error(e, sheet.href) }
try {
callback(root, sheet, { local: false, lastModified: lastModified });
2010-06-08 04:12:25 +08:00
} catch (e) {
error(e, sheet.href);
}
});
2010-06-08 04:12:25 +08:00
}
}, function (status) {
throw new(Error)("Couldn't load " + sheet.href + " (" + status + ")");
2010-06-08 04:12:25 +08:00
});
}
function createCSS(styles, sheet, lastModified) {
var css = document.createElement('style');
css.type = 'text/css';
css.media = 'screen';
2010-05-19 08:28:24 +08:00
css.title = 'less-sheet';
if (sheet) {
2010-06-08 04:12:59 +08:00
css.title = sheet.title || sheet.href.match(/(?:^|\/)([-\w]+)\.[a-z]+$/i)[1];
// Don't update the local store if the file wasn't modified
2010-05-19 08:28:24 +08:00
if (lastModified && typeof(localStorage) !== "undefined") {
localStorage.setItem(sheet.href, JSON.stringify({ timestamp: lastModified, css: styles }));
}
}
if (css.styleSheet) {
css.styleSheet.cssText = styles;
} else {
css.appendChild(document.createTextNode(styles));
}
document.getElementsByTagName('head')[0].appendChild(css);
}
function xhr(url, callback, errback) {
2010-05-23 12:11:14 +08:00
var xhr = getXMLHttpRequest();
if (window.location.protocol === "file:") {
xhr.open('GET', url, false);
xhr.send(null);
if (xhr.status === 0) {
callback(xhr.responseText);
} else {
errback(xhr.status);
}
} else {
xhr.open('GET', url, true);
xhr.onreadystatechange = function () {
2010-05-23 12:11:14 +08:00
if (xhr.readyState == 4) {
if (xhr.status >= 200 && xhr.status < 300) {
callback(xhr.responseText,
xhr.getResponseHeader("Last-Modified"));
} else if (typeof(errback) === 'function') {
errback(xhr.status);
}
}
};
xhr.send(null);
}
}
2010-05-23 12:11:14 +08:00
function getXMLHttpRequest() {
if (window.XMLHttpRequest) {
return new(XMLHttpRequest);
} else {
try {
return new(ActiveXObject)("MSXML2.XMLHTTP.3.0");
2010-05-24 00:52:23 +08:00
} catch (e) {
log("less: browser doesn't support AJAX.");
2010-05-23 12:11:14 +08:00
return null;
}
}
}
function log(str) {
2010-05-19 08:28:24 +08:00
if (less.env == 'development' && typeof(console) !== "undefined") { console.log(str) }
}
function error(e, href) {
var template = ['<div>',
'<pre class="ctx"><span>[-1]</span>{0}</pre>',
'<pre><span>[0]</span>{current}</pre>',
'<pre class="ctx"><span>[1]</span>{2}</pre>',
'</div>'].join('\n');
var elem = document.createElement('div'), timer;
elem.id = "less-error-message";
elem.innerHTML = '<h3>' + (e.message || 'There is an error in your .less file') + '</h3>' +
'<p><a href="' + href + '">' + href + "</a> " +
'on line ' + e.line + ', column ' + (e.column + 1) + ':</p>' +
template.replace(/\[(-?\d)\]/g, function (_, i) {
return e.line + parseInt(i);
}).replace(/\{(\d)\}/g, function (_, i) {
return e.extract[parseInt(i)];
}).replace(/\{current\}/, e.extract[1].slice(0, e.column) +
'<span class="error">' +
e.extract[1].slice(e.column) +
'</span>');
// CSS for error messages
createCSS([
'#less-error-message span {',
'margin-right: 15px;',
'}',
'#less-error-message pre {',
'color: #ee4444;',
'padding: 4px 0;',
'margin: 0;',
'}',
'#less-error-message pre.ctx {',
'color: #dd7777;',
'}',
'#less-error-message h3 {',
'padding: 15px 0 5px 0;',
'margin: 0;',
'}',
'#less-error-message a {',
'color: #10a',
'}',
'#less-error-message .error {',
'color: red;',
'font-weight: bold;',
'padding-bottom: 2px;',
'border-bottom: 1px dashed red;',
'}'
].join(''));
elem.style.cssText = [
"font-family: Arial, sans-serif",
"border: 1px solid #e00",
"background-color: #eee",
"border-radius: 5px",
"color: #e00",
"padding: 15px",
"margin-bottom: 15px"
].join(';');
if (less.env == 'development') {
timer = setInterval(function () {
if (document.body) {
document.body.insertBefore(elem, document.body.childNodes[0]);
clearInterval(timer);
}
}, 10);
}
}
less.Parser.importer = function (path, paths, callback) {
loadStyleSheet({ href: path, title: path }, function (root) {
callback(root);
});
};
})();