You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

609 lines
22 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./vanillaSelectBox.css">
<!-- internal css -->
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
}
.darkRed {
color: darkred;
}
.darkBlue {
color: darkblue;
}
.navbar {
position: relative;
border: 1px solid #080808;
background-color: #222;
background-image: linear-gradient(to bottom,#3c3c3c 0,#222 100%);
background-repeat: repeat-x;
border-radius: 4px;
margin: 0;
padding: 0;
}
.navbar-brand {
float: left;
padding: 14px 15px;
font-size: 18px;
line-height: 20px;
color: #fff;
cursor: pointer;
text-decoration: none;
}
a:hover {
color: #fff;
}
.navbar-links {
font-size: 14px;
line-height: 20px;
position: relative;
margin: 0;
}
.navbar-links li {
cursor: pointer;
text-decoration: none;
}
.navbar-links li {
display: inline-block;
min-width: 120px;
text-align: center;
margin-top: 15px;
}
.navbar-links li.active {
background-image: #080808;
background: #080808;
color: #fff;
height: 100%;
padding-top: 15px;
padding-bottom: 15px;
margin: 0;
}
a {
color: #9d9d9d;
cursor: pointer;
text-decoration: none;
}
@media (max-width: 640px) {
.navbar-brand {
width: 100%;
}
.navbar-links {
padding-left: 0;
}
button.demo {
margin-right: 100% !important;
}
}
#container {
padding-top: 30px;
padding-left: 50px;
width: 90%;
font-size: 14px;
}
.demo-zone {
display: block;
width: 100%;
min-height: 200px;
}
.btns-active, .btns-inactive {
margin-top: 20px;
}
label {
display: inline-block;
min-width: 220px;
width: 220px;
}
button.demo {
margin-right: 0;
margin-left: 4px;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border-radius: 4px;
z-index: 1;
color: #333;
background: white;
background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
border: 1px solid #ccc !important;
color: #333;
line-height: 20px;
font-size: 14px;
padding: 4px 12px;
margin-bottom: 2px;
}
button.demo:hover {
background-image: linear-gradient(to top,#fff 0,#e0e0e0 100%);
}
.presentation {
background: #eee;
color: #2e44b9;
border: 1px solid grey;
border-radius: 8px;
line-height: 20px;
padding: 8px;
margin-bottom: 40px;
width: 90%;
max-width: 800px;
font-size: 14px;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="navbar-header">
<a class="navbar-brand" href="#">
Experiments with vanilla js
</a>
</div>
<ul class="navbar-links">
<li id="vanillaSelectBox" class="active"><a href="#vanillaSelectBox">vanillaSelectBox</a></li>
<li id="blog"><a href="https://philippemarcmeyer.github.io#vanillajs">Github Blog</a></li>
<li id="repos"><a href="https://github.com/PhilippeMarcMeyer/vanillaSelectBox">Github repos</a></li>
</ul>
</nav>
<div id="container">
<p class="presentation">
<b>vanillaSelectBox()</b> <br/>
To train my vanilla js skills I redid my bootStrapSelect jQuery plugin without jQuery and without Bootstrap
</p>
<div class="demo-zone" style="text-align:left;" id="demo-single">
<label>Choose a brand in list : </label><select id="brandsOne"></select>
<div class="btns-active">
<button class="demo" onClick="empty('brandsOne')">empty()</button>
<button class="demo" onClick="setValues('brandsOne','Alpine')">setValue('Alpine')</button>
<button class="demo" onClick="setEnable('brandsOne',false)">disable()</button>
<button class="demo" onClick="setEnable('brandsOne',true)">enable()</button>
<button class="demo" onClick="doDestroy('brandsOne')">destroy()</button>
<br/><br/>
<button class="demo" style="width:140px;" onClick="document.getElementById('brandsOneChoice').innerHTML=document.getElementById('brandsOne').value;">get select value</button>
<span id="brandsOneChoice"></span>
</div>
<div class="btns-inactive" style="display:none";
<button class="demo" onClick="init('brandsOne')">vanillaSelectBox()</button>
</div>
</div>
<div class="demo-zone" id="demo-multiple">
<label>Choose several brands : </label><select id="brandsMulti" multiple size="3"></select>
<div class="btns-active">
<button class="demo" onClick="empty('brandsMulti')">empty()</button>
<button class="demo" onClick="setValues('brandsMulti',['Lamborghini','Land Rover'])">setValue(['Lamborghini','Land Rover'])</button>
<button class="demo" onClick="setValues('brandsMulti','all')">setValue('all')</button>
<button class="demo" onClick="setEnable('brandsMulti',false)">disable()</button>
<button class="demo" onClick="setEnable('brandsMulti',true)">enable()</button>
<button class="demo" onClick="doDestroy('brandsMulti')">destroy()</button>
<br/><br/>
<button class="demo" style="width:140px;" onClick="document.getElementById('brandsMultiChoice').innerHTML=(getValues('brandsMulti')).join(',');">get select values</button>&nbsp;
&nbsp;
&nbsp;
<span id="brandsMultiChoice"></span>
</div>
<div class="btns-inactive" style="display:none";>
<button class="demo" onClick="init('brandsMulti')">vanillaSelectBox()</button>
</div>
</div>
<div style="width:100%;">
<div class="demo-zone" id="demo-stay" style="width:40%;display:inline-block;">
<label>Stay open : </label><br/><select id="brandsMultiStay" multiple size="3"></select>
</div>
<div class="demo-zone" id="demo-stay-right" style="width:50%;text-align:right;display:inline-block;">
<label>All countries : </label><br/><select id="allCountries" multiple size="4"></select>
</div>
</div>
</div>
<script src="./vanillaSelectBox.js"></script>
<script>
let brands = ["Abarth", "Alfa Romeo", "Alpine", "Aston Martin", "Audi", "Bentley", "BMW", "Cadillac", "Chevrolet", "Citroën", "Cupra", "DACIA", "DS", "Ferrari", "Fiat", "Ford", "Honda", "Hyundai", "Infiniti", "Jaguar", "Jeep", "KIA", "Lamborghini", "Land Rover", "Lexus", "Lotus", "Maserati", "Mazda", "McLaren", "Mercedes-Benz", "MINI", "Mitsubishi", "Nissan", "Opel", "Peugeot", "Porsche", "Renault", "Rolls-Royce", "SEAT", "Skoda", "smart", "Ssangyong", "Subaru", "Suzuki", "Tesla", "Toyota", "Volkswagen", "Volvo"];
let select1 = document.getElementById("brandsOne");
var option = document.createElement("option");
option.value = "";
option.text = "";
select1.appendChild(option);
for (var i = 0;
i < brands.length;
i++) {
var option = document.createElement("option");
option.value = brands[i];
option.text = brands[i];
if (i == 23) option.setAttribute("selected", true);
let colorClass = "";
if (i > 2)
option.classList.add(i % 2 == 0 ? "darkRed" : "darkBlue")
select1.appendChild(option);
}
let select2 = document.getElementById("brandsMulti");
for (var i = 0;
i < brands.length;
i++) {
var option = document.createElement("option");
option.value = brands[i];
option.text = brands[i];
if (i == 23) option.setAttribute("selected", true);
if (i >= 3 && i <= 7) option.setAttribute("selected", true);
select2.appendChild(option);
}
let select3 = document.getElementById("brandsMultiStay");
for (var i = 0;
i < brands.length;
i++) {
var option = document.createElement("option");
option.value = brands[i];
option.text = brands[i];
if (i == 15) option.setAttribute("selected", true);
if (i >= 3 && i <= 7) option.setAttribute("selected", true);
select3.appendChild(option);
}
let selectBox = null;
let selectBox2 = null;
let selectBox3 = null;
function setEnable(id, isEnabled) {
if (id == "brandsOne" && selectBox != null) {
if (isEnabled) {
selectBox.enable();
} else {
selectBox.disable();
}
} else if (id == "brandsMulti" && selectBox2 != null) {
if (isEnabled) {
selectBox2.enable();
} else {
selectBox2.disable();
}
}
}
function empty(id) {
if (id == "brandsOne" && selectBox != null) {
selectBox.empty();
} else if (id == "brandsMulti" && selectBox2 != null) {
selectBox2.empty();
}
}
function doDestroy(id) {
if (id == "brandsOne" && selectBox != null) {
selectBox.destroy();
let zone = document.getElementById("demo-single");
buttons = zone.querySelector(".btns-active");
buttons.style.display = "none";
buttons = zone.querySelector(".btns-inactive");
buttons.style.display = "block";
} else if (id == "brandsMulti" && selectBox2 != null) {
selectBox2.destroy();
let zone = document.getElementById("demo-multiple");
buttons = zone.querySelector(".btns-active");
buttons.style.display = "none";
buttons = zone.querySelector(".btns-inactive");
buttons.style.display = "block";
}
}
function init(id) {
if (id == "brandsOne") {
selectBox = new vanillaSelectBox("#brandsOne", { "maxHeight": 200, "search": true, "placeHolder": "Choose a brand..." });
let zone = document.getElementById("demo-single");
buttons = zone.querySelector(".btns-active");
buttons.style.display = "block";
buttons = zone.querySelector(".btns-inactive");
buttons.style.display = "none";
} else if (id == "brandsMulti") {
selectBox2 = new vanillaSelectBox("#brandsMulti", { "maxHeight": 200, "search": true });
let zone = document.getElementById("demo-multiple");
buttons = zone.querySelector(".btns-active");
buttons.style.display = "block";
buttons = zone.querySelector(".btns-inactive");
buttons.style.display = "none";
}else if (id == "brandsMultiStay") {
selectBox3 = new vanillaSelectBox("#brandsMultiStay", { "maxHeight": 200, "search": true,"stayOpen":true });
}
}
function setValues(id, value) {
if (id == "brandsOne" && selectBox != null) {
selectBox.setValue(value);
} else if (id == "brandsMulti" && selectBox2 != null) {
selectBox2.setValue(value);
}
}
function getValues(id) {
let result = [];
let collection = document.querySelectorAll("#" + id + " option");
collection.forEach(function (x) {
if (x.selected) {
result.push(x.value);
}
});
return result;
}
init("brandsOne");
init("brandsMulti");
init("brandsMultiStay");
let allCountries = [
{"name": "Afghanistan", "code": "AF"},
{"name": "Åland Islands", "code": "AX"},
{"name": "Albania", "code": "AL"},
{"name": "Algeria", "code": "DZ"},
{"name": "American Samoa", "code": "AS"},
{"name": "AndorrA", "code": "AD"},
{"name": "Angola", "code": "AO"},
{"name": "Anguilla", "code": "AI"},
{"name": "Antarctica", "code": "AQ"},
{"name": "Antigua and Barbuda", "code": "AG"},
{"name": "Argentina", "code": "AR"},
{"name": "Armenia", "code": "AM"},
{"name": "Aruba", "code": "AW"},
{"name": "Australia", "code": "AU"},
{"name": "Austria", "code": "AT"},
{"name": "Azerbaijan", "code": "AZ"},
{"name": "Bahamas", "code": "BS"},
{"name": "Bahrain", "code": "BH"},
{"name": "Bangladesh", "code": "BD"},
{"name": "Barbados", "code": "BB"},
{"name": "Belarus", "code": "BY"},
{"name": "Belgium", "code": "BE"},
{"name": "Belize", "code": "BZ"},
{"name": "Benin", "code": "BJ"},
{"name": "Bermuda", "code": "BM"},
{"name": "Bhutan", "code": "BT"},
{"name": "Bolivia", "code": "BO"},
{"name": "Bosnia and Herzegovina", "code": "BA"},
{"name": "Botswana", "code": "BW"},
{"name": "Bouvet Island", "code": "BV"},
{"name": "Brazil", "code": "BR"},
{"name": "British Indian Ocean Territory", "code": "IO"},
{"name": "Brunei Darussalam", "code": "BN"},
{"name": "Bulgaria", "code": "BG"},
{"name": "Burkina Faso", "code": "BF"},
{"name": "Burundi", "code": "BI"},
{"name": "Cambodia", "code": "KH"},
{"name": "Cameroon", "code": "CM"},
{"name": "Canada", "code": "CA"},
{"name": "Cape Verde", "code": "CV"},
{"name": "Cayman Islands", "code": "KY"},
{"name": "Central African Republic", "code": "CF"},
{"name": "Chad", "code": "TD"},
{"name": "Chile", "code": "CL"},
{"name": "China", "code": "CN"},
{"name": "Christmas Island", "code": "CX"},
{"name": "Cocos (Keeling) Islands", "code": "CC"},
{"name": "Colombia", "code": "CO"},
{"name": "Comoros", "code": "KM"},
{"name": "Congo", "code": "CG"},
{"name": "Congo, The Democratic Republic of the", "code": "CD"},
{"name": "Cook Islands", "code": "CK"},
{"name": "Costa Rica", "code": "CR"},
{"name": "Cote D\'Ivoire", "code": "CI"},
{"name": "Croatia", "code": "HR"},
{"name": "Cuba", "code": "CU"},
{"name": "Cyprus", "code": "CY"},
{"name": "Czech Republic", "code": "CZ"},
{"name": "Denmark", "code": "DK"},
{"name": "Djibouti", "code": "DJ"},
{"name": "Dominica", "code": "DM"},
{"name": "Dominican Republic", "code": "DO"},
{"name": "Ecuador", "code": "EC"},
{"name": "Egypt", "code": "EG"},
{"name": "El Salvador", "code": "SV"},
{"name": "Equatorial Guinea", "code": "GQ"},
{"name": "Eritrea", "code": "ER"},
{"name": "Estonia", "code": "EE"},
{"name": "Ethiopia", "code": "ET"},
{"name": "Falkland Islands (Malvinas)", "code": "FK"},
{"name": "Faroe Islands", "code": "FO"},
{"name": "Fiji", "code": "FJ"},
{"name": "Finland", "code": "FI"},
{"name": "France", "code": "FR"},
{"name": "French Guiana", "code": "GF"},
{"name": "French Polynesia", "code": "PF"},
{"name": "French Southern Territories", "code": "TF"},
{"name": "Gabon", "code": "GA"},
{"name": "Gambia", "code": "GM"},
{"name": "Georgia", "code": "GE"},
{"name": "Germany", "code": "DE"},
{"name": "Ghana", "code": "GH"},
{"name": "Gibraltar", "code": "GI"},
{"name": "Greece", "code": "GR"},
{"name": "Greenland", "code": "GL"},
{"name": "Grenada", "code": "GD"},
{"name": "Guadeloupe", "code": "GP"},
{"name": "Guam", "code": "GU"},
{"name": "Guatemala", "code": "GT"},
{"name": "Guernsey", "code": "GG"},
{"name": "Guinea", "code": "GN"},
{"name": "Guinea-Bissau", "code": "GW"},
{"name": "Guyana", "code": "GY"},
{"name": "Haiti", "code": "HT"},
{"name": "Heard Island and Mcdonald Islands", "code": "HM"},
{"name": "Holy See (Vatican City State)", "code": "VA"},
{"name": "Honduras", "code": "HN"},
{"name": "Hong Kong", "code": "HK"},
{"name": "Hungary", "code": "HU"},
{"name": "Iceland", "code": "IS"},
{"name": "India", "code": "IN"},
{"name": "Indonesia", "code": "ID"},
{"name": "Iran, Islamic Republic Of", "code": "IR"},
{"name": "Iraq", "code": "IQ"},
{"name": "Ireland", "code": "IE"},
{"name": "Isle of Man", "code": "IM"},
{"name": "Israel", "code": "IL"},
{"name": "Italy", "code": "IT"},
{"name": "Jamaica", "code": "JM"},
{"name": "Japan", "code": "JP"},
{"name": "Jersey", "code": "JE"},
{"name": "Jordan", "code": "JO"},
{"name": "Kazakhstan", "code": "KZ"},
{"name": "Kenya", "code": "KE"},
{"name": "Kiribati", "code": "KI"},
{"name": "Korea, Democratic People\'S Republic of", "code": "KP"},
{"name": "Korea, Republic of", "code": "KR"},
{"name": "Kuwait", "code": "KW"},
{"name": "Kyrgyzstan", "code": "KG"},
{"name": "Lao People\'S Democratic Republic", "code": "LA"},
{"name": "Latvia", "code": "LV"},
{"name": "Lebanon", "code": "LB"},
{"name": "Lesotho", "code": "LS"},
{"name": "Liberia", "code": "LR"},
{"name": "Libyan Arab Jamahiriya", "code": "LY"},
{"name": "Liechtenstein", "code": "LI"},
{"name": "Lithuania", "code": "LT"},
{"name": "Luxembourg", "code": "LU"},
{"name": "Macao", "code": "MO"},
{"name": "Macedonia, The Former Yugoslav Republic of", "code": "MK"},
{"name": "Madagascar", "code": "MG"},
{"name": "Malawi", "code": "MW"},
{"name": "Malaysia", "code": "MY"},
{"name": "Maldives", "code": "MV"},
{"name": "Mali", "code": "ML"},
{"name": "Malta", "code": "MT"},
{"name": "Marshall Islands", "code": "MH"},
{"name": "Martinique", "code": "MQ"},
{"name": "Mauritania", "code": "MR"},
{"name": "Mauritius", "code": "MU"},
{"name": "Mayotte", "code": "YT"},
{"name": "Mexico", "code": "MX"},
{"name": "Micronesia, Federated States of", "code": "FM"},
{"name": "Moldova, Republic of", "code": "MD"},
{"name": "Monaco", "code": "MC"},
{"name": "Mongolia", "code": "MN"},
{"name": "Montserrat", "code": "MS"},
{"name": "Morocco", "code": "MA"},
{"name": "Mozambique", "code": "MZ"},
{"name": "Myanmar", "code": "MM"},
{"name": "Namibia", "code": "NA"},
{"name": "Nauru", "code": "NR"},
{"name": "Nepal", "code": "NP"},
{"name": "Netherlands", "code": "NL"},
{"name": "Netherlands Antilles", "code": "AN"},
{"name": "New Caledonia", "code": "NC"},
{"name": "New Zealand", "code": "NZ"},
{"name": "Nicaragua", "code": "NI"},
{"name": "Niger", "code": "NE"},
{"name": "Nigeria", "code": "NG"},
{"name": "Niue", "code": "NU"},
{"name": "Norfolk Island", "code": "NF"},
{"name": "Northern Mariana Islands", "code": "MP"},
{"name": "Norway", "code": "NO"},
{"name": "Oman", "code": "OM"},
{"name": "Pakistan", "code": "PK"},
{"name": "Palau", "code": "PW"},
{"name": "Palestinian Territory, Occupied", "code": "PS"},
{"name": "Panama", "code": "PA"},
{"name": "Papua New Guinea", "code": "PG"},
{"name": "Paraguay", "code": "PY"},
{"name": "Peru", "code": "PE"},
{"name": "Philippines", "code": "PH"},
{"name": "Pitcairn", "code": "PN"},
{"name": "Poland", "code": "PL"},
{"name": "Portugal", "code": "PT"},
{"name": "Puerto Rico", "code": "PR"},
{"name": "Qatar", "code": "QA"},
{"name": "Reunion", "code": "RE"},
{"name": "Romania", "code": "RO"},
{"name": "Russian Federation", "code": "RU"},
{"name": "RWANDA", "code": "RW"},
{"name": "Saint Helena", "code": "SH"},
{"name": "Saint Kitts and Nevis", "code": "KN"},
{"name": "Saint Lucia", "code": "LC"},
{"name": "Saint Pierre and Miquelon", "code": "PM"},
{"name": "Saint Vincent and the Grenadines", "code": "VC"},
{"name": "Samoa", "code": "WS"},
{"name": "San Marino", "code": "SM"},
{"name": "Sao Tome and Principe", "code": "ST"},
{"name": "Saudi Arabia", "code": "SA"},
{"name": "Senegal", "code": "SN"},
{"name": "Serbia and Montenegro", "code": "CS"},
{"name": "Seychelles", "code": "SC"},
{"name": "Sierra Leone", "code": "SL"},
{"name": "Singapore", "code": "SG"},
{"name": "Slovakia", "code": "SK"},
{"name": "Slovenia", "code": "SI"},
{"name": "Solomon Islands", "code": "SB"},
{"name": "Somalia", "code": "SO"},
{"name": "South Africa", "code": "ZA"},
{"name": "South Georgia and the South Sandwich Islands", "code": "GS"},
{"name": "Spain", "code": "ES"},
{"name": "Sri Lanka", "code": "LK"},
{"name": "Sudan", "code": "SD"},
{"name": "Suriname", "code": "SR"},
{"name": "Svalbard and Jan Mayen", "code": "SJ"},
{"name": "Swaziland", "code": "SZ"},
{"name": "Sweden", "code": "SE"},
{"name": "Switzerland", "code": "CH"},
{"name": "Syrian Arab Republic", "code": "SY"},
{"name": "Taiwan, Province of China", "code": "TW"},
{"name": "Tajikistan", "code": "TJ"},
{"name": "Tanzania, United Republic of", "code": "TZ"},
{"name": "Thailand", "code": "TH"},
{"name": "Timor-Leste", "code": "TL"},
{"name": "Togo", "code": "TG"},
{"name": "Tokelau", "code": "TK"},
{"name": "Tonga", "code": "TO"},
{"name": "Trinidad and Tobago", "code": "TT"},
{"name": "Tunisia", "code": "TN"},
{"name": "Turkey", "code": "TR"},
{"name": "Turkmenistan", "code": "TM"},
{"name": "Turks and Caicos Islands", "code": "TC"},
{"name": "Tuvalu", "code": "TV"},
{"name": "Uganda", "code": "UG"},
{"name": "Ukraine", "code": "UA"},
{"name": "United Arab Emirates", "code": "AE"},
{"name": "United Kingdom", "code": "GB"},
{"name": "United States", "code": "US"},
{"name": "United States Minor Outlying Islands", "code": "UM"},
{"name": "Uruguay", "code": "UY"},
{"name": "Uzbekistan", "code": "UZ"},
{"name": "Vanuatu", "code": "VU"},
{"name": "Venezuela", "code": "VE"},
{"name": "Viet Nam", "code": "VN"},
{"name": "Virgin Islands, British", "code": "VG"},
{"name": "Virgin Islands, U.S.", "code": "VI"},
{"name": "Wallis and Futuna", "code": "WF"},
{"name": "Western Sahara", "code": "EH"},
{"name": "Yemen", "code": "YE"},
{"name": "Zambia", "code": "ZM"},
{"name": "Zimbabwe", "code": "ZW"}
];
let selectCountries = document.getElementById("allCountries");
for (var i = 0;i < allCountries.length;i++) {
var option = document.createElement("option");
option.value = allCountries[i].code;
option.text = allCountries[i].name;
selectCountries.appendChild(option);
}
let selectBox4 = new vanillaSelectBox("#allCountries", { "maxHeight": 200, "search": true,"stayOpen":true,translations: { "all": "All", "items": "Countries" } });
</script>
</html>