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 Theme #257

Merged
merged 2 commits into from
Jul 31, 2017
Merged

Slider Theme #257

merged 2 commits into from
Jul 31, 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:
screen shot 2017-07-19 at 1 34 22 am

Adds base theme for the slider widget. Modified the widget to include a boolean property to create a tooltip tied to the slider handle.

Also added body padding to examples.

@codecov
Copy link

codecov bot commented Jul 19, 2017

Codecov Report

Merging #257 into master will decrease coverage by 0.16%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #257      +/-   ##
==========================================
- Coverage   98.95%   98.78%   -0.17%     
==========================================
  Files          24       24              
  Lines        1429     1476      +47     
  Branches      413      434      +21     
==========================================
+ Hits         1414     1458      +44     
- Partials       15       18       +3
Impacted Files Coverage Δ
src/slider/Slider.ts 98.21% <100%> (+0.17%) ⬆️
src/radio/Radio.ts 97.72% <0%> (-2.28%) ⬇️
src/checkbox/Checkbox.ts 98.07% <0%> (-1.93%) ⬇️
src/slidepane/SlidePane.ts 98.79% <0%> (-1.21%) ⬇️
src/button/Button.ts 100% <0%> (ø) ⬆️
src/select/Select.ts 98.05% <0%> (+0.01%) ⬆️
src/titlepane/TitlePane.ts 97.95% <0%> (+0.13%) ⬆️
src/dialog/Dialog.ts 96.87% <0%> (+0.2%) ⬆️

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 1f443f4...03b2bf5. Read the comment docs.

classes: this.classes(css.output),
for: this._inputId + ''
classes: this.classes(css.output, outputIsTooltip ? css.outputTooltip : null),
for: this._inputId + '',
Copy link
Member

Choose a reason for hiding this comment

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

not a big fan of the + '' approach for casting to a string. Would it not be better to use a template string? ie.

for: `${this._inputId}`

Copy link
Member

Choose a reason for hiding this comment

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

@smhigley: Looks like @tomdye is right, template strings are fastest now (previously String concatenation was still fastest; something must've been improved.)

@dylans dylans added this to the 2017.08 milestone Jul 29, 2017
@bitpshr bitpshr merged commit 551a3fd into dojo:master Jul 31, 2017
// output styles
let outputStyles: { left?: string; top?: string } = {};
if (outputIsTooltip) {
outputStyles = vertical ? { top: ((max - value) / max * 100) + '%' } : { left: (value / max * 100) + '%' };
Copy link
Member

Choose a reason for hiding this comment

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

Can you use a template string for this? Might look cleaner than + '%'

@smhigley smhigley deleted the slider-theme branch October 17, 2017 18:52
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.

4 participants