-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Group versions #250
Merged
Merged
feat: Group versions #250
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
'use strict' | ||
|
||
module.exports = (a) => a !== null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
'use strict' | ||
|
||
module.exports = (components) => versionTree(components) | ||
|
||
function versionTree (components) { | ||
return components.map((comp) => { | ||
return { | ||
...comp, | ||
versions: splitVersions(comp.versions), | ||
} | ||
}) | ||
} | ||
|
||
function splitVersions (versions) { | ||
const snapshot = versions.filter((v) => v.version.includes('SNAPSHOT')) | ||
const stable = versions.filter((v) => { | ||
const split = v.version.split('-') | ||
if (split.length === 1) return true | ||
return false | ||
}) | ||
const preview = versions.filter((v) => !snapshot.includes(v) && !stable.includes(v)) | ||
return { | ||
snapshot: snapshot.length > 0 ? snapshot : null, | ||
stable: stable.length > 0 ? stable : null, | ||
preview: preview.length > 0 ? preview : null, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<ul class="versions"> | ||
{{#each this}} | ||
<li class="version | ||
{{~#if (and (eq .. @root.page.component) (eq this @root.page.componentVersion))}} is-current{{/if~}} | ||
{{~#if (eq this ../latest)}} is-latest{{/if}}"> | ||
<a href="{{{relativize ./url}}}"> | ||
{{./displayVersion}} | ||
{{~#if (eq this ../latest)}}<span class="current">current</span>{{/if}} | ||
</a> | ||
</li> | ||
{{/each}} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* eslint-env mocha */ | ||
'use strict' | ||
|
||
const { expect } = require('./harness') | ||
const versionTree = require('../src/helpers/versionTree.js') | ||
|
||
describe('versionTree', () => { | ||
it('should return stable, preview and snapshot versions', () => { | ||
const result = versionTree([ | ||
{ | ||
versions: [ | ||
{ | ||
version: '3.0.1-SNAPSHOT', | ||
}, | ||
{ | ||
version: '3.0.0-SNAPSHOT', | ||
}, | ||
{ | ||
version: '2.0.0', | ||
}, | ||
{ | ||
version: '1.0.0', | ||
}, | ||
{ | ||
version: '1.0.0-RC1', | ||
}, | ||
{ | ||
version: '1.0.0-RC2', | ||
}, | ||
], | ||
}, | ||
]) | ||
|
||
expect(result[0].versions.stable.length).is.eql(2) | ||
expect(result[0].versions.stable[0].version).is.eql('2.0.0') | ||
expect(result[0].versions.stable[1].version).is.eql('1.0.0') | ||
|
||
expect(result[0].versions.preview.length).is.eql(2) | ||
expect(result[0].versions.preview[0].version).is.eql('1.0.0-RC1') | ||
expect(result[0].versions.preview[1].version).is.eql('1.0.0-RC2') | ||
|
||
expect(result[0].versions.snapshot.length).is.eql(2) | ||
expect(result[0].versions.snapshot[0].version).is.eql('3.0.1-SNAPSHOT') | ||
expect(result[0].versions.snapshot[1].version).is.eql('3.0.0-SNAPSHOT') | ||
}) | ||
|
||
it('should return an empty structure', () => { | ||
const result = versionTree([ | ||
{ | ||
versions: [ | ||
], | ||
}, | ||
]) | ||
expect(result[0].versions.stable).is.eql(null) | ||
expect(result[0].versions.preview).is.eql(null) | ||
expect(result[0].versions.snapshot).is.eql(null) | ||
}) | ||
}) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if we could have a test for this logic that checks a bunch of versions are split as expected. I've no idea what tests we've got for the UI.