-
Notifications
You must be signed in to change notification settings - Fork 715
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
typescript(vx-axis): re-write package in TypeScript #569
Merged
Conversation
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
williaster
commented
Dec 29, 2019
williaster
commented
Dec 29, 2019
|
||
const horizontal = orientation !== ORIENT.left && orientation !== ORIENT.right; | ||
const isLeft = orientation === ORIENT.left; | ||
const isTop = orientation === ORIENT.top; | ||
const tickSign = isLeft || isTop ? -1 : 1; | ||
|
||
const position = (scale.bandwidth ? center : identity)(scale.copy()); |
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.
center
handles scales without a bandwidth
method
williaster
commented
Dec 29, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🚀 Enhancements
This PR builds off #488 which introduces Typescript build config, and re-writes the
@vx/axis
package in TypeScript, closing #564.The trickiest part of this (like
@vx/legend
) is supporting alld3
scale types. In #551 I tried using a union of actuald3-scale
types, but as noted there this is challenging because thedomain
/range
generics for different scales have different levels of strictness. So In this PR I tried writing aGenericScale<ScaleInput>
type, whereScaleOutput
must be coercible to a number (for plotting on an axis) and wrote tests to ensure it's compatible with each type of scale exported from@vx/scale
.Tests
@vx/scale
/axis
demos.d.ts
filescc @hshoff @schillerk @kristw @Rudeg