Skip to content
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

Slider unit tests updated to use test-extras #290

Merged
merged 1 commit into from
Sep 5, 2017

Conversation

smhigley
Copy link
Contributor

Type: feature

The following has been addressed in the PR:

  • There is a related issue
  • All code matches the style guide
  • Unit or Functional tests are included in the PR

Description:

Resolves #144
Also updates string casting to consistently use template literals

@smhigley smhigley requested a review from bitpshr August 31, 2017 04:35
@smhigley smhigley requested a review from agubler August 31, 2017 04:37
@codecov
Copy link

codecov bot commented Aug 31, 2017

Codecov Report

Merging #290 into master will not change coverage.
The diff coverage is 100%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #290   +/-   ##
=======================================
  Coverage   98.89%   98.89%           
=======================================
  Files          24       24           
  Lines        1538     1538           
  Branches      451      451           
=======================================
  Hits         1521     1521           
  Partials       17       17
Impacted Files Coverage Δ
src/slider/Slider.ts 98.3% <100%> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update efea1a9...d370795. Read the comment docs.

@@ -130,7 +130,7 @@ export default class Slider extends SliderBase<SliderProperties> {
const percentValue = (value - min) / (max - min) * 100;

// custom output node
const outputNode = output ? output(value) : value + '';
const outputNode = output ? output(value) : `${value}`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

both of those are ugly... String(value) would be so much better... 🙉

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Template literals for the win 🙈

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Personally, I prefer value + [] for all string casting 🙊

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

`${value}` + String('')

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typeof value === 'string' ? value : value.toString()

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Template literals are fastest now (we had a JSPerf page going around another PR at some point.)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, fine, though we shouldn't always overvalue performance for code clarity though.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, there is no speed advantage as long as we continue to emit to ES5, as the down emit would be:

"" + value

But even that is more performant than String(value)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Main reason I like like template literals is that is for consistency as we use them in various scenarios across all our packages. One of which is to effectively stringify a variable :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using literals to stringify variables, as long as we are consistent is sufficient and clear. It is a darn sight better than value + ''. Refs: dojo/meta#198

@@ -130,7 +130,7 @@ export default class Slider extends SliderBase<SliderProperties> {
const percentValue = (value - min) / (max - min) * 100;

// custom output node
const outputNode = output ? output(value) : value + '';
const outputNode = output ? output(value) : `${value}`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Template literals are fastest now (we had a JSPerf page going around another PR at some point.)

@smhigley smhigley merged commit 65df443 into dojo:master Sep 5, 2017
@dylans dylans added this to the 2017.09 milestone Sep 7, 2017
@smhigley smhigley deleted the slider-tests branch October 17, 2017 18:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants