RPGs3_card_insanity/style.js

69 lines
1.9 KiB
JavaScript
Raw Normal View History

2019-09-10 00:52:30 +02:00
var md = window.markdownit();
var context = {
2019-10-06 16:03:07 +02:00
'xml' : {},
2019-09-10 00:52:30 +02:00
'card' : jsyaml.load(document.getElementById("yaml_data").innerHTML),
'alert' : alert,
};
2019-09-09 19:29:27 +02:00
2019-10-06 16:03:07 +02:00
// read xml data
var xml_data_items = document.getElementsByClassName("xml_data")
for (var i=0; i < xml_data_items.length; i++) {
var key = xml_data_items[i].id.substr(9);
var val = xml_data_items[i].innerHTML;
context.xml[key] = val;
}
function is_set(asd) {
2019-10-06 21:43:37 +02:00
return !(typeof asd === 'undefined' || asd.length === 0);
2019-10-06 16:03:07 +02:00
}
// set the figure by the
if (!is_set(context.card.figures) && context.xml.image ) {
context.card.figures = [{
'name': (context.xml.image.substr(0, 4) == "http")
? context.xml.image
: context.xml.image.split(":").slice(1).join(":"),
'type': (context.xml.image.substr(0, 4) == "http")
? "url"
: context.xml.image.split(":")[0],
'scale': 1.0,
'flip_x': false,
'flip_y': false,
'offset': [0.0, 0.0],
'opacity': 1,
'rotation': 0,
}].concat(context.card.figures);
}
2019-10-06 16:03:07 +02:00
2019-10-06 21:43:37 +02:00
var env = new nunjucks.Environment([], {
2019-09-11 05:09:42 +02:00
autoescape: true,
trimBlocks: true,
lstripBlocks: true,
2019-09-10 00:52:30 +02:00
});
env.addFilter('markdown', function(str) {
return md.render(str);
});
env.addFilter('cull_whitespace', function(str) {
return str.split(/\s+/).join(' ').trim();
});
env.addFilter('any', function(iterable) {
for (var index = 0; index < iterable.length; index++) {
if (iterable[index]) return true;
}
return false;
});
env.addFilter('all', function(iterable) {
for (var index = 0; index < iterable.length; index++) {
if (!iterable[index]) return false;
}
return true;
});
2019-09-09 19:29:27 +02:00
2019-10-06 21:43:37 +02:00
try {
rendered = env.renderString(jinja_template, context);
} catch(err) {
rendered = "<pre style=\"font-size:0.8em; width:100%; border-radius:5px; padding:2mm; box-sizing: border-box; border: 2px solid black; white-space: normal; background-color:#ff8888;\">" + err + "</pre>";
}
//console.log(rendered);
2019-09-10 17:54:18 +02:00
document.write(rendered);