Giter VIP home page Giter VIP logo

rightui-core's People

Contributors

wpickeral avatar

Stargazers

 avatar  avatar

Watchers

 avatar

rightui-core's Issues

Update Documentation for the Tree View Package

  • Update the Tree View Story to include inline documentation. The updates should follow the same structure as Switch. stories.MDX.
  • Update the readme to remove redundancy in the documentation. Follow the same layout as the Switch readme
  • Publish the new NPM package after the updates are complete.

Refactor Switch

<div className='uis-switch'>
{label && !description ? (
<>
{inputCheckbox ?
<div onClick={toggleCheckedState}
className={`uis-switch__button ${checkedState
? 'uis-switch__button--checked'
: ''}`.trim()}>
<input
{...inputCheckboxProps}
aria-labelledby='uis-switch-label'
role='switch'
type='checkbox'
defaultChecked={checkedState}
/>
<span className={`uis-switch__toggle-indicator`}
aria-hidden='true'/>
</div>
:
<button
{...buttonProps}
className={`uis-switch__button ${checkedState
? 'uis-switch__button--checked'
: ''}`.trim()}
aria-labelledby='uis-switch-label'
role='switch'
type='button'
aria-checked={checkedState}
onClick={toggleCheckedState}>
<span className={`uis-switch__toggle-indicator`}
aria-hidden='true'/>
</button>
}
<span
id='uis-switch-label'
className='uis-switch__label'
onClick={toggleCheckedState}>
{label}
</span>
</>
) : null}
{description && label ?
<>
{inputCheckbox ?
<>
<div onClick={toggleCheckedState}
className={`uis-switch__button ${checkedState
? 'uis-switch__button--checked'
: ''}`.trim()}>
<input
{...inputCheckboxProps}
aria-labelledby='uis-switch-label'
aria-describedby='uis-switch-description'
role='switch'
type='checkbox'
defaultChecked={checkedState}
/>
<span className={`uis-switch__toggle-indicator`}
aria-hidden='true'/>
</div>
<div className='uis-switch-label-description-container'>
<span
id='uis-switch-label'
className='uis-switch__label'
onClick={toggleCheckedState}>
{label}
</span>
<span
id='uis-switch-description'
className='uis-switch__description'
onClick={toggleCheckedState}>
{description}
</span>
</div>
</>
:
<>
<button className={`uis-switch__button ${checkedState
? 'uis-switch__button--checked'
: ''}`.trim()}
aria-labelledby='uis-switch-label'
aria-describedby='uis-switch-description'
role='switch'
type='button'
aria-checked={checkedState}
onClick={toggleCheckedState}>
<span className={`uis-switch__toggle-indicator`}
aria-hidden='true'/>
</button>
<div className='uis-switch-label-description-container'>
<span
id='uis-switch-label'
className='uis-switch__label'
onClick={toggleCheckedState}>
{label}
</span>
<span
id='uis-switch-description'
className='uis-switch__description'
onClick={toggleCheckedState}>
{description}
</span>
</div>
</>
}
</>
: null}
</div>

The JSX is a little hard to read here. Let's refactor some of this out.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.