-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathproject-version.js
219 lines (195 loc) · 6.92 KB
/
project-version.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* eslint-disable ember/no-computed-properties-in-native-classes */
import { action, computed, set } from '@ember/object';
import { inject as service } from '@ember/service';
import { readOnly, alias } from '@ember/object/computed';
import Controller from '@ember/controller';
import { A } from '@ember/array';
import values from 'lodash.values';
import groupBy from 'lodash.groupby';
import semverCompare from 'semver-compare';
import getCompactVersion from '../utils/get-compact-version';
export default class ProjectVersionController extends Controller {
@service
filterData;
@service
metaStore;
@service
project;
@alias('filterData.sideNav.showPrivate')
showPrivateClasses;
@computed('model')
get classesIDs() {
return this.getRelationshipIDs('classes');
}
@computed('model')
get publicClassesIDs() {
return this.getRelationshipIDs('public-classes');
}
@computed('model')
get namespaceIDs() {
return this.getRelationshipIDs('namespaces');
}
@computed('model')
get publicNamespaceIDs() {
return this.getRelationshipIDs('public-namespaces');
}
@computed('model.id')
get moduleIDs() {
return this.getModuleRelationships(this.model.id, 'modules');
}
@computed('model.id')
get publicModuleIDs() {
return this.getModuleRelationships(this.model.id, 'public-modules');
}
getModuleRelationships(versionId, moduleType) {
let relations = this.getRelations(moduleType);
// filter overviews out. If other projects add their overview we should filter those too.
return relations
.map((id) => id.substring(versionId.length + 1))
.filter((id) => id !== 'ember-data-overview');
}
getRelations(relationship) {
return this.model.hasMany(relationship).ids().sort();
}
getRelationshipIDs(relationship) {
// eslint-disable-next-line
const splitPoint = 2 + this.get('model.project.id').split('-').length - 1;
const classes = this.model.hasMany(relationship);
const sorted = A(classes.ids()).sort();
//ids come in as ember-2.16.0-@ember/object/promise-proxy-mixin
//so we take the string after the 2nd '-'
return A(sorted)
.toArray()
.map((id) => id.split('-').slice(splitPoint).join('-'));
}
@computed('showPrivateClasses', 'classesIDs', 'publicClassesIDs')
get shownClassesIDs() {
return this.showPrivateClasses ? this.classesIDs : this.publicClassesIDs;
}
@computed('showPrivateClasses', 'moduleIDs', 'publicModuleIDs')
get shownModuleIDs() {
return this.showPrivateClasses ? this.moduleIDs : this.publicModuleIDs;
}
@computed('showPrivateClasses', 'namespaceIDs', 'publicNamespaceIDs')
get shownNamespaceIDs() {
return this.showPrivateClasses
? this.namespaceIDs
: this.publicNamespaceIDs;
}
@computed('metaStore.availableProjectVersions', 'model.project.id')
get projectVersions() {
const projectVersions =
this.metaStore.availableProjectVersions[
this.model.belongsTo('project').id()
];
let versions = projectVersions.sort((a, b) => semverCompare(b, a));
versions = versions.map((version) => {
const compactVersion = getCompactVersion(version);
return { id: version, compactVersion };
});
let groupedVersions = groupBy(
versions,
(version) => version.compactVersion
);
return values(groupedVersions).map((groupedVersion) => groupedVersion[0]);
}
@alias('project.urlVersion')
urlVersion;
@computed('projectVersions.[]', 'model.version')
get selectedProjectVersion() {
return this.projectVersions.filter((pV) => pV.id === this.model.version)[0];
}
@readOnly('model.project.id')
activeProject;
@action
togglePrivateClasses() {
set(this, 'showPrivateClasses', !this.showPrivateClasses);
}
@action
updateProject(project, ver /*, component */) {
let projectVersionID = ver.compactVersion;
let endingRoute;
switch (this.router.currentRouteName) {
case 'project-version.classes.class': {
let className = this._getEncodedNameForCurrentClass();
endingRoute = `classes/${className}`;
break;
}
case 'project-version.classes.class.index': {
let className = this._getEncodedNameForCurrentClass();
endingRoute = `classes/${className}`;
break;
}
case 'project-version.modules.module.index': {
let moduleName = encodeURIComponent(
this.paramsFor('project-version.modules.module').module
);
endingRoute = `modules/${moduleName}`;
break;
}
case 'project-version.namespaces.namespace.index': {
let namespaceName = this.paramsFor(
'project-version.namespaces.namespace'
).namespace;
endingRoute = `namespaces/${namespaceName}`;
break;
}
case 'project-version.classes.class.methods.index': {
let className = this._getEncodedNameForCurrentClass();
endingRoute = `classes/${className}/methods`;
break;
}
case 'project-version.classes.class.events.index': {
let className = this._getEncodedNameForCurrentClass();
endingRoute = `classes/${className}/events`;
break;
}
case 'project-version.classes.class.properties.index': {
let className = this._getEncodedNameForCurrentClass();
endingRoute = `classes/${className}/properties`;
break;
}
case 'project-version.classes.class.methods.method': {
let className = this._getEncodedNameForCurrentClass();
let methodName = this.paramsFor(
'project-version.classes.class.methods.method'
).method;
endingRoute = `classes/${className}/methods/${methodName}?anchor=${methodName}`;
break;
}
case 'project-version.classes.class.events.event': {
let className = this._getEncodedNameForCurrentClass();
let eventName = this.paramsFor(
'project-version.classes.class.events.event'
).event;
endingRoute = `classes/${className}/events/${eventName}?anchor=${eventName}`;
break;
}
case 'project-version.classes.class.properties.property': {
let className = this._getEncodedNameForCurrentClass();
let propertyName = this.paramsFor(
'project-version.classes.class.properties.property'
).property;
endingRoute = `classes/${className}/properties/${propertyName}?anchor=${propertyName}`;
break;
}
default:
endingRoute = '';
break;
}
// if the user is navigating to/from api versions >= 2.16, take them
// to the home page instead of trying to translate the url
let shouldConvertPackages = this.shouldConvertPackages(
ver,
this.project.version
);
let isEmberProject = project === 'ember';
if (!isEmberProject || !shouldConvertPackages) {
this.router.transitionTo(
`/${project}/${projectVersionID}/${endingRoute}`
);
} else {
this.router.transitionTo(`/${project}/${projectVersionID}`);
}
}
}