1
0
Fork 0
freesewing/sites/shared/components/workbench/pattern/movable/transform-buttons.mjs

122 lines
3.6 KiB
JavaScript
Raw Normal View History

2023-06-04 23:28:43 -05:00
import { useTranslation } from 'next-i18next'
import { ClearIcon } from 'shared/components/icons.mjs'
const Triangle = ({ transform = 'translate(0,0)', fill = 'currentColor' }) => (
<path
strokeLinecap="round"
strokeLinejoin="round"
transform={transform}
style={{ fill }}
transform-origin="12 12"
d="M1 12m9 3m-6 4h2c3 0 3 -3 3-3L9 3c-0-1.732 -2.25-2.6125 -3.325 -.77L2 16c-.77 1.333.192 3 1.732 3z"
/>
)
const Line = () => (
<path strokeLinecap="round" strokeLinejoin="round" transform="translate(12, 2)" d="M0 0L0 20" />
)
const FlipIconInner = ({ x = 0, y = 0, rotate = 0, ...style }) => (
<g transform={`translate(${x},${y}) rotate(${rotate})`} transform-origin="12 12" style={style}>
<Triangle fill="none" transform="translate(0, 2.5)" />
<path strokeLinecap="round" strokeLinejoin="round" transform="translate(12, 2)" d="M0 0L0 20" />
<Line />
<Triangle transform="scale(-1,1) translate(0,2.5)" />
</g>
)
const RotateIconInner = ({ flipX = false }) => (
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3 10h10a8 8 0 018 8v2M3 10l6 6m-6-6l6-6"
transform={flipX ? 'scale(-1,1)' : ''}
transform-origin="12 12"
/>
)
const rectSize = 24
const Button = ({ onClickCb, transform, Icon, children }) => {
const _onClick = (event) => {
event.stopPropagation()
onClickCb(event)
}
return (
<g className="svg-layout-button group" transform={transform}>
<rect width={rectSize} height={rectSize} className="button" />
<Icon />
<text className="invisible group-hover:visible text-xl">{children}</text>
<rect width={rectSize} height={rectSize} onClick={_onClick} className="fill-transparent" />
</g>
)
}
2023-06-06 11:17:14 -05:00
export const ShowButtonsToggle = ({ ui, update }) => {
2023-06-04 23:28:43 -05:00
const { t } = useTranslation('workbench')
2023-06-06 11:17:14 -05:00
const hideButtons = (evt) => {
update.ui('hideMovableButtons', !evt.target.checked)
}
2023-06-04 23:28:43 -05:00
return (
2023-06-06 11:17:14 -05:00
<label className="label cursor-pointer">
<span className="label-text text-lg mr-2">{t('showMovableButtons')}</span>
2023-06-04 23:28:43 -05:00
<input
type="checkbox"
className="toggle toggle-primary"
2023-06-06 11:17:14 -05:00
checked={!ui.hideMovableButtons}
onChange={hideButtons}
2023-06-04 23:28:43 -05:00
/>
</label>
)
}
/** buttons for manipulating the part */
export const Buttons = ({ transform, flip, rotate, resetPart, rotate90 }) => {
const { t } = useTranslation('workbench')
return (
<g transform={transform}>
{rotate ? (
<circle cx="0" cy="0" r="50" className="stroke-2xl muted" />
) : (
<path d="M -50, 0 l 100,0 M 0,-50 l 0,100" className="stroke-2xl muted" />
)}
<Button
onClickCb={resetPart}
transform={`translate(${rectSize / -2}, ${rectSize / -2})`}
Icon={() => <ClearIcon wrapped={false} />}
>
{t('toolbar.resetPart')}
</Button>
<Button
onClickCb={() => rotate90(-1)}
transform={`translate(${rectSize * -2.7}, ${rectSize / -2})`}
Icon={RotateIconInner}
>
{t('toolbar.rotateCCW')}
</Button>
<Button
onClickCb={() => flip('y')}
transform={`translate(${rectSize * 0.6}, ${rectSize / -2})`}
Icon={() => <FlipIconInner rotate="270" />}
>
{t('toolbar.flipY')}
</Button>
<Button
onClickCb={() => flip('x')}
transform={`translate(${rectSize * -1.6}, ${rectSize / -2})`}
Icon={FlipIconInner}
>
{t('toolbar.flipX')}
</Button>
<Button
onClickCb={() => rotate90()}
transform={`translate(${rectSize * 1.7}, ${rectSize / -2})`}
Icon={() => <RotateIconInner flipX={true} />}
>
{t('toolbar.rotateCW')}
</Button>
</g>
)
}