Fixed sorting and print selection bugs
This commit is contained in:
parent
8d34765204
commit
2cd002c053
5 changed files with 124 additions and 62 deletions
66
dist/app.js
vendored
66
dist/app.js
vendored
|
@ -104,7 +104,7 @@ const discoverClasses = spells => {
|
||||||
* Emphasis on important string bits
|
* Emphasis on important string bits
|
||||||
* @param {string} string
|
* @param {string} string
|
||||||
*/
|
*/
|
||||||
const emphasis = str => {
|
const emphasis = (str = '') => {
|
||||||
let keywords = ['constitution', 'con', 'intelligence', 'int', 'wisdom', 'wis', 'strength', 'str', 'dexterity', 'dex', 'charisma', 'cha', 'comeliness', 'com', 'saving throw', 'ability check', 'skill check'];
|
let keywords = ['constitution', 'con', 'intelligence', 'int', 'wisdom', 'wis', 'strength', 'str', 'dexterity', 'dex', 'charisma', 'cha', 'comeliness', 'com', 'saving throw', 'ability check', 'skill check'];
|
||||||
keywords.forEach(word => {
|
keywords.forEach(word => {
|
||||||
let r = new RegExp(` ${ word } `, 'gi');
|
let r = new RegExp(` ${ word } `, 'gi');
|
||||||
|
@ -229,6 +229,41 @@ const spellDetails = name => {
|
||||||
clipboard.on('success', e => $('#toast')[0].MaterialSnackbar.showSnackbar({ message: 'Copied link' })).on('error', e => $('#toast')[0].MaterialSnackbar.showSnackbar({ message: 'Sorry! Unable to copy link' }));
|
clipboard.on('success', e => $('#toast')[0].MaterialSnackbar.showSnackbar({ message: 'Copied link' })).on('error', e => $('#toast')[0].MaterialSnackbar.showSnackbar({ message: 'Sorry! Unable to copy link' }));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render Print Page
|
||||||
|
*/
|
||||||
|
const renderPrint = () => {
|
||||||
|
let selectedSpells = $('form[data-selected]')
|
||||||
|
// Get array of items in form
|
||||||
|
.serializeArray()
|
||||||
|
// Find spells based on array from form
|
||||||
|
.map(sel => store.spells.find(spell => sel.value === spell.name))
|
||||||
|
// Sort by level then alphabetically
|
||||||
|
.sort((a, b) => {
|
||||||
|
let aName = a.name.toLowerCase();
|
||||||
|
let bName = b.name.toLowerCase();
|
||||||
|
if (a.level > b.level) return 1;
|
||||||
|
if (a.level < b.level) return -1;
|
||||||
|
if (aName > bName) return 1;
|
||||||
|
if (aName < bName) return -1;
|
||||||
|
return 0;
|
||||||
|
})
|
||||||
|
// Prettify Descriptions
|
||||||
|
.map(spell => {
|
||||||
|
spell = clone(spell);
|
||||||
|
spell.description = descriptionPrettifier(spell.description);
|
||||||
|
return spell;
|
||||||
|
});
|
||||||
|
view.spell_list_print.update({ data: selectedSpells });
|
||||||
|
if (selectedSpells.length) {
|
||||||
|
$('[data-action=print] [data-badge]').attr('data-badge', selectedSpells.length);
|
||||||
|
$('[data-action=print]').slideDown('fast');
|
||||||
|
} else {
|
||||||
|
$('[data-action=print]').slideUp('fast');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event Bindings
|
* Event Bindings
|
||||||
*/
|
*/
|
||||||
|
@ -288,33 +323,8 @@ $('body')
|
||||||
this.checked = e.target.checked;
|
this.checked = e.target.checked;
|
||||||
if (this.checked) $(this).closest('label').addClass('is-checked');else $(this).closest('label').removeClass('is-checked');
|
if (this.checked) $(this).closest('label').addClass('is-checked');else $(this).closest('label').removeClass('is-checked');
|
||||||
});
|
});
|
||||||
$('[name=selected]').trigger('change');
|
renderPrint();
|
||||||
}).on('change', 'input[name=selected][type=checkbox]', e => {
|
}).on('change', 'input[name=selected][type=checkbox]', renderPrint).on('click', '[data-action=print]', e => {
|
||||||
let selectedSpells = $('form[data-selected]')
|
|
||||||
// Get array of items in form
|
|
||||||
.serializeArray()
|
|
||||||
// Find spells based on array from form
|
|
||||||
.map(sel => store.spells.find(spell => sel.value === spell.name))
|
|
||||||
// Sort alphabetically
|
|
||||||
.sort((a, b) => {
|
|
||||||
if (a.name > b.name) return 1;
|
|
||||||
if (a.name < b.name) return -1;
|
|
||||||
return 0;
|
|
||||||
})
|
|
||||||
// Prettify Descriptions
|
|
||||||
.map(spell => {
|
|
||||||
spell = clone(spell);
|
|
||||||
spell.description = descriptionPrettifier(spell.description);
|
|
||||||
return spell;
|
|
||||||
});
|
|
||||||
view.spell_list_print.update({ data: selectedSpells });
|
|
||||||
if (selectedSpells.length) {
|
|
||||||
$('[data-action=print] [data-badge]').attr('data-badge', selectedSpells.length);
|
|
||||||
$('[data-action=print]').slideDown('fast');
|
|
||||||
} else {
|
|
||||||
$('[data-action=print]').slideUp('fast');
|
|
||||||
}
|
|
||||||
}).on('click', '[data-action=print]', e => {
|
|
||||||
window.print();
|
window.print();
|
||||||
})
|
})
|
||||||
// Article Scroll with User
|
// Article Scroll with User
|
||||||
|
|
49
dist/view.js
vendored
49
dist/view.js
vendored
|
@ -618,6 +618,8 @@ function spell_list_print_for0() {
|
||||||
var text12 = document.createTextNode('');
|
var text12 = document.createTextNode('');
|
||||||
var for0 = document.createComment('if');
|
var for0 = document.createComment('if');
|
||||||
var child0 = {};
|
var child0 = {};
|
||||||
|
var for1 = document.createComment('if');
|
||||||
|
var child2 = {};
|
||||||
var unsafe0 = document.createComment('unsafe');
|
var unsafe0 = document.createComment('unsafe');
|
||||||
var unsafeNodes0 = [];
|
var unsafeNodes0 = [];
|
||||||
|
|
||||||
|
@ -637,6 +639,7 @@ function spell_list_print_for0() {
|
||||||
td6.appendChild(strong11);
|
td6.appendChild(strong11);
|
||||||
td6.appendChild(text12);
|
td6.appendChild(text12);
|
||||||
td6.appendChild(for0);
|
td6.appendChild(for0);
|
||||||
|
td6.appendChild(for1);
|
||||||
td6.appendChild(unsafe0);
|
td6.appendChild(unsafe0);
|
||||||
td6.setAttribute("class", "spell-description");
|
td6.setAttribute("class", "spell-description");
|
||||||
tr0.appendChild(td1);
|
tr0.appendChild(td1);
|
||||||
|
@ -651,7 +654,8 @@ function spell_list_print_for0() {
|
||||||
text8.textContent = spell.range;
|
text8.textContent = spell.range;
|
||||||
text10.textContent = spell.casting_time;
|
text10.textContent = spell.casting_time;
|
||||||
text12.textContent = spell.duration;
|
text12.textContent = spell.duration;
|
||||||
Monkberry.cond(_this, for0, child0, spell_list_print_for0_if0, spell.ritual);
|
Monkberry.cond(_this, for0, child0, spell_list_print_for0_if0, (spell.components) && (spell.components.raw));
|
||||||
|
Monkberry.cond(_this, for1, child2, spell_list_print_for0_if2, spell.ritual);
|
||||||
__unsafe(unsafe0, unsafeNodes0, spell.description);
|
__unsafe(unsafe0, unsafeNodes0, spell.description);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -661,6 +665,9 @@ function spell_list_print_for0() {
|
||||||
if (child0.ref) {
|
if (child0.ref) {
|
||||||
child0.ref.update(__data__);
|
child0.ref.update(__data__);
|
||||||
}
|
}
|
||||||
|
if (child2.ref) {
|
||||||
|
child2.ref.update(__data__);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Set root nodes
|
// Set root nodes
|
||||||
|
@ -682,6 +689,38 @@ spell_list_print_for0.prototype.update = function (__data__) {
|
||||||
function spell_list_print_for0_if0() {
|
function spell_list_print_for0_if0() {
|
||||||
Monkberry.call(this);
|
Monkberry.call(this);
|
||||||
|
|
||||||
|
// Create elements
|
||||||
|
var strong0 = document.createElement('strong');
|
||||||
|
var text1 = document.createTextNode('');
|
||||||
|
|
||||||
|
// Construct dom
|
||||||
|
strong0.appendChild(document.createTextNode(" Components: "));
|
||||||
|
|
||||||
|
// Update functions
|
||||||
|
this.__update__ = {
|
||||||
|
spell: function (spell) {
|
||||||
|
text1.textContent = spell.components.raw;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Set root nodes
|
||||||
|
this.nodes = [strong0, text1];
|
||||||
|
}
|
||||||
|
spell_list_print_for0_if0.prototype = Object.create(Monkberry.prototype);
|
||||||
|
spell_list_print_for0_if0.prototype.constructor = spell_list_print_for0_if0;
|
||||||
|
spell_list_print_for0_if0.pool = [];
|
||||||
|
spell_list_print_for0_if0.prototype.update = function (__data__) {
|
||||||
|
if (__data__.spell !== undefined) {
|
||||||
|
this.__update__.spell(__data__.spell);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @class
|
||||||
|
*/
|
||||||
|
function spell_list_print_for0_if2() {
|
||||||
|
Monkberry.call(this);
|
||||||
|
|
||||||
// Create elements
|
// Create elements
|
||||||
var strong0 = document.createElement('strong');
|
var strong0 = document.createElement('strong');
|
||||||
|
|
||||||
|
@ -691,10 +730,10 @@ function spell_list_print_for0_if0() {
|
||||||
// Set root nodes
|
// Set root nodes
|
||||||
this.nodes = [strong0];
|
this.nodes = [strong0];
|
||||||
}
|
}
|
||||||
spell_list_print_for0_if0.prototype = Object.create(Monkberry.prototype);
|
spell_list_print_for0_if2.prototype = Object.create(Monkberry.prototype);
|
||||||
spell_list_print_for0_if0.prototype.constructor = spell_list_print_for0_if0;
|
spell_list_print_for0_if2.prototype.constructor = spell_list_print_for0_if2;
|
||||||
spell_list_print_for0_if0.pool = [];
|
spell_list_print_for0_if2.pool = [];
|
||||||
spell_list_print_for0_if0.prototype.update = function (__data__) {
|
spell_list_print_for0_if2.prototype.update = function (__data__) {
|
||||||
};
|
};
|
||||||
|
|
||||||
window.spell_list_print = spell_list_print;
|
window.spell_list_print = spell_list_print;
|
||||||
|
|
2
dist/view.js.map
vendored
2
dist/view.js.map
vendored
|
@ -1 +1 @@
|
||||||
{"version":3,"sources":["class-list.monk","search-field.monk","spell-details.monk","spell-list-print.monk","spell-list.monk","table-sort.monk"],"names":[],"mappings":"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","file":"view.js"}
|
{"version":3,"sources":["class-list.monk","search-field.monk","spell-details.monk","spell-list-print.monk","spell-list.monk","table-sort.monk"],"names":[],"mappings":"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","file":"view.js"}
|
66
src/app.js
66
src/app.js
|
@ -105,7 +105,7 @@ const discoverClasses = spells => {
|
||||||
* Emphasis on important string bits
|
* Emphasis on important string bits
|
||||||
* @param {string} string
|
* @param {string} string
|
||||||
*/
|
*/
|
||||||
const emphasis = str => {
|
const emphasis = (str = '') => {
|
||||||
let keywords = ['constitution', 'con', 'intelligence', 'int', 'wisdom', 'wis', 'strength', 'str', 'dexterity', 'dex', 'charisma', 'cha', 'comeliness', 'com', 'saving throw', 'ability check', 'skill check'];
|
let keywords = ['constitution', 'con', 'intelligence', 'int', 'wisdom', 'wis', 'strength', 'str', 'dexterity', 'dex', 'charisma', 'cha', 'comeliness', 'com', 'saving throw', 'ability check', 'skill check'];
|
||||||
keywords.forEach(word => {
|
keywords.forEach(word => {
|
||||||
let r = new RegExp(` ${word} `, 'gi');
|
let r = new RegExp(` ${word} `, 'gi');
|
||||||
|
@ -240,6 +240,41 @@ const spellDetails = name => {
|
||||||
.on('error', e => $('#toast')[0].MaterialSnackbar.showSnackbar({message: 'Sorry! Unable to copy link'}));
|
.on('error', e => $('#toast')[0].MaterialSnackbar.showSnackbar({message: 'Sorry! Unable to copy link'}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render Print Page
|
||||||
|
*/
|
||||||
|
const renderPrint = () => {
|
||||||
|
let selectedSpells = $('form[data-selected]')
|
||||||
|
// Get array of items in form
|
||||||
|
.serializeArray()
|
||||||
|
// Find spells based on array from form
|
||||||
|
.map(sel => store.spells.find(spell => sel.value === spell.name))
|
||||||
|
// Sort by level then alphabetically
|
||||||
|
.sort((a, b) => {
|
||||||
|
let aName = a.name.toLowerCase();
|
||||||
|
let bName = b.name.toLowerCase();
|
||||||
|
if (a.level > b.level) return 1;
|
||||||
|
if (a.level < b.level) return -1;
|
||||||
|
if (aName > bName) return 1;
|
||||||
|
if (aName < bName) return -1;
|
||||||
|
return 0;
|
||||||
|
})
|
||||||
|
// Prettify Descriptions
|
||||||
|
.map(spell => {
|
||||||
|
spell = clone(spell);
|
||||||
|
spell.description = descriptionPrettifier(spell.description);
|
||||||
|
return spell;
|
||||||
|
});
|
||||||
|
view.spell_list_print.update({data: selectedSpells});
|
||||||
|
if (selectedSpells.length) {
|
||||||
|
$('[data-action=print] [data-badge]').attr('data-badge', selectedSpells.length);
|
||||||
|
$('[data-action=print]').slideDown('fast');
|
||||||
|
} else {
|
||||||
|
$('[data-action=print]').slideUp('fast');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event Bindings
|
* Event Bindings
|
||||||
*/
|
*/
|
||||||
|
@ -299,34 +334,9 @@ $('body')
|
||||||
if(this.checked) $(this).closest('label').addClass('is-checked');
|
if(this.checked) $(this).closest('label').addClass('is-checked');
|
||||||
else $(this).closest('label').removeClass('is-checked');
|
else $(this).closest('label').removeClass('is-checked');
|
||||||
});
|
});
|
||||||
$('[name=selected]').trigger('change');
|
renderPrint();
|
||||||
})
|
|
||||||
.on('change', 'input[name=selected][type=checkbox]', e => {
|
|
||||||
let selectedSpells = $('form[data-selected]')
|
|
||||||
// Get array of items in form
|
|
||||||
.serializeArray()
|
|
||||||
// Find spells based on array from form
|
|
||||||
.map(sel => store.spells.find(spell => sel.value === spell.name))
|
|
||||||
// Sort alphabetically
|
|
||||||
.sort((a, b) => {
|
|
||||||
if (a.name > b.name) return 1;
|
|
||||||
if (a.name < b.name) return -1;
|
|
||||||
return 0
|
|
||||||
})
|
|
||||||
// Prettify Descriptions
|
|
||||||
.map(spell => {
|
|
||||||
spell = clone(spell);
|
|
||||||
spell.description = descriptionPrettifier(spell.description);
|
|
||||||
return spell;
|
|
||||||
});
|
|
||||||
view.spell_list_print.update({data: selectedSpells});
|
|
||||||
if (selectedSpells.length) {
|
|
||||||
$('[data-action=print] [data-badge]').attr('data-badge', selectedSpells.length);
|
|
||||||
$('[data-action=print]').slideDown('fast');
|
|
||||||
} else {
|
|
||||||
$('[data-action=print]').slideUp('fast');
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
.on('change', 'input[name=selected][type=checkbox]', renderPrint)
|
||||||
.on('click', '[data-action=print]', e => {
|
.on('click', '[data-action=print]', e => {
|
||||||
window.print();
|
window.print();
|
||||||
})
|
})
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
<strong> Range: </strong>{{ spell.range }}
|
<strong> Range: </strong>{{ spell.range }}
|
||||||
<strong> Casting Time: </strong>{{ spell.casting_time }}
|
<strong> Casting Time: </strong>{{ spell.casting_time }}
|
||||||
<strong> Duration: </strong>{{ spell.duration }}
|
<strong> Duration: </strong>{{ spell.duration }}
|
||||||
|
{% if spell.components && spell.components.raw %}
|
||||||
|
<strong> Components: </strong>{{ spell.components.raw }}
|
||||||
|
{% endif %}
|
||||||
{% if spell.ritual %}
|
{% if spell.ritual %}
|
||||||
<strong> Ritual</strong>
|
<strong> Ritual</strong>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue