-
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup and squash commits after rebasing to main
- Loading branch information
1 parent
bc56f8f
commit 0484f21
Showing
7 changed files
with
195 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { | ||
ActionIcon as ActionIconMantine, | ||
createPolymorphicComponent, | ||
} from '@mantine/core'; | ||
import type {ActionIconProps as ActionIconPropsMantine} from '@mantine/core/lib/components'; | ||
import Icon, {IconSize} from './icon'; | ||
import type {IconName} from 'jsapp/fonts/k-icons'; | ||
import {forwardRef} from 'react'; | ||
|
||
export interface ActionIconProps extends Omit<ActionIconPropsMantine, 'size'> { | ||
iconName: IconName; | ||
size: 'sm' | 'md' | 'lg'; | ||
} | ||
|
||
const ActionIcon = forwardRef<HTMLButtonElement, ActionIconProps>( | ||
({iconName, ...props}, ref) => { | ||
// Currently, our icon sizes only use a single letter instead of | ||
// Mantine's 'sm', 'md', etc. So here we grab the first letter. | ||
const iconSize = props.size[0] as IconSize; | ||
return ( | ||
<ActionIconMantine {...props} ref={ref}> | ||
<Icon name={iconName} size={iconSize} /> | ||
</ActionIconMantine> | ||
); | ||
} | ||
); | ||
|
||
export default createPolymorphicComponent<'button', ActionIconProps>( | ||
ActionIcon | ||
); |
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,116 @@ | ||
import React from 'react'; | ||
import type {Meta, StoryObj} from '@storybook/react'; | ||
import {IconNames} from 'jsapp/fonts/k-icons'; | ||
import ActionIcon, {type ActionIconProps} from './ActionIcon'; | ||
|
||
const actionIconVariants: Array<ActionIconProps['variant']> = [ | ||
'filled', | ||
'light', | ||
|
||
//// Custom: | ||
'danger', | ||
'danger-secondary', | ||
'transparent', | ||
]; | ||
|
||
const actionIconSizes: Array<ActionIconProps['size']> = [ | ||
'sm', | ||
'md', | ||
'lg', | ||
]; | ||
|
||
export default { | ||
title: 'common/Action Icon', | ||
component: ActionIcon, | ||
argTypes: { | ||
variant: { | ||
description: 'Variant of action icon', | ||
options: actionIconVariants, | ||
control: 'select', | ||
}, | ||
size: { | ||
description: 'Size of action icon', | ||
options: actionIconSizes, | ||
control: 'radio', | ||
}, | ||
iconName: { | ||
description: 'Icon', | ||
options: Object.keys(IconNames), | ||
control: {type: 'select'}, | ||
}, | ||
disabled: {control: 'boolean'}, | ||
loading: {control: 'boolean'}, | ||
}, | ||
} as Meta<typeof ActionIcon>; | ||
|
||
type Story = StoryObj<typeof ActionIcon>; | ||
|
||
export const Filled: Story = { | ||
args: { | ||
variant: 'filled', | ||
size: 'md', | ||
iconName: 'edit', | ||
}, | ||
}; | ||
|
||
export const Light: Story = { | ||
args: { | ||
variant: 'light', | ||
size: 'md', | ||
iconName: 'edit', | ||
}, | ||
}; | ||
|
||
export const Transparent: Story = { | ||
args: { | ||
variant: 'transparent', | ||
size: 'md', | ||
iconName: 'more', | ||
}, | ||
}; | ||
|
||
export const Danger: Story = { | ||
args: { | ||
variant: 'danger', | ||
size: 'md', | ||
iconName: 'trash', | ||
}, | ||
}; | ||
|
||
export const DangerSecondary: Story = { | ||
args: { | ||
variant: 'danger-secondary', | ||
size: 'lg', | ||
iconName: 'trash', | ||
}, | ||
}; | ||
|
||
export const AllIconStyles = () => ( | ||
<div | ||
style={{ | ||
display: 'grid', | ||
gridTemplateColumns: 'repeat(3, auto)', | ||
gridAutoFlow: 'row', | ||
gridGap: '30px 15px', | ||
justifyItems: 'start', | ||
padding: '10px', | ||
}} | ||
> | ||
{actionIconVariants.map((variant) => | ||
actionIconSizes.map((size) => { | ||
const actionIconProps: ActionIconProps = { | ||
variant, | ||
size: size, | ||
iconName: 'more', | ||
}; | ||
return ( | ||
<> | ||
<ActionIcon {...actionIconProps} /> | ||
<ActionIcon {...actionIconProps} loading /> | ||
<ActionIcon {...actionIconProps} disabled /> | ||
</> | ||
); | ||
}) | ||
)} | ||
</div> | ||
); |
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,7 @@ | ||
.root { | ||
&[data-disabled] { | ||
color: var(--ai-color); | ||
background: var(--ai-bg); | ||
opacity: 0.5; | ||
} | ||
} |
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,38 @@ | ||
import {rem, ActionIcon} from '@mantine/core'; | ||
import classes from './ActionIcon.module.css'; | ||
|
||
export const ActionIconThemeKobo = ActionIcon.extend({ | ||
classNames: classes, | ||
vars: (theme, props) => { | ||
return { | ||
root: { | ||
'--ai-size-sm': rem(28), | ||
'--ai-size-md': rem(32), | ||
'--ai-size-lg': rem(38), | ||
|
||
...(props.variant === 'filled' && { | ||
'--ai-hover': theme.colors.blue[5], | ||
}), | ||
...(props.variant === 'light' && { | ||
'--ai-color': theme.colors.blue[4], | ||
'--ai-bg': theme.colors.blue[9], | ||
'--ai-hover': theme.colors.blue[8], | ||
}), | ||
...(props.variant === 'transparent' && { | ||
'--ai-color': theme.colors.blue[4], | ||
'--ai-hover-color': theme.colors.blue[5], | ||
}), | ||
...(props.variant === 'danger' && { | ||
'--ai-color': 'var(--mantine-color-white)', | ||
'--ai-bg': theme.colors.red[6], | ||
'--ai-hover': theme.colors.red[5], | ||
}), | ||
...(props.variant === 'danger-secondary' && { | ||
'--ai-color': theme.colors.red[5], | ||
'--ai-bg': theme.colors.red[9], | ||
'--ai-hover': theme.colors.red[8], | ||
}), | ||
}, | ||
}; | ||
}, | ||
}); |
File renamed without changes.
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