-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.js
108 lines (90 loc) · 2.43 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
101
102
103
104
105
106
107
108
'use strict';
const path = require('path');
const Funnel = require('broccoli-funnel');
const mergeTrees = require('broccoli-merge-trees');
const fastbootTransform = require('fastboot-transform');
const resolve = require('resolve');
module.exports = {
name: require('./package').name,
included() {
this._super.included.apply(this, arguments);
this._ensureFindHost();
const vendorPath = `vendor/${this.name}`;
const host = this._findHost();
host.import({
development: path.join(vendorPath, 'photoswipe.js'),
production: path.join(vendorPath, 'photoswipe.min.js'),
});
host.import({
development: path.join(vendorPath, 'photoswipe-ui-default.js'),
production: path.join(vendorPath, 'photoswipe-ui-default.min.js'),
});
},
treeForVendor() {
const photoswipePath = path.join(
this.resolvePackagePath('photoswipe'),
'dist'
);
const photoswipeFiles = fastbootTransform(
new Funnel(photoswipePath, {
files: [
'photoswipe.js',
'photoswipe.min.js',
'photoswipe-ui-default.js',
'photoswipe-ui-default.min.js',
],
destDir: this.name,
})
);
return photoswipeFiles;
},
treeForStyles(tree) {
const styleTrees = [];
const host = this._findHost();
if (host.project.findAddonByName('ember-cli-sass')) {
styleTrees.push(
new Funnel(
path.join(this.resolvePackagePath('photoswipe'), 'src', 'css'),
{
destDir: this.name,
}
)
);
}
if (tree) {
styleTrees.push(tree);
}
return mergeTrees(styleTrees, { overwrite: true });
},
treeForPublic() {
const defaultSkinPath = path.join(
this.resolvePackagePath('photoswipe'),
'dist',
'default-skin'
);
const publicTree = new Funnel(defaultSkinPath, {
destDir: '/assets/images',
exclude: ['default-skin.css'],
});
return publicTree;
},
resolvePackagePath(packageName) {
return path.dirname(
resolve.sync(`${packageName}/package.json`, {
basedir: this.app.project.root,
})
);
},
_ensureFindHost() {
if (!this._findHost) {
this._findHost = function findHostShim() {
let current = this;
let app;
do {
app = current.app || app;
} while (current.parent.parent && (current = current.parent));
return app;
};
}
},
};