-
Notifications
You must be signed in to change notification settings - Fork 27
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
implement sum helper as strict alias for add helper #614
Merged
RobbieTheWagner
merged 1 commit into
RobbieTheWagner:main
from
Mifrill:issue#40/implement-sum-helper
Oct 19, 2021
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { helper } from '@ember/component/helper'; | ||
import { add } from './add'; | ||
|
||
/** | ||
* Alias for {{add}} helper | ||
* | ||
* ```hbs | ||
* {{sum a b}} | ||
* ``` | ||
* | ||
* @param {number[]} numbers A list of numbers to sum | ||
* @return {number} The sum of all the passed numbers | ||
*/ | ||
export function sum(numbers) { | ||
return add(numbers); | ||
} | ||
|
||
export default helper(sum); |
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 @@ | ||
export { default, sum } from 'ember-math-helpers/helpers/sum'; | ||
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,15 @@ | ||
import { sum } from 'dummy/helpers/sum'; | ||
import { add } from 'dummy/helpers/add'; | ||
import { module, test } from 'qunit'; | ||
|
||
module('Unit | Helper | sum', function () { | ||
test('works as alias to add', function (assert) { | ||
const input = [20, 10]; | ||
assert.strictEqual(sum(input), add(input)); | ||
}); | ||
|
||
test('works as alias to add for multiple arguments', function (assert) { | ||
const input = [1, 2, 3, 4, 5]; | ||
assert.strictEqual(sum(input), add(input)); | ||
}); | ||
}); |
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.
@Mifrill I think we could just export from add here and be good to go. Something like this maybe?
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.
@rwwagner90 well, in this way file
addon/helpers/sum.js
will came redundant, right? So, then we would need to customize documentation somehow that provided byember-cli-addon-docs
because comments in fileaddon/helpers/sum.js
have auto-converts into the component with documentation.However, the original proposal is to have the documented
sum
helper:maybe it's better to keep it consistent with the documentation addon with no this requested change, WDYT?
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.
@rwwagner90 could you give an advice on how to customize documentation for this particular case?