2021-06-03 12:06:39 +00:00
|
|
|
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
|
|
|
|
import * as RadioGroup from '@radix-ui/react-radio-group'
|
|
|
|
import * as Panel from './panel'
|
2021-05-29 10:12:28 +00:00
|
|
|
import styled from 'styles'
|
2021-05-17 10:01:11 +00:00
|
|
|
|
2021-05-29 10:12:28 +00:00
|
|
|
export const IconButton = styled('button', {
|
|
|
|
height: '32px',
|
|
|
|
width: '32px',
|
|
|
|
backgroundColor: '$panel',
|
|
|
|
borderRadius: '4px',
|
|
|
|
padding: '0',
|
|
|
|
margin: '0',
|
2021-06-02 11:50:34 +00:00
|
|
|
display: 'grid',
|
2021-05-29 10:12:28 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
outline: 'none',
|
|
|
|
border: 'none',
|
|
|
|
pointerEvents: 'all',
|
|
|
|
cursor: 'pointer',
|
2021-05-17 10:01:11 +00:00
|
|
|
|
2021-06-02 11:50:34 +00:00
|
|
|
'& > *': {
|
|
|
|
gridRow: 1,
|
|
|
|
gridColumn: 1,
|
|
|
|
},
|
|
|
|
|
2021-05-29 10:12:28 +00:00
|
|
|
'&:disabled': {
|
|
|
|
opacity: '0.5',
|
2021-05-17 10:01:11 +00:00
|
|
|
},
|
|
|
|
|
2021-06-03 21:46:52 +00:00
|
|
|
'& > span': {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
|
|
|
|
2021-05-29 10:12:28 +00:00
|
|
|
variants: {
|
2021-06-03 16:13:23 +00:00
|
|
|
bp: {
|
|
|
|
mobile: {},
|
|
|
|
small: {
|
|
|
|
'&:hover:not(:disabled)': {
|
|
|
|
backgroundColor: '$hover',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-29 10:12:28 +00:00
|
|
|
size: {
|
2021-06-02 11:50:34 +00:00
|
|
|
small: {
|
2021-06-02 21:17:38 +00:00
|
|
|
'& svg': {
|
2021-06-02 11:50:34 +00:00
|
|
|
height: '16px',
|
|
|
|
width: '16px',
|
|
|
|
},
|
|
|
|
},
|
2021-05-29 10:12:28 +00:00
|
|
|
medium: {
|
|
|
|
height: 44,
|
|
|
|
width: 44,
|
2021-06-02 21:17:38 +00:00
|
|
|
'& svg': {
|
2021-06-02 16:11:42 +00:00
|
|
|
height: '20px',
|
|
|
|
width: '20px',
|
2021-05-29 10:12:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
large: {
|
|
|
|
height: 44,
|
|
|
|
width: 44,
|
2021-06-02 21:17:38 +00:00
|
|
|
'& svg': {
|
2021-06-02 11:50:34 +00:00
|
|
|
height: '24px',
|
|
|
|
width: '24px',
|
2021-05-29 10:12:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
isActive: {
|
|
|
|
true: {
|
|
|
|
color: '$selected',
|
|
|
|
},
|
|
|
|
},
|
2021-05-17 10:01:11 +00:00
|
|
|
},
|
|
|
|
})
|
2021-06-03 12:06:39 +00:00
|
|
|
|
|
|
|
export const RowButton = styled('button', {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'flex',
|
|
|
|
width: '100%',
|
|
|
|
background: 'none',
|
|
|
|
height: '32px',
|
|
|
|
border: 'none',
|
|
|
|
cursor: 'pointer',
|
|
|
|
outline: 'none',
|
|
|
|
alignItems: 'center',
|
2021-06-03 12:20:34 +00:00
|
|
|
fontFamily: '$ui',
|
|
|
|
fontSize: '$1',
|
2021-06-03 12:06:39 +00:00
|
|
|
justifyContent: 'space-between',
|
|
|
|
padding: '4px 6px 4px 12px',
|
2021-06-03 13:10:54 +00:00
|
|
|
borderRadius: 4,
|
2021-06-03 12:06:39 +00:00
|
|
|
|
|
|
|
'& label': {
|
|
|
|
fontWeight: '$1',
|
|
|
|
margin: 0,
|
|
|
|
padding: 0,
|
|
|
|
},
|
|
|
|
|
|
|
|
'& svg': {
|
|
|
|
position: 'relative',
|
|
|
|
stroke: 'rgba(0,0,0,.2)',
|
|
|
|
strokeWidth: 1,
|
|
|
|
zIndex: 1,
|
|
|
|
},
|
|
|
|
|
2021-06-10 09:49:16 +00:00
|
|
|
'& :disabled': {
|
|
|
|
opacity: 0.5,
|
|
|
|
},
|
|
|
|
|
2021-06-03 12:06:39 +00:00
|
|
|
variants: {
|
2021-06-03 16:13:23 +00:00
|
|
|
bp: {
|
|
|
|
mobile: {},
|
|
|
|
small: {
|
|
|
|
'&:hover:not(:disabled)': {
|
|
|
|
backgroundColor: '$hover',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-03 12:06:39 +00:00
|
|
|
size: {
|
|
|
|
icon: {
|
|
|
|
padding: '4px ',
|
|
|
|
width: 'auto',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
export const StylePanelRoot = styled(Panel.Root, {
|
|
|
|
minWidth: 1,
|
|
|
|
width: 184,
|
|
|
|
maxWidth: 184,
|
|
|
|
overflow: 'hidden',
|
|
|
|
position: 'relative',
|
|
|
|
border: '1px solid $panel',
|
|
|
|
boxShadow: '0px 2px 4px rgba(0,0,0,.12)',
|
|
|
|
|
|
|
|
variants: {
|
|
|
|
isOpen: {
|
|
|
|
true: {},
|
|
|
|
false: {
|
|
|
|
padding: 2,
|
|
|
|
height: 38,
|
|
|
|
width: 38,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
export const Group = styled(RadioGroup.Root, {
|
|
|
|
display: 'flex',
|
|
|
|
})
|
|
|
|
|
|
|
|
export const Item = styled('button', {
|
|
|
|
height: '32px',
|
|
|
|
width: '32px',
|
|
|
|
backgroundColor: '$panel',
|
|
|
|
borderRadius: '4px',
|
|
|
|
padding: '0',
|
|
|
|
margin: '0',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
outline: 'none',
|
|
|
|
border: 'none',
|
|
|
|
pointerEvents: 'all',
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
|
|
|
'&:hover:not(:disabled)': {
|
|
|
|
backgroundColor: '$hover',
|
|
|
|
'& svg': {
|
|
|
|
stroke: '$text',
|
|
|
|
fill: '$text',
|
|
|
|
strokeWidth: '0',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&:disabled': {
|
|
|
|
opacity: '0.5',
|
|
|
|
},
|
|
|
|
|
|
|
|
variants: {
|
|
|
|
isActive: {
|
|
|
|
true: {
|
|
|
|
'& svg': {
|
|
|
|
fill: '$text',
|
|
|
|
stroke: '$text',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false: {
|
|
|
|
'& svg': {
|
|
|
|
fill: '$inactive',
|
|
|
|
stroke: '$inactive',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
export const IconWrapper = styled('div', {
|
|
|
|
height: '100%',
|
|
|
|
borderRadius: '4px',
|
|
|
|
marginRight: '1px',
|
|
|
|
display: 'grid',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
outline: 'none',
|
|
|
|
border: 'none',
|
|
|
|
pointerEvents: 'all',
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
|
|
|
'& svg': {
|
|
|
|
height: 22,
|
|
|
|
width: 22,
|
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
'& > *': {
|
|
|
|
gridRow: 1,
|
|
|
|
gridColumn: 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
variants: {
|
|
|
|
size: {
|
|
|
|
small: {
|
|
|
|
'& svg': {
|
|
|
|
height: '16px',
|
|
|
|
width: '16px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
medium: {
|
|
|
|
'& svg': {
|
|
|
|
height: '22px',
|
|
|
|
width: '22px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
export const DropdownContent = styled(DropdownMenu.Content, {
|
|
|
|
display: 'grid',
|
|
|
|
padding: 4,
|
|
|
|
gridTemplateColumns: 'repeat(4, 1fr)',
|
|
|
|
backgroundColor: '$panel',
|
|
|
|
borderRadius: 4,
|
|
|
|
border: '1px solid $panel',
|
|
|
|
boxShadow: '0px 2px 4px rgba(0,0,0,.28)',
|
|
|
|
|
|
|
|
variants: {
|
|
|
|
direction: {
|
|
|
|
vertical: {
|
|
|
|
gridTemplateColumns: '1fr',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2021-06-21 21:35:28 +00:00
|
|
|
export function DashSolidIcon(): JSX.Element {
|
2021-06-03 12:06:39 +00:00
|
|
|
return (
|
|
|
|
<svg width="24" height="24" stroke="currentColor">
|
|
|
|
<circle
|
|
|
|
cx={12}
|
|
|
|
cy={12}
|
|
|
|
r={8}
|
|
|
|
fill="none"
|
|
|
|
strokeWidth={2}
|
|
|
|
strokeLinecap="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-21 21:35:28 +00:00
|
|
|
export function DashDashedIcon(): JSX.Element {
|
2021-06-03 12:06:39 +00:00
|
|
|
return (
|
|
|
|
<svg width="24" height="24" stroke="currentColor">
|
|
|
|
<circle
|
|
|
|
cx={12}
|
|
|
|
cy={12}
|
|
|
|
r={8}
|
|
|
|
fill="none"
|
|
|
|
strokeWidth={2.5}
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeDasharray={50.26548 * 0.1}
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const dottedDasharray = `${50.26548 * 0.025} ${50.26548 * 0.1}`
|
|
|
|
|
2021-06-21 21:35:28 +00:00
|
|
|
export function DashDottedIcon(): JSX.Element {
|
2021-06-03 12:06:39 +00:00
|
|
|
return (
|
|
|
|
<svg width="24" height="24" stroke="currentColor">
|
|
|
|
<circle
|
|
|
|
cx={12}
|
|
|
|
cy={12}
|
|
|
|
r={8}
|
|
|
|
fill="none"
|
|
|
|
strokeWidth={2.5}
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeDasharray={dottedDasharray}
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|