From 1b9c1e5ea525fe5edf2dfec7d2c13bcde1ffd587 Mon Sep 17 00:00:00 2001 From: Francis Date: Wed, 20 Jul 2022 21:49:04 +0800 Subject: [PATCH] initial commit --- script.js | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 16 +++++++++++ 2 files changed, 97 insertions(+) create mode 100644 script.js create mode 100644 style.css diff --git a/script.js b/script.js new file mode 100644 index 0000000..d5b0639 --- /dev/null +++ b/script.js @@ -0,0 +1,81 @@ +var x = document.getElementById('ff_8_dropdown'); //Get the form element +const optionsList = []; //Array that will store options data + +/** + * Iterates on each option, gets the value and data-calc_value generated by fluentforms. + * The reason for this is when choices.js is used on the select element, the data-calc_value + * is removed and only the value is retained. + * + */ +for( let i=0; i < x.length; i++ ) { + var tempObj = { + value: x.options[i].getAttribute('value'), + calcValue: x.options[i].getAttribute('data-calc_value'), + } + optionsList.push(tempObj); + } + /** + * Gets the choices.js script using CDN. + * + * Then Converts the select element using choices.js plugin. Customized it so that we can use the + * data-calc_value option of fluent forms. + */ +$.getScript("https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js", function(){ + const choices = new Choices(x, { + callbackOnCreateTemplates: function(template) { + return { + choice: ({ classNames }, data) => { + const val = data.value; + const calcValue = getCalcValue(val); + const color = getColor( parseInt( calcValue ) ); + /** + * This returns the default template used by choices.js. + * Only the {$color} attribute is added for the custom color of the option. + * The rest are default. + */ + return template(` +
0 ? 'role="treeitem"' : 'role="option"' + }> + ${data.label} +
+ `); + }, + }; + }, + }); + + /** + * Compares the value from the optionsList and the one generated in choices.js. If equal, returns + * the data-calc_value of the option. + */ + function getCalcValue( val ) { + var length = optionsList.length; + for( let x = 0; x < optionsList.length; x++ ){ + if( val === optionsList[x].value ){ + return optionsList[x].calcValue; + } + } + } + /** + * Uses the data-calc_value to identify the color of the option field. + * Returns a custom class name that will be used to identify the color of the option field using CSS. + */ + function getColor( calcValue ){ + switch( calcValue ) { + case 1: + return 'option_blue'; + case 2: + return 'option_green'; + case 3: + return 'option_red'; + } + } + +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..5eb1a37 --- /dev/null +++ b/style.css @@ -0,0 +1,16 @@ +@import url('https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css'); + +.option_blue{ + border-left: solid; + border-color: blue; +} + +.option_green{ +border-left: solid; +border-color: green; +} + +.option_red{ +border-left: solid; +border-color: red; +} \ No newline at end of file