forked from ember-animation/liquid-fire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
100 lines (85 loc) · 3.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'use strict';
let path = require('path');
let mergeTrees = require('broccoli-merge-trees');
let Funnel = require('broccoli-funnel');
let map = require('broccoli-stew').map;
let replace = require('broccoli-string-replace');
let VersionChecker = require('ember-cli-version-checker');
module.exports = {
name: require('./package').name,
init() {
if (this._super.init) {
this._super.init.apply(this, arguments);
}
// Shim this.import for Engines support
if (!this.import) {
// Shim from https://github.com/ember-cli/ember-cli/blob/5d64cfbf1276cf1e3eb88761df4546c891b5efa6/lib/models/addon.js#L387
this._findHost = function findHostShim() {
let current = this;
let app;
// Keep iterating upward until we don't have a grandparent.
// Has to do this grandparent check because at some point we hit the project.
do {
app = current.app || app;
} while (current.parent.parent && (current = current.parent));
return app;
};
// Shim from https://github.com/ember-cli/ember-cli/blob/5d64cfbf1276cf1e3eb88761df4546c891b5efa6/lib/models/addon.js#L443
this.import = function importShim(asset, options) {
let app = this._findHost();
app.import(asset, options);
};
}
},
treeForAddon(tree) {
let checker = new VersionChecker(this.project);
let dep = checker.for('ember-source');
if (dep.gte('4.0.0-alpha.0', { includePrerelease: true })) {
tree = replace(tree, {
files: ['templates/components/liquid-outlet.hbs'],
pattern: {
match: /{{outlet this.outletName}}/g,
replacement: '{{outlet}}',
},
});
}
return this._super.treeForAddon.call(this, tree);
},
treeForVendor(tree) {
let velocityPath = path.dirname(require.resolve('velocity-animate'));
let velocityTree = new Funnel(this.treeGenerator(velocityPath), {
srcDir: '/',
destDir: 'velocity',
});
velocityTree = map(
velocityTree,
'velocity/velocity.js',
function (content) {
return "if (typeof FastBoot === 'undefined') { " + content + ' }';
}
);
let matchMediaPath = path.dirname(require.resolve('match-media'));
let matchMediaTree = new Funnel(this.treeGenerator(matchMediaPath), {
srcDir: '/',
destDir: 'match-media',
});
matchMediaTree = map(
matchMediaTree,
'match-media/matchMedia.js',
function (content) {
return "if (typeof FastBoot === 'undefined') { " + content + ' }';
}
);
return mergeTrees([tree, velocityTree, matchMediaTree]);
},
included() {
this._super.included.apply(this, arguments);
// We cannot use ember-cli to import velocity as an AMD module here, because we always need the shim in FastBoot
// to not break any module imports (as velocity/velocity.js has a FastBoot guard, so FastBoot does not see any
// module inside
this.import('vendor/velocity/velocity.js');
this.import('vendor/shims/velocity.js');
this.import('vendor/match-media/matchMedia.js');
this.import('vendor/liquid-fire.css');
},
};