2021-07-27 17:52:01 -07:00
|
|
|
import { IgniteTemplate } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a series of years from the starting to the ending point.
|
|
|
|
* @param {Number} from Starting year.
|
|
|
|
* @param {Number} to Ending year.
|
|
|
|
* @param {String} placeholder The placeholder option, it's value will be 0, if set this text will be shown.
|
|
|
|
* @param {Boolean} descending Whether or not the to year is first and the from year is last.
|
2021-08-11 10:43:59 -07:00
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
2021-07-27 17:52:01 -07:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* .years(1950, 2021, true) //Generates a select descending, 2021, 2020, 2019.. ect.
|
|
|
|
*/
|
2021-08-24 15:26:56 -07:00
|
|
|
function years(from, to, placeholder = null, descending = false) {
|
2021-07-27 17:52:01 -07:00
|
|
|
//Generate html and populate the template with it.
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
if (placeholder) {
|
|
|
|
html += `<option value='0'>${placeholder}</option>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (descending) {
|
|
|
|
for (var i = to; i >= from; i--) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (var i = from; i <= to; i++) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.innerHTML(html);
|
|
|
|
};
|
|
|
|
|
2021-08-24 15:26:56 -07:00
|
|
|
IgniteTemplate.prototype.years = years;
|
|
|
|
|
2021-07-27 17:52:01 -07:00
|
|
|
/**
|
|
|
|
* Generates a series of months.
|
|
|
|
* @param {String} placeholder The placeholder option, it's value will be 0, if set this text will be shown.
|
|
|
|
* @param {Boolean} shorthand If true the option text will be the shorthand version of the month.
|
2021-08-11 10:43:59 -07:00
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
2021-07-27 17:52:01 -07:00
|
|
|
*/
|
2021-08-24 15:26:56 -07:00
|
|
|
function months(placeholder = null, shorthand = true) {
|
2021-07-27 17:52:01 -07:00
|
|
|
//Generate html and populate the template with it.
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
if (placeholder) {
|
|
|
|
html += `<option value='0'>${placeholder}</option>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shorthand) {
|
|
|
|
html += `
|
|
|
|
<option value='1'>Jan</option>
|
|
|
|
<option value='2'>Feb</option>
|
|
|
|
<option value='3'>Mar</option>
|
|
|
|
<option value='4'>Apr</option>
|
|
|
|
<option value='5'>May</option>
|
|
|
|
<option value='6'>Jun</option>
|
|
|
|
<option value='7'>Jul</option>
|
|
|
|
<option value='8'>Aug</option>
|
|
|
|
<option value='9'>Sep</option>
|
|
|
|
<option value='10'>Oct</option>
|
|
|
|
<option value='11'>Nov</option>
|
|
|
|
<option value='12'>Dec</option>
|
|
|
|
`;
|
|
|
|
} else {
|
|
|
|
html += `
|
|
|
|
<option value='1'>January</option>
|
|
|
|
<option value='2'>February</option>
|
|
|
|
<option value='3'>March</option>
|
|
|
|
<option value='4'>April</option>
|
|
|
|
<option value='5'>May</option>
|
|
|
|
<option value='6'>June</option>
|
|
|
|
<option value='7'>July</option>
|
|
|
|
<option value='8'>August</option>
|
|
|
|
<option value='9'>September</option>
|
|
|
|
<option value='10'>October</option>
|
|
|
|
<option value='11'>November</option>
|
|
|
|
<option value='12'>December</option>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.innerHTML(html);
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:26:56 -07:00
|
|
|
IgniteTemplate.prototype.months = months;
|
|
|
|
|
2021-07-27 17:52:01 -07:00
|
|
|
/**
|
2021-07-28 08:43:08 -07:00
|
|
|
* Generates a series of days.
|
2021-07-27 17:52:01 -07:00
|
|
|
* @param {Number} from The starting day.
|
|
|
|
* @param {Number} to The ending day.
|
|
|
|
* @param {String} placeholder The placeholder option if set, it's value will be 0, this will be the text displayed.
|
|
|
|
* @param {Boolean} descending Whether or not the to day is first and the from year is last.
|
2021-08-11 10:43:59 -07:00
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
2021-07-27 17:52:01 -07:00
|
|
|
*/
|
2021-08-24 15:26:56 -07:00
|
|
|
function days(from = 1, to = 31, placeholder = null, descending = false) {
|
2021-07-27 17:52:01 -07:00
|
|
|
//Generate html and populate the template with it.
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
if (placeholder) {
|
|
|
|
html += `<option value='0'>${placeholder}</option>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (descending) {
|
|
|
|
for (var i = to; i >= from; i--) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (var i = from; i <= to; i++) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-28 08:43:08 -07:00
|
|
|
return this.innerHTML(html);
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:26:56 -07:00
|
|
|
IgniteTemplate.prototype.days = days;
|
|
|
|
|
2021-07-28 08:43:08 -07:00
|
|
|
/**
|
|
|
|
* Generates a series of numbers.
|
2021-08-11 10:43:59 -07:00
|
|
|
* @param {Number} from The starting number.
|
|
|
|
* @param {Number} to The ending number.
|
|
|
|
* @param {String} placeholder The placeholder option if set, it's value will be -1, this will be the text displayed.
|
|
|
|
* @param {Boolean} descending Whether or not the from number if first and the to number is last.
|
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
2021-07-28 08:43:08 -07:00
|
|
|
*/
|
2021-08-24 15:26:56 -07:00
|
|
|
function numbers(from = 0, to = 100, placeholder = null, descending = false) {
|
2021-07-28 08:43:08 -07:00
|
|
|
//Generate html and populate the template with it.
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
if (placeholder) {
|
|
|
|
html += `<option value='-1'>${placeholder}</option>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (descending) {
|
|
|
|
for (var i = to; i >= from; i--) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (var i = from; i <= to; i++) {
|
|
|
|
html += `<option value='${i}'>${i}</option>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-11 10:43:59 -07:00
|
|
|
return this.innerHTML(html);
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:26:56 -07:00
|
|
|
IgniteTemplate.prototype.numbers = numbers;
|
|
|
|
|
2021-08-11 10:43:59 -07:00
|
|
|
/**
|
|
|
|
* Generates a series of options based on key value pairs.
|
|
|
|
* @param {Array|Object} options An array of strings or list of key value pairs to create options from.
|
|
|
|
* @param {*} placeholder The placeholder option, it's value will be 0, if set this text will be shown.
|
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
|
|
|
*/
|
2021-08-24 15:26:56 -07:00
|
|
|
function options(options, placeholder = null) {
|
2021-08-11 10:43:59 -07:00
|
|
|
//Generate html and populate the template with it.
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
if (placeholder) {
|
|
|
|
html += `<option value='-1'>${placeholder}</option>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(options)) {
|
|
|
|
for (var i = 0; i < options.length; i++) {
|
|
|
|
html += `<option value='${options[i]}'>${options[i]}</option>`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var keys = Object.keys(options);
|
|
|
|
for (var i = 0; i < keys.length; i++) {
|
|
|
|
html += `<option value='${keys[i]}'>${options[keys[i]]}</option>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-27 17:52:01 -07:00
|
|
|
return this.innerHTML(html);
|
2021-08-24 15:26:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
IgniteTemplate.prototype.options = options;
|