Merge and build

This commit is contained in:
Josh Johnson 2016-05-05 21:34:06 +01:00
commit 877a688275
6 changed files with 327 additions and 293 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,9 @@
'use strict'; 'use strict';
import { createStore } from 'redux';
import rootReducer from './reducers/index.js';
import { addItem, removeItem, selectItem, addOption, filterOptions, activateOptions, addGroup } from './actions/index'; import { addItem, removeItem, selectItem, addOption, filterOptions, activateOptions, addGroup } from './actions/index';
import { isScrolledIntoView, getAdjacentEl, findAncestor, wrap, isType, strToEl, extend, getWidthOfInput, debounce } from './lib/utils.js'; import { isScrolledIntoView, getAdjacentEl, findAncestor, wrap, isType, strToEl, extend, getWidthOfInput, debounce } from './lib/utils.js';
import Fuse from 'fuse.js'; import Fuse from 'fuse.js';
import Store from './store.js';
/** /**
* Choices * Choices
@ -78,14 +77,15 @@ export class Choices {
callbackOnAddItem: function() {} callbackOnAddItem: function() {}
}; };
// Initial instance state
this.initialised = false;
// Merge options with user options // Merge options with user options
this.options = extend(defaultOptions, userOptions); this.options = extend(defaultOptions, userOptions);
// Create data store // Create data store
this.store = createStore(rootReducer); this.store = new Store(this.render);
// State tracking
this.currentState = {};
this.prevState = {};
// Retrieve triggering element (i.e. element with 'data-choice' trigger) // Retrieve triggering element (i.e. element with 'data-choice' trigger)
this.passedElement = isType('String', element) ? document.querySelector(element) : element; this.passedElement = isType('String', element) ? document.querySelector(element) : element;
@ -227,8 +227,8 @@ export class Choices {
const upKey = 38; const upKey = 38;
const downKey = 40; const downKey = 40;
const activeItems = this.getItemsFilteredByActive(); const activeItems = this.store.getItemsFilteredByActive();
const activeOptions = this.getOptionsFilteredByActive(); const activeOptions = this.store.getOptionsFilteredByActive();
const hasFocussedInput = this.input === document.activeElement; const hasFocussedInput = this.input === document.activeElement;
const hasActiveDropdown = this.dropdown && this.dropdown.classList.contains(this.options.classNames.activeState); const hasActiveDropdown = this.dropdown && this.dropdown.classList.contains(this.options.classNames.activeState);
@ -326,23 +326,27 @@ export class Choices {
if(this.passedElement.type === 'select-multiple' && this.options.allowSearch) { if(this.passedElement.type === 'select-multiple' && this.options.allowSearch) {
if(this.input === document.activeElement) { if(this.input === document.activeElement) {
const options = this.getOptions(); const options = this.store.getOptions();
const hasUnactiveOptions = options.some((option) => { const hasUnactiveOptions = options.some((option) => {
return option.active !== true; return option.active !== true;
}); });
// Check that have a value to search // Check that have a value to search
if(this.input.value) { if(this.input.value && options.length) {
const handleFilter = debounce(() => { const handleFilter = debounce(() => {
// Ensure value *still* has a value after 500 delay // Ensure value *still* has a value after 500 delay
if(this.input.value && this.input.value.length >= 1) { if(this.input.value && this.input.value.length >= 1) {
const options = this.getOptionsFiltedBySelectable(); const haystack = this.store.getOptionsFiltedBySelectable();
const fuse = new Fuse(options, { const needle = this.input.value;
const fuse = new Fuse(haystack, {
keys: ['label', 'value'], keys: ['label', 'value'],
shouldSort: true, shouldSort: true,
include: 'score', include: 'score',
}); });
const results = fuse.search(this.input.value);
const results = fuse.search(needle);
this.isSearching = true; this.isSearching = true;
this.store.dispatch(filterOptions(results)); this.store.dispatch(filterOptions(results));
} }
@ -355,7 +359,7 @@ export class Choices {
} }
} }
} }
} q }
/** /**
@ -364,7 +368,7 @@ export class Choices {
* @return * @return
*/ */
onClick(e) { onClick(e) {
const activeItems = this.getItemsFilteredByActive(); const activeItems = this.store.getItemsFilteredByActive();
const hasShiftKey = e.shiftKey ? true : false; const hasShiftKey = e.shiftKey ? true : false;
if(this.passedElement.type === 'select-multiple' && !this.dropdown.classList.contains(this.options.classNames.activeState)) { if(this.passedElement.type === 'select-multiple' && !this.dropdown.classList.contains(this.options.classNames.activeState)) {
@ -383,7 +387,7 @@ export class Choices {
this.handleClick(activeItems, e.target, hasShiftKey); this.handleClick(activeItems, e.target, hasShiftKey);
} else if(e.target.hasAttribute('data-option')) { } else if(e.target.hasAttribute('data-option')) {
// If we are clicking on an option // If we are clicking on an option
const options = this.getOptionsFilteredByActive(); const options = this.store.getOptionsFilteredByActive();
const id = e.target.getAttribute('data-id'); const id = e.target.getAttribute('data-id');
const option = options.find((option) => { const option = options.find((option) => {
return option.id === parseInt(id); return option.id === parseInt(id);
@ -611,7 +615,7 @@ export class Choices {
* @return * @return
*/ */
selectAll() { selectAll() {
const items = this.getItems(); const items = this.store.getItems();
items.forEach((item) => { items.forEach((item) => {
this.selectItem(item); this.selectItem(item);
}); });
@ -622,7 +626,7 @@ export class Choices {
* @return * @return
*/ */
deselectAll() { deselectAll() {
const items = this.getItems(); const items = this.store.getItems();
items.forEach((item) => { items.forEach((item) => {
this.deselectItem(item); this.deselectItem(item);
}); });
@ -633,6 +637,7 @@ export class Choices {
* @param {String} value Value to add to store * @param {String} value Value to add to store
*/ */
addItem(value, label, optionId = -1, callback = this.options.callbackOnAddItem) { addItem(value, label, optionId = -1, callback = this.options.callbackOnAddItem) {
const items = this.store.getItems();
let passedValue = value.trim(); let passedValue = value.trim();
let passedLabel = label || passedValue; let passedLabel = label || passedValue;
let passedOptionId = optionId || -1; let passedOptionId = optionId || -1;
@ -648,7 +653,7 @@ export class Choices {
} }
// Generate unique id // Generate unique id
const id = this.store.getState().items.length + 1; const id = items ? items.length + 1 : 1;
this.store.dispatch(addItem(passedValue, passedLabel, id, passedOptionId)); this.store.dispatch(addItem(passedValue, passedLabel, id, passedOptionId));
@ -680,11 +685,8 @@ export class Choices {
// Run callback // Run callback
if(callback){ if(callback){
if(isType('Function', callback)) { if(!isType('Function', callback)) console.error('callbackOnRemoveItem: Callback is not a function'); return;
callback(value); callback(value);
} else {
console.error('callbackOnRemoveItem: Callback is not a function');
}
} }
} }
@ -694,11 +696,9 @@ export class Choices {
* @return * @return
*/ */
removeItemsByValue(value) { removeItemsByValue(value) {
if(!value || !isType('String', value)) { if(!value || !isType('String', value)) console.error('removeItemsByValue: No value was passed to be removed'); return;
console.error('removeItemsByValue: No value was passed to be removed');
}
const items = this.getItemsFilteredByActive(); const items = this.store.getItemsFilteredByActive();
items.forEach((item) => { items.forEach((item) => {
if(item.value === value) { if(item.value === value) {
@ -714,7 +714,7 @@ export class Choices {
* @return * @return
*/ */
removeAllItems() { removeAllItems() {
const items = this.getItemsFilteredByActive(); const items = this.store.getItemsFilteredByActive();
items.forEach((item) => { items.forEach((item) => {
if(item.active) { if(item.active) {
@ -729,7 +729,7 @@ export class Choices {
* @return * @return
*/ */
removeAllSelectedItems() { removeAllSelectedItems() {
const items = this.getItemsFilteredByActive(); const items = this.store.getItemsFilteredByActive();
items.forEach((item) => { items.forEach((item) => {
if(item.selected && item.active) { if(item.selected && item.active) {
@ -793,8 +793,8 @@ export class Choices {
*/ */
addOption(option, groupId = -1) { addOption(option, groupId = -1) {
// Generate unique id // Generate unique id
const state = this.store.getState(); const options = this.store.getOptions();
const id = state.options.length + 1; const id = options.length + 1;
const value = option.value; const value = option.value;
const label = option.innerHTML; const label = option.innerHTML;
const isDisabled = option.disabled || option.parentNode.disabled; const isDisabled = option.disabled || option.parentNode.disabled;
@ -828,105 +828,63 @@ export class Choices {
} }
} }
/** getTemplate(template, ...args) {
* Get items from store if(!template) return;
* @return {Array} Item objects const templates = this.options.templates;
*/ return templates[template](...args);
getItems() {
const state = this.store.getState();
return state.items;
} }
/** /**
* Get active items from store * Create HTML element based on type and arguments
* @return {Array} Item objects * @param {String} template Template to create
* @param {...} args Data
* @return {HTMLElement}
*/ */
getItemsFilteredByActive() { createTemplates() {
const items = this.getItems(); const classNames = this.options.classNames;
const templates = {
containerOuter: () => {
return strToEl(`<div class="${ classNames.containerOuter }"></div>`);
},
containerInner: () => {
return strToEl(`<div class="${ classNames.containerInner }"></div>`);
},
list: () => {
return strToEl(`<ul class="${ classNames.list } ${ classNames.listItems }"></ul>`);
},
input: () => {
return strToEl(`<input type="text" class="${ classNames.input } ${ classNames.inputCloned }">`);
},
dropdown: () => {
return strToEl(`<div class="${ classNames.list } ${ classNames.listDropdown }"></div>`);
},
notice: (label) => {
return strToEl(`<div class="${ classNames.item } ${ classNames.itemOption }">${ label }</div>`);
},
option: (data) => {
return strToEl(`
<div class="${ classNames.item } ${ classNames.itemOption } ${ data.disabled ? classNames.itemDisabled : classNames.itemSelectable }" data-option ${ data.disabled ? 'data-option-disabled' : 'data-option-selectable' } data-id="${ data.id }" data-value="${ data.value }">
${ data.label }
</div>
`);
},
optgroup: (data) => {
return strToEl(`
<div class="${ classNames.group } ${ data.disabled ? classNames.itemDisabled : '' }" data-group data-id="${ data.id }" data-value="${ data.value }">
<div class="${ classNames.groupHeading }">${ data.value }</div>
</div>
`);
},
item: (data) => {
return strToEl(`
<div class="${ classNames.item } ${ classNames.itemOption } ${ data.selected ? classNames.selectedState : classNames.itemSelectable }" data-item data-id="${ data.id }" data-value="${ data.value }">
${ data.label }
</div>
`);
},
};
const valueArray = items.filter((item) => { this.options.templates = extend(this.options.templates, templates);
return item.active === true;
}, []);
return valueArray;
}
/**
* Get items from store reduced to just their values
* @return {Array} Item objects
*/
getItemsReducedToValues() {
const items = this.getItems();
const valueArray = items.reduce((prev, current) => {
prev.push(current.value);
return prev;
}, []);
return valueArray;
}
/**
* Get options from store
* @return {Array} Option objects
*/
getOptions() {
const state = this.store.getState();
return state.options;
}
/**
* Get active options from store
* @return {Array} Option objects
*/
getOptionsFilteredByActive() {
const options = this.getOptions();
const valueArray = options.filter((option) => {
return option.active === true && option.selected !== true;
},[]);
return valueArray;
}
/**
* Get selectable options from store
* @return {Array} Option objects
*/
getOptionsFiltedBySelectable() {
const options = this.getOptions();
const valueArray = options.filter((option) => {
return option.selected === false && option.disabled !== true;
},[]);
return valueArray;
}
/**
* Get groups from store
* @return {Array} Group objects
*/
getGroups() {
const state = this.store.getState();
return state.groups;
}
/**
* Get active groups from store
* @return {Array} Group objects
*/
getGroupsFilteredByActive() {
const groups = this.getGroups();
const options = this.getOptions();
const valueArray = groups.filter((group) => {
const isActive = group.active === true && group.disabled === false;
const hasActiveOptions = options.some((option) => {
return option.active === true && option.disabled === false;
});
return isActive && hasActiveOptions ? true : false;
},[]);
return valueArray;
} }
/** /**
@ -1000,156 +958,107 @@ export class Choices {
this.list = list; this.list = list;
} }
renderGroups(groups, options, fragment) {
groups.forEach((group, i) => {
// Grab options that are children of this group
const groupOptions = options.filter((option) => {
return option.groupId === group.id;
});
if(groupOptions.length >= 1) {
const dropdownGroup = this.getTemplate('optgroup', group);
groupOptions.forEach((option, j) => {
const dropdownItem = this.getTemplate('option', option);
dropdownGroup.appendChild(dropdownItem);
});
fragment.appendChild(dropdownGroup);
}
});
}
renderOptions(options, fragment) {
options.forEach((option, i) => {
const dropdownItem = this.getTemplate('option', option);
fragment.appendChild(dropdownItem);
});
}
renderItems(items, fragment) {
// Simplify store data to just values
const itemsFiltered = this.store.getItemsReducedToValues();
// Assign hidden input array of values
this.passedElement.value = itemsFiltered.join(this.options.delimiter);
// Clear list
this.list.innerHTML = '';
// Add each list item to list
items.forEach((item) => {
// Create new list element
const listItem = this.getTemplate('item', item);
// Append it to list
fragment.appendChild(listItem);
});
this.list.appendChild(fragment);
}
/** /**
* Render DOM with values * Render DOM with values
* @return * @return
*/ */
render(callback = this.options.callbackOnRender) { render() {
const classNames = this.options.classNames; this.currentState = this.store.getState();
const activeItems = this.getItemsFilteredByActive();
if(this.currentState !== this.prevState) {
// OPTIONS
if((this.currentState.options !== this.prevState.options || this.currentState.groups !== this.prevState.groups) && this.passedElement.type === 'select-multiple') {
// Get active groups/options
const activeGroups = this.store.getGroupsFilteredByActive();
const activeOptions = this.store.getOptionsFilteredByActive();
// OPTIONS // Create a fragment to store our list items (so we don't have to update the DOM for each item)
if(this.passedElement.type === 'select-multiple') { const optionListFragment = document.createDocumentFragment();
const activeOptions = this.getOptionsFilteredByActive();
const activeGroups = this.getGroupsFilteredByActive();
// Create a fragment to store our list items (so we don't have to update the DOM for each item) // Clear options
const optionListFragment = document.createDocumentFragment(); this.dropdown.innerHTML = '';
// If we have grouped options // If we have grouped options
if(activeGroups.length >= 1 && this.isSearching !== true) { if(activeGroups.length >= 1 && this.isSearching !== true) {
activeGroups.forEach((group, i) => { this.renderGroups(activeGroups, activeOptions, optionListFragment);
// Grab options that are children of this group } else if(activeOptions.length >= 1) {
const groupOptions = activeOptions.filter((option) => { this.renderOptions(activeOptions, optionListFragment);
return option.groupId === group.id; }
});
if(groupOptions.length >= 1) { // If we actually have anything to add to our dropdown
const dropdownGroup = this.getTemplate('optgroup', group); if(optionListFragment.children.length) {
this.dropdown.appendChild(optionListFragment);
groupOptions.forEach((option, j) => { this.highlightOption();
const dropdownItem = this.getTemplate('option', option); } else {
dropdownGroup.appendChild(dropdownItem); // If dropdown is empty, show a no content notice
}); const dropdownItem = this.getTemplate('notice', 'No options to select');
this.dropdown.appendChild(dropdownItem);
optionListFragment.appendChild(dropdownGroup); }
}
});
} else if(activeOptions.length >= 1) {
activeOptions.forEach((option, i) => {
const dropdownItem = this.getTemplate('option', option);
optionListFragment.appendChild(dropdownItem);
});
} }
// Clear options
this.dropdown.innerHTML = '';
if(optionListFragment.children.length) {
this.dropdown.appendChild(optionListFragment);
this.highlightOption();
} else {
// If dropdown is empty, show a no content notice
const dropdownItem = this.getTemplate('notice', 'No options to select');
this.dropdown.appendChild(dropdownItem);
}
}
// ITEMS
if(activeItems) {
// Simplify store data to just values
const itemsFiltered = this.getItemsReducedToValues();
// Assign hidden input array of values
this.passedElement.value = itemsFiltered.join(this.options.delimiter);
// Clear list
this.list.innerHTML = '';
// Create a fragment to store our list items (so we don't have to update the DOM for each item)
const itemListFragment = document.createDocumentFragment();
// Add each list item to list // ITEMS
activeItems.forEach((item) => { if(this.currentState.items !== this.prevState.items) {
// Create new list element const activeItems = this.store.getItemsFilteredByActive();
const listItem = this.getTemplate('item', item); if(activeItems) {
// Create a fragment to store our list items (so we don't have to update the DOM for each item)
// Append it to list const itemListFragment = document.createDocumentFragment();
itemListFragment.appendChild(listItem); this.renderItems(activeItems, itemListFragment);
}); }
this.list.appendChild(itemListFragment);
}
// Run callback if it is a function
if(callback){
if(isType('Function', callback)) {
callback(activeItems);
} else {
console.error('callbackOnRender: Callback is not a function');
} }
this.prevState = this.currentState;
} }
} }
getTemplate(template, ...args) {
if(!template) return;
const templates = this.options.templates;
return templates[template](...args);
}
/**
* Create HTML element based on type and arguments
* @param {String} template Template to create
* @param {...} args Data
* @return {HTMLElement}
*/
createTemplates() {
const classNames = this.options.classNames;
const templates = {
containerOuter: () => {
return strToEl(`<div class="${ classNames.containerOuter }"></div>`);
},
containerInner: () => {
return strToEl(`<div class="${ classNames.containerInner }"></div>`);
},
list: () => {
return strToEl(`<ul class="${ classNames.list } ${ classNames.listItems }"></ul>`);
},
input: () => {
return strToEl(`<input type="text" class="${ classNames.input } ${ classNames.inputCloned }">`);
},
dropdown: () => {
return strToEl(`<div class="${ classNames.list } ${ classNames.listDropdown }"></div>`);
},
notice: (label) => {
return strToEl(`<div class="${ classNames.item } ${ classNames.itemOption }">${ label }</div>`);
},
option: (data) => {
return strToEl(`
<div class="${ classNames.item } ${ classNames.itemOption } ${ data.disabled ? classNames.itemDisabled : classNames.itemSelectable }" data-option ${ data.disabled ? 'data-option-disabled' : 'data-option-selectable' } data-id="${ data.id }" data-value="${ data.value }">
${ data.label }
</div>
`);
},
optgroup: (data) => {
return strToEl(`
<div class="${ classNames.group } ${ data.disabled ? classNames.itemDisabled : '' }" data-group data-id="${ data.id }" data-value="${ data.value }">
<div class="${ classNames.groupHeading }">${ data.value }</div>
</div>
`);
},
item: (data) => {
return strToEl(`
<div class="${ classNames.item } ${ classNames.itemOption } ${ data.selected ? classNames.selectedState : classNames.itemSelectable }" data-item data-id="${ data.id }" data-value="${ data.value }">
${ data.label }
</div>
`);
},
};
this.options.templates = extend(this.options.templates, templates);
}
/** /**
* Trigger event listeners * Trigger event listeners
* @return * @return
@ -1185,15 +1094,12 @@ export class Choices {
* @return * @return
*/ */
init(callback = this.options.callbackOnInit) { init(callback = this.options.callbackOnInit) {
this.initialised = true;
// Create required elements // Create required elements
this.createTemplates(); this.createTemplates();
// Generate input markup // Generate input markup
this.generateInput(); this.generateInput();
// Subscribe to store
this.store.subscribe(this.render); this.store.subscribe(this.render);
// Render any items // Render any items

143
assets/scripts/src/store.js Normal file
View file

@ -0,0 +1,143 @@
'use strict';
import { createStore } from 'redux';
import rootReducer from './reducers/index.js';
export class Store {
constructor() {
this.store = createStore(
rootReducer,
window.devToolsExtension ? window.devToolsExtension() : undefined
);
}
/**
* Get store object (wrapping Redux method)
* @return {Object} State
*/
getState() {
return this.store.getState();
}
/**
* Dispatch event to store (wrapped Redux method)
* @param {Function} action Action function to trigger
* @return
*/
dispatch(action) {
this.store.dispatch(action);
}
/**
* Subscribe store to function call (wrapped Redux method)
* @param {Function} onChange Function to trigger when state changes
* @return
*/
subscribe(onChange) {
this.store.subscribe(onChange);
}
/**
* Get items from store
* @return {Array} Item objects
*/
getItems() {
const state = this.store.getState();
return state.items;
}
/**
* Get active items from store
* @return {Array} Item objects
*/
getItemsFilteredByActive() {
const items = this.getItems();
const values = items.filter((item) => {
return item.active === true;
}, []);
return values;
}
/**
* Get items from store reduced to just their values
* @return {Array} Item objects
*/
getItemsReducedToValues() {
const items = this.getItems();
const values = items.reduce((prev, current) => {
prev.push(current.value);
return prev;
}, []);
return values;
}
/**
* Get options from store
* @return {Array} Option objects
*/
getOptions() {
const state = this.store.getState();
return state.options;
}
/**
* Get active options from store
* @return {Array} Option objects
*/
getOptionsFilteredByActive() {
const options = this.getOptions();
const values = options.filter((option) => {
return option.active === true && option.selected !== true;
},[]);
return values;
}
/**
* Get selectable options from store
* @return {Array} Option objects
*/
getOptionsFiltedBySelectable() {
const options = this.getOptions();
const values = options.filter((option) => {
return option.selected === false && option.disabled !== true;
},[]);
return values;
}
/**
* Get groups from store
* @return {Array} Group objects
*/
getGroups() {
const state = this.store.getState();
return state.groups;
}
/**
* Get active groups from store
* @return {Array} Group objects
*/
getGroupsFilteredByActive() {
const groups = this.getGroups();
const options = this.getOptions();
const values = groups.filter((group) => {
const isActive = group.active === true && group.disabled === false;
const hasActiveOptions = options.some((option) => {
return option.active === true && option.disabled === false;
});
return isActive && hasActiveOptions ? true : false;
},[]);
return values;
}
};
module.exports = Store;

View file

@ -98,24 +98,15 @@ h1, h2, h3, h4, h5, h6 {
opacity: .5; } opacity: .5; }
.choices__list--dropdown .choices__item.is-selected:hover { .choices__list--dropdown .choices__item.is-selected:hover {
background-color: #FFFFFF; } background-color: #FFFFFF; }
.choices__list--dropdown .choices__item--selectable { .choices__list--dropdown .choices__item--selectable:after {
-webkit-transition: background-color .15s ease-in-out; content: "Press to select";
transition: background-color .15s ease-in-out; } font-size: 12px;
.choices__list--dropdown .choices__item--selectable:after { opacity: 0;
content: "Press to select"; float: right; }
font-size: 12px; .choices__list--dropdown .choices__item--selectable.is-highlighted {
opacity: 0; background-color: #f2f2f2; }
float: right; .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
-webkit-transition: opacity .15s ease-in-out; opacity: .5; }
transition: opacity .15s ease-in-out; }
.choices__list--dropdown .choices__item--selectable.is-highlighted {
background-color: #f2f2f2;
-webkit-transition: background-color .15s ease-in-out;
transition: background-color .15s ease-in-out; }
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
opacity: .5;
-webkit-transition: opacity .15s ease-in-out;
transition: opacity .15s ease-in-out; }
.choices__list--dropdown.is-active { .choices__list--dropdown.is-active {
display: block; } display: block; }
.choices__list--dropdown.is-flipped { .choices__list--dropdown.is-flipped {

View file

@ -1 +1 @@
*,:after,:before{box-sizing:border-box}body,html{margin:0;height:100%;widows:100%}html{font-size:62.5%}body{background-color:#333;font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-size:1.6rem;color:#fff}label{display:block;margin-bottom:.8rem;font-size:1.4rem;font-weight:500}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1.2rem;font-weight:500}.container{display:block;margin:auto;max-width:35em;padding:2.4rem}.section{background-color:#fff;padding:2.4rem;color:#333}.choices{margin-bottom:2.4rem;position:relative}.choices__inner{background-color:#f9f9f9;padding:.75rem .75rem .375rem;border:1px solid #ddd;border-radius:.25rem;font-size:1.4rem;cursor:text}.is-active .choices__inner{border-color:#b7b7b7}.choices__inner:focus{outline:1px solid #00bcd4;outline-offset:-1px}.choices__list{margin:0;padding-left:0;list-style-type:none}.choices__list--items{display:inline}.choices__list--items .choices__item{display:inline-block;border-radius:2rem;padding:.4rem 1rem;font-size:1.2rem;margin-right:.375rem;margin-bottom:.375rem;background-color:#00bcd4;border:1px solid #00b1c7;color:#fff;word-break:break-all}.choices__list--items .choices__item.is-selected{background-color:#00a5bb}.choices__list--dropdown{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;max-height:300px;overflow:auto;will-change:scroll-position}.is-active .choices__list--dropdown{border-color:#b7b7b7}.choices__list--dropdown .choices__item{padding:1rem;font-size:1.4rem}.choices__list--dropdown .choices__item.is-selected{opacity:.5}.choices__list--dropdown .choices__item.is-selected:hover{background-color:#fff}.choices__list--dropdown .choices__item--selectable,.choices__list--dropdown .choices__item--selectable.is-highlighted{-webkit-transition:background-color .15s ease-in-out;transition:background-color .15s ease-in-out}.choices__list--dropdown .choices__item--selectable:after{content:"Press to select";font-size:12px;opacity:0;float:right;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.choices__list--dropdown.is-active{display:block}.choices__list--dropdown.is-flipped{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__group .choices__heading{font-weight:600;font-size:1.2rem;padding:1rem;border-bottom:1px solid #eaeaea;color:gray}.choices__input{background-color:#f9f9f9;font-size:1.4rem;padding:0;margin-bottom:.5rem;display:inline-block;vertical-align:baseline;border:0;border-radius:0;max-width:100%;padding:.4rem 0 .4rem .2rem}.choices__input:focus{outline:0} *,:after,:before{box-sizing:border-box}body,html{margin:0;height:100%;widows:100%}html{font-size:62.5%}body{background-color:#333;font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-size:1.6rem;color:#fff}label{display:block;margin-bottom:.8rem;font-size:1.4rem;font-weight:500}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1.2rem;font-weight:500}.container{display:block;margin:auto;max-width:35em;padding:2.4rem}.section{background-color:#fff;padding:2.4rem;color:#333}.choices{margin-bottom:2.4rem;position:relative}.choices__inner{background-color:#f9f9f9;padding:.75rem .75rem .375rem;border:1px solid #ddd;border-radius:.25rem;font-size:1.4rem;cursor:text}.is-active .choices__inner{border-color:#b7b7b7}.choices__inner:focus{outline:1px solid #00bcd4;outline-offset:-1px}.choices__list{margin:0;padding-left:0;list-style-type:none}.choices__list--items{display:inline}.choices__list--items .choices__item{display:inline-block;border-radius:2rem;padding:.4rem 1rem;font-size:1.2rem;margin-right:.375rem;margin-bottom:.375rem;background-color:#00bcd4;border:1px solid #00b1c7;color:#fff;word-break:break-all}.choices__list--items .choices__item.is-selected{background-color:#00a5bb}.choices__list--dropdown{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;max-height:300px;overflow:auto;will-change:scroll-position}.is-active .choices__list--dropdown{border-color:#b7b7b7}.choices__list--dropdown .choices__item{padding:1rem;font-size:1.4rem}.choices__list--dropdown .choices__item--selectable.is-highlighted:after,.choices__list--dropdown .choices__item.is-selected{opacity:.5}.choices__list--dropdown .choices__item.is-selected:hover{background-color:#fff}.choices__list--dropdown .choices__item--selectable:after{content:"Press to select";font-size:12px;opacity:0;float:right}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown.is-active{display:block}.choices__list--dropdown.is-flipped{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__group .choices__heading{font-weight:600;font-size:1.2rem;padding:1rem;border-bottom:1px solid #eaeaea;color:gray}.choices__input{background-color:#f9f9f9;font-size:1.4rem;padding:0;margin-bottom:.5rem;display:inline-block;vertical-align:baseline;border:0;border-radius:0;max-width:100%;padding:.4rem 0 .4rem .2rem}.choices__input:focus{outline:0}

View file

@ -115,21 +115,15 @@ h1, h2, h3, h4, h5, h6 {
} }
} }
.choices__item--selectable { .choices__item--selectable {
transition: background-color .15s ease-in-out;
&:after { &:after {
content: "Press to select"; content: "Press to select";
font-size: 12px; font-size: 12px;
opacity: 0; opacity: 0;
float: right; float: right;
transition: opacity .15s ease-in-out;
} }
&.is-highlighted { &.is-highlighted {
background-color: mix(#000000, #FFFFFF, 5%); background-color: mix(#000000, #FFFFFF, 5%);
transition: background-color .15s ease-in-out; &:after { opacity: .5; }
&:after {
opacity: .5;
transition: opacity .15s ease-in-out;
}
} }
} }