Skip to content

Instantly share code, notes, and snippets.

@mikegrassotti
Created November 10, 2015 04:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikegrassotti/94b7ca5021d7bc78e823 to your computer and use it in GitHub Desktop.
Save mikegrassotti/94b7ca5021d7bc78e823 to your computer and use it in GitHub Desktop.
tag-colors
import Ember from 'ember';
export default Ember.Controller.extend({
tagsSorting: ['id'],
tags: [
{id: 1, color: 'cp-colour-1'},
{id: 11, color: 'cp-colour-1'},
{id: 6, color: 'cp-colour-6'},
{id: 3, color: 'cp-colour-3'},
{id: 4, color: 'cp-colour-4'}
],
sortedTags: Ember.computed.sort('tags', 'tagsSorting'),
tagColorsAvailable: Ember.computed.union('tagColorsAlwaysAvailable', 'tagColorsUnused'),
tagColorsAlwaysAvailable: ['cp-colour-1'],
tagColorsUnused: Ember.computed.setDiff('tagColorsPossible', 'tagColorsUsed'),
tagColorsUsed: Ember.computed.mapBy('tags', 'color'),
tagColorsPossible: Ember.computed('', function() {
let arr = [];
for (let i = 1; i < 19; i++) {
arr.push('cp-colour-' + i);
}
return arr;
}),
});
<h1>Available tag colors:</h1>
<br>
{{#each tagColorsAvailable as |c|}}
<li>{{c}}</li>
{{/each}}
{{outlet}}
<br>
<br>
{
"version": "0.4.16",
"EmberENV": {
"FEATURES": {}
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.1.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment