Skip to content

Commit c5d03c5

Browse files
authored
Merge pull request #933 from MehulKChaudhari/fix/ember-source-broken-links
2 parents f50f4fe + b0bea28 commit c5d03c5

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

app/helpers/github-link.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@ import { helper } from '@ember/component/helper';
22
import githubMap, { mainDir } from '../utils/github-map';
33

44
export function githubLink([project, version, file, line], { isEdit = false }) {
5+
const isEmberProject = project === 'ember';
6+
const majorVersion = parseInt(version?.split('.')[0].replace('v', ''), 10);
7+
8+
// Check if the project is 'ember' and adjust the tag only if the major version is >= 6 to match the Git tags
9+
const adjustedVersion =
10+
isEmberProject && majorVersion >= 6 ? `${version}-ember-source` : version;
11+
512
if (isEdit) {
613
return `https://github.com/${githubMap[project]}/edit/release${mainDir(
714
project,
8-
version
15+
adjustedVersion
916
)}${file}#L${line}`;
1017
}
1118

@@ -22,9 +29,11 @@ export function githubLink([project, version, file, line], { isEdit = false }) {
2229
// 'https://github.com/emberjs/data/tree/v4.10.0/packages/packages/store/addon/-private/record-arrays/identifier-array.ts#L118'
2330
const fixedFile = file?.replace('../packages/', '../');
2431

25-
return `https://github.com/${githubMap[project]}/tree/v${version}${mainDir(
32+
return `https://github.com/${
33+
githubMap[project]
34+
}/tree/v${adjustedVersion}${mainDir(
2635
project,
27-
version
36+
adjustedVersion
2837
)}${fixedFile}#L${line}`;
2938
}
3039

tests/unit/helpers/github-link-test.js

+11
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ module('Unit | Helper | github link', function () {
1313
);
1414
});
1515

16+
test('should append "ember-source" to the version for git tags v6 and above', function (assert) {
17+
let result = githubLink(
18+
['ember', '6.0.0', 'ember-glimmer/lib/component.js', '35'],
19+
{}
20+
);
21+
assert.equal(
22+
result,
23+
'https://github.com/emberjs/ember.js/tree/v6.0.0-ember-source/ember-glimmer/lib/component.js#L35'
24+
);
25+
});
26+
1627
test('should render a github link for ember-data from file info', function (assert) {
1728
let result = githubLink(
1829
['ember-data', '2.10.0', 'addon/-private/adapters/errors.js', '10'],

0 commit comments

Comments
 (0)