-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
248 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
@use '../../animations'; | ||
@use '../../helpers'; | ||
@use '../../mixins'; | ||
|
||
@mixin Switch() { | ||
@if not mixins.includes('Switch') { | ||
@include _Switch(); | ||
} | ||
} | ||
|
||
@mixin _Switch() { | ||
.ods-switch-label { | ||
align-items: center; | ||
color: helpers.color('content-main'); | ||
cursor: pointer; | ||
display: inline-grid; | ||
gap: helpers.space(1); | ||
grid-template-columns: 1fr auto; | ||
position: relative; | ||
|
||
input { | ||
opacity: 0; | ||
position: absolute; | ||
} | ||
|
||
// Hover | ||
input + .ods-switch-indicator:hover { | ||
border-color: #636670; | ||
} | ||
|
||
input + .ods-switch-indicator:hover::before { | ||
background-color: #636670; | ||
} | ||
|
||
// Checked | ||
input:checked + .ods-switch-indicator { | ||
background-color: helpers.color('background-input-selected'); | ||
border-color: helpers.color('border-input-selected'); | ||
} | ||
|
||
input:checked + .ods-switch-indicator::before { | ||
background-color: helpers.color('background-input'); | ||
transform: translateY(-50%) translateX(helpers.space(2)); | ||
} | ||
|
||
input:checked + .ods-switch-indicator::after { | ||
opacity: 1; | ||
transform: translateY(-50%) translateX(helpers.space(1)) rotateZ(45deg) | ||
scale(0.5); | ||
} | ||
|
||
input:checked + .ods-switch-indicator:hover { | ||
background-color: #5666f9; | ||
border-color: #5666f9; | ||
} | ||
|
||
input:checked + .ods-switch-indicator:hover::after { | ||
border-color: #5666f9; | ||
} | ||
|
||
// Focus | ||
input:focus + .ods-switch-indicator { | ||
box-shadow: // | ||
0 0 0 helpers.space(0.25) helpers.color('border-focus-inner'), | ||
0 0 0 helpers.space(0.5) helpers.color('border-action-focus'); | ||
} | ||
|
||
// Disabled | ||
input:disabled + .ods-switch-indicator { | ||
cursor: not-allowed; | ||
} | ||
|
||
input:disabled + .ods-switch-indicator, | ||
input:disabled + .ods-switch-indicator:hover, | ||
input:disabled + .ods-switch-indicator::after, | ||
input:disabled + .ods-switch-indicator:hover::after { | ||
border-color: helpers.color('border-disabled'); | ||
} | ||
|
||
input:disabled:checked + .ods-switch-indicator, | ||
input:disabled + .ods-switch-indicator::before { | ||
background-color: helpers.color('background-disabled'); | ||
} | ||
|
||
input:disabled:checked + .ods-switch-indicator::before { | ||
background-color: #fff; | ||
} | ||
} | ||
|
||
.ods-switch-indicator { | ||
$border-width: helpers.space(0.25); | ||
|
||
background-color: helpers.color('background-input'); | ||
border: $border-width solid helpers.color('border-input'); | ||
border-radius: helpers.border-radius('full'); | ||
box-sizing: border-box; | ||
height: helpers.space(3); | ||
margin: helpers.space(0.5); | ||
position: relative; | ||
transition: var(--ods-transition-duration) ease; | ||
transition-property: background-color, border-color; | ||
width: helpers.space(5); | ||
|
||
// slider | ||
&::before { | ||
background-color: #828893; | ||
border-radius: helpers.border-radius('full'); | ||
content: ''; | ||
display: inline-block; | ||
height: 18px; | ||
left: 1px; | ||
position: absolute; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
transition: background-color linear 0.2s, | ||
transform calc(var(--ods-transition-duration) * 2) ease; | ||
width: 18px; | ||
} | ||
|
||
// check icon | ||
&::after { | ||
border: solid helpers.color('border-input-selected'); | ||
border-width: 0 helpers.space(0.5) helpers.space(0.5) 0; | ||
content: ''; | ||
display: inline-block; | ||
left: helpers.space(1.5); | ||
opacity: 0; | ||
padding: helpers.space(1) helpers.space(0.5); | ||
position: relative; | ||
top: calc(50% - 1px); | ||
transform: translateY(-50%) translateX(-100%) rotateZ(-45deg) scale(0); | ||
transition: calc(var(--ods-transition-duration) * 2) ease; | ||
transition-property: opacity, transform; | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { type ChangeEvent } from 'react'; | ||
|
||
export interface SwitchProps { | ||
id?: string; | ||
disabled?: boolean; | ||
onChange: (event: ChangeEvent<HTMLInputElement>) => void; | ||
className?: string; | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { color, type SwitchProps } from '@onfido/castor'; | ||
import { Field, FieldLabel, Fieldset, Switch } from '@onfido/castor-react'; | ||
import React, { useState, type ChangeEvent } from 'react'; | ||
import { Meta, Story } from '../../../../../docs'; | ||
|
||
export default { | ||
title: 'React/Switch', | ||
component: Switch, | ||
argTypes: { | ||
onChange: { | ||
description: 'Called when checked value changed', | ||
}, | ||
}, | ||
args: { | ||
disabled: false, | ||
onChange: (event) => { | ||
console.log(event?.target.checked); | ||
}, | ||
}, | ||
parameters: {}, | ||
} as Meta<SwitchProps>; | ||
|
||
export const Playground: Story<SwitchProps> = {}; | ||
|
||
export const Examples: Story<SwitchProps> = { | ||
render: () => { | ||
const [switchState, setSwitchState] = useState(true); | ||
const handleOnChange = (event: ChangeEvent<HTMLInputElement>) => { | ||
setSwitchState(event.target.checked); | ||
}; | ||
|
||
return ( | ||
<Fieldset> | ||
<Field> | ||
<Switch | ||
onChange={(event) => { | ||
console.log(event.target.checked); | ||
}} | ||
> | ||
<FieldLabel style={{ width: 250 }}>Label</FieldLabel> | ||
</Switch> | ||
</Field> | ||
<Field> | ||
<Switch | ||
onChange={(event) => { | ||
console.log(event.target.checked); | ||
}} | ||
disabled | ||
> | ||
<FieldLabel | ||
style={{ width: 250, color: color('content-disabled') }} | ||
> | ||
Label with disabled switch | ||
</FieldLabel> | ||
</Switch> | ||
</Field> | ||
<Field> | ||
<Switch checked={switchState} onChange={handleOnChange}> | ||
<FieldLabel style={{ width: 250 }}> | ||
Label with checked switch | ||
</FieldLabel> | ||
</Switch> | ||
</Field> | ||
</Fieldset> | ||
); | ||
}, | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { c, classy, m, SwitchProps as BaseProps } from '@onfido/castor'; | ||
import React, { type FC } from 'react'; | ||
|
||
export const Switch: FC<SwitchProps> = ({ | ||
id = `switch-${++idCount}`, | ||
disabled, | ||
className, | ||
children, | ||
onChange, | ||
...props | ||
}) => ( | ||
<label | ||
htmlFor={id} | ||
className={classy(className, c('switch-label'), m({ disabled }))} | ||
> | ||
{children && <span>{children}</span>} | ||
<input | ||
{...props} | ||
type="checkbox" | ||
id={id} | ||
disabled={disabled} | ||
onChange={onChange} | ||
/> | ||
<span className={classy(c('switch-indicator'), m({ disabled }))}></span> | ||
</label> | ||
); | ||
|
||
export type SwitchProps = BaseProps & Omit<SwitchElementProps, 'children'>; | ||
|
||
type SwitchElementProps = JSX.IntrinsicElements['input']; | ||
|
||
let idCount = 0; |