Global injection
This commit is contained in:
parent
c70dd933c5
commit
559c0a3d9f
9 changed files with 76 additions and 9 deletions
19
app/initializers/global-variables.js
Normal file
19
app/initializers/global-variables.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import config from '../config/environment';
|
||||||
|
|
||||||
|
var globals = Ember.Object.extend({
|
||||||
|
genus: config.genus,
|
||||||
|
apiURL: config.apiURL,
|
||||||
|
});
|
||||||
|
|
||||||
|
export function initialize(container, application) {
|
||||||
|
application.register('global:variables', globals, {singleton: true});
|
||||||
|
application.inject('controller', 'globals', 'global:variables');
|
||||||
|
application.inject('component', 'globals', 'global:variables');
|
||||||
|
application.inject('adapter', 'globals', 'global:variables');
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'global-variables',
|
||||||
|
initialize: initialize
|
||||||
|
};
|
|
@ -1,10 +1,13 @@
|
||||||
import DS from 'ember-data';
|
import DS from 'ember-data';
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import config from '../../config/environment';
|
|
||||||
|
|
||||||
export default DS.RESTAdapter.extend({
|
export default DS.RESTAdapter.extend({
|
||||||
namespace: 'api/' + config.genus,
|
namespace: function() {
|
||||||
host: config.apiURL,
|
return 'api/' + this.get('globals.genus');
|
||||||
|
}.property(),
|
||||||
|
host: function() {
|
||||||
|
return this.get('globals.apiURL');
|
||||||
|
}.property(),
|
||||||
coalesceFindRequests: true,
|
coalesceFindRequests: true,
|
||||||
ajaxError: function(jqXHR) {
|
ajaxError: function(jqXHR) {
|
||||||
// http://stackoverflow.com/a/24027443
|
// http://stackoverflow.com/a/24027443
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div class="flakes-navigation">
|
<div class="flakes-navigation">
|
||||||
{{#link-to 'index' class='logo'}}
|
{{#link-to 'index' class='logo'}}
|
||||||
<img src="img/logo.png" width="120">
|
{{site-name}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#if session.isAuthenticated}}
|
{{#if session.isAuthenticated}}
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<div class="flakes-content">
|
<div class="flakes-content">
|
||||||
<div class="flakes-mobile-top-bar">
|
<div class="flakes-mobile-top-bar">
|
||||||
<a href="" class="logo-wrap">
|
<a href="" class="logo-wrap">
|
||||||
<img src="img/logo.png" height="30px">
|
{{site-name}}
|
||||||
</a>
|
</a>
|
||||||
<a href="" class="navigation-expand-target">
|
<a href="" class="navigation-expand-target">
|
||||||
<img src="img/navigation-expand-target.png" height="26px">
|
<img src="img/navigation-expand-target.png" height="26px">
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import config from '../../../config/environment';
|
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
tagName: 'em',
|
tagName: 'em',
|
||||||
genus: config.genus.capitalize(),
|
genus: function() {
|
||||||
|
return this.get('globals.genus').capitalize();
|
||||||
|
}.property(),
|
||||||
});
|
});
|
||||||
|
|
1
app/pods/components/site-name/template.hbs
Normal file
1
app/pods/components/site-name/template.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{globals.genus}}.info
|
|
@ -1,8 +1,9 @@
|
||||||
import DS from 'ember-data';
|
import DS from 'ember-data';
|
||||||
import config from '../../config/environment';
|
|
||||||
|
|
||||||
export default DS.RESTAdapter.extend({
|
export default DS.RESTAdapter.extend({
|
||||||
namespace: 'api',
|
namespace: 'api',
|
||||||
host: config.apiURL,
|
host: function() {
|
||||||
|
return this.get('globals.apiURL');
|
||||||
|
}.property(),
|
||||||
coalesceFindRequests: true,
|
coalesceFindRequests: true,
|
||||||
});
|
});
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB |
23
tests/unit/initializers/global-variables-test.js
Normal file
23
tests/unit/initializers/global-variables-test.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import { initialize } from '../../../initializers/global-variables';
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
|
||||||
|
var container, application;
|
||||||
|
|
||||||
|
module('Unit | Initializer | global variables', {
|
||||||
|
beforeEach: function() {
|
||||||
|
Ember.run(function() {
|
||||||
|
application = Ember.Application.create();
|
||||||
|
container = application.__container__;
|
||||||
|
application.deferReadiness();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Replace this with your real tests.
|
||||||
|
test('it works', function(assert) {
|
||||||
|
initialize(container, application);
|
||||||
|
|
||||||
|
// you would normally confirm the results of the initializer here
|
||||||
|
assert.ok(true);
|
||||||
|
});
|
19
tests/unit/pods/components/site-name/component-test.js
Normal file
19
tests/unit/pods/components/site-name/component-test.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import { moduleForComponent, test } from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('site-name', 'Unit | Component | site name', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar'],
|
||||||
|
unit: true
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
Reference in a new issue