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

feat(odyssey-react): Text component refactor in Banner #1160

Merged
merged 4 commits into from
Nov 10, 2021

Conversation

arnoldsandoval-okta
Copy link
Contributor

No description provided.

@arnoldsandoval-okta arnoldsandoval-okta requested a review from a team as a code owner November 5, 2021 17:50
Copy link

@ghost ghost left a comment

Choose a reason for hiding this comment

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

So this adds text styles using components but what about the existing global styles that are already on the page via storybook? I think it will make it difficult to ensure we've done our job refactoring here. Can we break apart those typography styles for storybook and apply them conditionally on a per component basis similar to what we had to do for reset styles?

@@ -15,6 +15,7 @@
margin-block-end: $spacing-xs-em;
margin-inline: 0;
color: $text-heading;
font-family: $body-font-family;
Copy link

Choose a reason for hiding this comment

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

?? whats this change about for Heading ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

When the global styles are removed the font-family definition for h tags go with it. Adding it here ensures that the correct font-family is used.

It seemed correct to use it here because this is a composable component like text.

Copy link

Choose a reason for hiding this comment

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

Got it thank you

@arnoldsandoval-okta
Copy link
Contributor Author

So this adds text styles using components but what about the existing global styles that are already on the page via storybook? I think it will make it difficult to ensure we've done our job refactoring here. Can we break apart those typography styles for storybook and apply them conditionally on a per-component basis similar to what we had to do for reset styles?

@jeffbelser-okta I removed them locally, as I did the work but your point is well taken. Would you be open to just removing them altogether? At the very least the style that pertains to the global typography, we are working quickly to refactor?

The global styles in question: https://codepen.io/arnoldsandoval-okta/pen/MWvGxjO?editors=0100

@ghost
Copy link

ghost commented Nov 9, 2021

@arnoldsandoval-okta thanks for the response! I like idea to just roll thru these without having to split apart fine grain global styles for each story just to confirm it's working as we expect. As long as we don't reach the end, remove the sheet and find that nothing works I think this is a good approach just requires a bit more developer effort to QA cc @andrewberg-okta

@@ -1,5 +1,3 @@
import "@okta/odyssey-react/dist/odyssey-deprecated-global.251d01.css";

Copy link

Choose a reason for hiding this comment

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

I'm not sure we can remove this wholesale because it will affect the other components in the sb - did you mean to remove this from your commit?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Apologies @jeffbelser-okta , I misunderstood our original interaction around this. I took it to mean that you were OK with us removing these styles instead of doing it locally on a one off basis.

I have no preference and have reverted the commit which removed these styles. Should be good to go!

Copy link
Contributor

@andrewberg-okta andrewberg-okta left a comment

Choose a reason for hiding this comment

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

All set on my side

@arnoldsandoval-okta arnoldsandoval-okta merged commit 8795f01 into develop Nov 10, 2021
arnoldsandoval-okta added a commit that referenced this pull request Nov 18, 2021
* chore(odyssey-react): add text component to tag (#1169)

* chore(odyssey-react): add text component to infobox (#1171)

* feat(odyssey-react): Text component refactor in Banner (#1160)

* feat(odyssey-react): refactor Banner to use Text component. Add default font family to Heading

* chore(odyssey-react): add semantic tag back in for banner

* chore(odyssey-storybook): remove deprecated global styles from storybook

* Revert "chore(odyssey-storybook): remove deprecated global styles from storybook"

This reverts commit 247e5f0.

* Add documentation template (#1166)

* docs: added documentation template for contributors

* chore(odyssey-react): fix Form type annotation and improve Toast.Provider story (#1175)

* chore(odyssey-react): fix type annotations for form

* chore(odyssey-react): use odyssey form component in Toast.Provider story

* chore(odyssey-react): use relative path for form import in toast story

* chore(odyssey-react): add text component to tooltip (#1170)

* chore(odyssey-react): add text component to tooltip

* chore(odyssey-react): remove text css for tooltip

* build: use conventional commits for changelog and lint

* test(odyssey-react): add coverage for controlled Select

* refactor(odyssey-react): use Text for List

* feat: support async select options

* feat: expose hidden choices reference

* fix: lint

* fix: remove added dep / prop

* fix: updates per review feedback