Skip to content

Instantly share code, notes, and snippets.

@elwayman02
Last active June 11, 2020 20:46
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 elwayman02/93e426e0696a9ce7a3f20b2a0ceecfbe to your computer and use it in GitHub Desktop.
Save elwayman02/93e426e0696a9ce7a3f20b2a0ceecfbe to your computer and use it in GitHub Desktop.
Guid Generation
import Component from '@glimmer/component';
import { action, set } from '@ember/object';
export default class extends Component {
showSecondYield = false;
@action
toggleSecondYield() {
set(this, 'showSecondYield', !this.showSecondYield);
}
}
import Component from '@glimmer/component';
export default class extends Component {
}
import Component from '@glimmer/component';
import { computed } from '@ember/object';
import { guidFor } from '@ember/object/internals';
export default class extends Component {
@computed('args.input')
get guid() {
return guidFor(this.args.input);
}
}
import Component from '@glimmer/component';
import { computed } from '@ember/object';
import { guidFor } from '@ember/object/internals';
export default class extends Component {
@computed('args.input')
get guid() {
return guidFor(this.args.input);
}
}
import Controller from '@ember/controller';
export default class ApplicationController extends Controller {
appName = 'Ember Twiddle';
}
<h1>Welcome to {{this.appName}}</h1>
<br>
<br>
<GuidFor @input='1234'/>
<GuidFor @input='1234'/>
<GuidFor @input=(hash foo='bar')/>
<DoubleYield as |guid|>
<guid @input='1234'/>
</DoubleYield>
<DoubleYield as |guid|>
<guid @input=(hash foo='bar')/>
</DoubleYield>
<DoubleConditionalYield as |guid|>
<guid @input='1234'/>
</DoubleConditionalYield>
<DoubleConditionalYield as |guid|>
<guid @input=(hash foo='bar')/>
</DoubleConditionalYield>
{{#let (hash foo='bar') as |foo|}}
<GuidFor @input={{foo}}/>
<GuidFor @input={{foo}}/>
<DoubleYield as |guid|>
<guid @input={{foo}}/>
</DoubleYield>
<DoubleConditionalYield as |guid|>
<guid @input={{foo}}/>
</DoubleConditionalYield>
{{/let}}
<br>
<br>
Double Conditional Yield:
<button {{on 'click' this.toggleSecondYield}}>Toggle</button>
{{yield (component 'guid-for')}}
{{#if showSecondYield}}
{{yield (component 'guid-for-two')}}
{{/if}}
Double Yield:
{{yield (component 'guid-for')}}
{{yield (component 'guid-for-two')}}
{
"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"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment