Skip to content

Instantly share code, notes, and snippets.

@al3xnag
Created April 15, 2020 12:03
Show Gist options
  • Save al3xnag/c5e1c476a19faabe1effacfa96804134 to your computer and use it in GitHub Desktop.
Save al3xnag/c5e1c476a19faabe1effacfa96804134 to your computer and use it in GitHub Desktop.
shared-in-element
import Controller from '@ember/controller';
export default class ApplicationController extends Controller {
}
import Component from '@ember/component';
export default Component.extend({
didInsertElement() {
this._super(...arguments);
this.set('customMessagesContainer', this.element.querySelector('.custom-messages-container'));
}
});
{{the-form-field}}
{{the-form-field}}
{{the-form-field}}
{{the-form-field customMessagesContainer=customMessagesContainer}}
{{the-form-field customMessagesContainer=customMessagesContainer}}
{{the-form-field customMessagesContainer=customMessagesContainer}}
<div class="custom-messages-container"></div>
import Component from '@ember/component';
export default Component.extend({
customMessagesContainer: null
});
<div>THE-FORM-FIELD</div>
{{#if customMessagesContainer}}
{{#-in-element customMessagesContainer}}
<ul>
<li>err1 {{this.elementId}}</li>
<li>err2</li>
<li>err3</li>
</ul>
{{/-in-element}}
{{else}}
<ul>
<li>err1 {{this.elementId}}</li>
<li>err2</li>
<li>err3</li>
</ul>
{{/if}}
{
"version": "0.17.0",
"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.3.1/jquery.js",
"ember": "3.17.0",
"ember-template-compiler": "3.17.0",
"ember-testing": "3.17.0"
},
"addons": {
"@glimmer/component": "1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment