Improve SwitchTableField

* Add support for passing in classes
* Add support for passing a disabled prop
* Pass description to TableField
* Right-align switch
* Add support for Extra color switch
This commit is contained in:
Justin Edmund 2023-06-17 23:45:19 -07:00
parent 6fb41a40ef
commit b6e1bfbcb9
2 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,9 @@
.TableField.SwitchTableField {
&.Extra .Switch[data-state='checked'] {
background: var(--extra-purple-secondary);
}
.Right {
justify-content: end;
}
}

View file

@ -1,13 +1,15 @@
import { useEffect, useState } from 'react'
import classNames from 'classnames'
import Switch from '~components/common/Switch'
import TableField from '~components/common/TableField'
import './index.scss'
interface Props {
interface Props extends React.HTMLAttributes<HTMLDivElement> {
name: string
label: string
description?: string
disabled?: boolean
value?: boolean
className?: string
tabIndex?: number
@ -32,10 +34,19 @@ const SwitchTableField = (props: Props) => {
setValue(value)
}
const classes = classNames(
{
SwitchTableField: true,
Disabled: props.disabled,
},
props.className
)
return (
<TableField
name={props.name}
className="SwitchField"
description={props.description}
className={classes}
imageAlt={props.imageAlt}
imageClass={props.imageClass}
imageSrc={props.imageSrc}
@ -44,6 +55,7 @@ const SwitchTableField = (props: Props) => {
<Switch
name={props.name}
checked={value}
disabled={props.disabled}
tabIndex={props.tabIndex}
onCheckedChange={onValueChange}
/>