-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature/steps #11
base: develop
Are you sure you want to change the base?
Feature/steps #11
Conversation
… rendering a series of steps.
…Content and Step Label.
}); | ||
|
||
export const StepContent = (props: StepContentProps) => { | ||
const StepContent = |
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.
Tę logikę lepiej wyrzuć do jakiejś funkcji, to łatwiej będzie to czytać. Najlepiej zrobić switch
let updatedChildren = React.Children.map(child.props.children as ReactElement[], (innerChild, index) => { | ||
if (index === 0) { | ||
return React.cloneElement(innerChild as ReactElement, { state: state, children: number }); | ||
} else { |
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.
Skoro w if powyżej znajduje się return, to else nie jest konieczne. Wystarczy, że zostawisz samą jego zawartość.
Komponent jest funkcjonalny, wymaga jeszcze drobnych poprawek (np. nie można zmienić rozmiaru pojedynczego stepa). Steps, które mają określony
state
, mają zaaplikowane defaultowe kolory. Jeślistate
nie jest określony, można im dowolnie zmieniać kolor tła i kolor fontu. Teraz ikony można zmieniać dowolnie, ale mogę dodać defaultowe ikony dlastate = success
istate = error
.