Skip to content

Instantly share code, notes, and snippets.

@chancancode
Created July 15, 2020 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chancancode/9fc546ae6e66b9a012fb72d087e36e77 to your computer and use it in GitHub Desktop.
Save chancancode/9fc546ae6e66b9a012fb72d087e36e77 to your computer and use it in GitHub Desktop.
New Twiddle
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';
export default class SelectList extends Component {
@tracked selectedIndex = 0;
get items() {
return this.args.items;
}
get firstIndex() {
return 0;
}
get lastIndex() {
return this.items.length - 1;
}
@action _didInsertElement() {
document.addEventListener('keydown', this.onKeydown);
}
@action _willDestroyElement() {
document.removeEventListener('keydown', this.onKeydown);
}
@action _didUpdateAttrs() {
if (this.selectedIndex > this.lastIndex) {
this.selectedIndex = this.lastIndex;
}
}
@action onKeydown(e) {
switch (e.key) {
case 'ArrowUp':
return this.selectPrev();
case 'ArrowDown':
return this.selectNext();
// case 'Enter':
// return this.didCommit();
// case 'Escape':
//. return this.didCancel();
}
}
@action selectPrev() {
if (this.selectedIndex === this.firstIndex) {
this.selectedIndex = this.lastIndex;
} else {
this.selectedIndex--;
}
}
@action selectNext() {
if (this.selectedIndex === this.lastIndex) {
this.selectedIndex = this.firstIndex;
} else {
this.selectedIndex++;
}
}
}
import Controller from '@ember/controller';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
const ITEMS = ['one', 'two', 'three', 'four'];
export default class ApplicationController extends Controller {
@tracked items = [...ITEMS];
@action updateItems(count) {
this.items = ITEMS.slice(0, count);
}
}
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
ul {
border: 1px solid black;
}
li.selected {
background: #efefef;
}
<SelectList @items={{this.items}} />
<p>
<button {{on "click" (fn this.updateItems 1)}}>One Items</button>
<button {{on "click" (fn this.updateItems 2)}}>Two Items</button>
<button {{on "click" (fn this.updateItems 3)}}>Three Items</button>
<button {{on "click" (fn this.updateItems 4)}}>Four Items</button>
</p>
<p>
Test case:
<ol>
<li>Press down arrow twice to get to "three".</li>
<li>Press "Three Items".</li>
<li>Selection should remain at "Three Items".</li>
<li>Press "Two Items".</li>
<li>Selection should move to "Two Items".</li>
<li>Press "Three Items".</li>
<li>Selection should remain at "Two Items".</li>
</ol>
</p>
<ul
{{did-insert this._didInsertElement}}
{{will-destroy this._willDestroyElement}}
{{did-update this._didUpdateAttrs @items}}
>
{{#each @items as |item index|}}
<li class={{if (eq index this.selectedIndex) "selected"}}>
{{item}}
</li>
{{/each}}
</ul>
<p>selectedIndex: {{this.selectedIndex}}</p>
<p>Use up and down arrow keys to move selection</p>
{
"version": "0.17.1",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false,
"_APPLICATION_TEMPLATE_WRAPPER": true,
"_JQUERY_INTEGRATION": true
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js",
"ember": "3.18.1",
"ember-template-compiler": "3.18.1",
"ember-testing": "3.18.1"
},
"addons": {
"@glimmer/component": "1.0.0",
"@ember/render-modifiers": "1.0.2",
"ember-truth-helpers": "2.1.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment