Skip to content

Commit

Permalink
feat: support RSC
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraS committed May 15, 2024
1 parent 33de0a0 commit 0581115
Show file tree
Hide file tree
Showing 115 changed files with 315 additions and 103 deletions.
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react": "^18.3.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-dom": "^18.3.1",
"rimraf": "^5.0.5",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
Expand Down
2 changes: 2 additions & 0 deletions src/components/ActionTooltip/ActionTooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {useForkRef} from '../../hooks';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Alert/AlertAction.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {Button} from '../Button';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Alert/AlertActions.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {Flex} from '../layout';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Alert/AlertContextProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {AlertContext} from './AlertContext';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Alert/useAlertContext.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {AlertContext} from './AlertContext';
Expand Down
5 changes: 1 addition & 4 deletions src/components/Avatar/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ export const Avatar = React.forwardRef<HTMLDivElement, AvatarProps>((props, ref)
qa,
} = props;

const style = React.useMemo(
() => ({backgroundColor, color: borderColor, ...styleProp}),
[backgroundColor, borderColor, styleProp],
);
const style = {backgroundColor, color: borderColor, ...styleProp};

const renderContent = () => {
if ('imgUrl' in props && props.imgUrl) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Avatar/AvatarIcon/AvatarIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const avatarSizeToIconSize: Record<AvatarSize, number> = {
};

export const AvatarIcon = ({icon, color, size, className}: AvatarIconProps) => {
const style = React.useMemo(() => ({color}), [color]);
const style = {color};

return (
<div style={style} className={className}>
Expand Down
2 changes: 2 additions & 0 deletions src/components/Avatar/AvatarImage/AvatarImage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {AVATAR_SIZES} from '../constants';
Expand Down
4 changes: 2 additions & 2 deletions src/components/Avatar/AvatarText/AvatarText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import type {AvatarTextProps} from './types';
import {getAvatarDisplayText} from './utils';

export const AvatarText = ({text, color, className}: AvatarTextProps) => {
const style = React.useMemo(() => ({color}), [color]);
const displayText = React.useMemo(() => getAvatarDisplayText(text), [text]);
const style = {color};
const displayText = getAvatarDisplayText(text);

return (
<div style={style} className={className}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Avatar/AvatarText/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const getAvatarDisplayText = (text: string) => {
const words = text.split(' ');
const words = text.split(/\s+/);
const result =
words.length > 1 ? [words[0][0], words[1][0]].filter(Boolean).join('') : text.slice(0, 2);

Expand Down
2 changes: 2 additions & 0 deletions src/components/Breadcrumbs/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import _throttle from 'lodash/throttle';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Breadcrumbs/BreadcrumbsItem.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {Link} from '../Link';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Breadcrumbs/BreadcrumbsMore.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {DropdownMenu} from '../DropdownMenu';
Expand Down
34 changes: 26 additions & 8 deletions src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
'use client';

import React from 'react';

import type {DOMProps, QAProps} from '../types';
import {block} from '../utils/cn';
import {isIcon} from '../utils/common';
import {isIcon, isSvg} from '../utils/common';
import {eventBroker} from '../utils/event-broker';
import {isOfType} from '../utils/isOfType';

import {ButtonIcon} from './ButtonIcon';
import {ButtonIcon, getIconSide} from './ButtonIcon';

import './Button.scss';

Expand Down Expand Up @@ -193,16 +195,22 @@ ButtonWithHandlers.displayName = 'Button';
export const Button = Object.assign(ButtonWithHandlers, {Icon: ButtonIcon});

const isButtonIconComponent = isOfType(ButtonIcon);
const isSpan = isOfType<{className?: string}>('span');
const buttonIconClassRe = RegExp(`^${b('icon')}($|\\s+\\w)`);

// eslint-disable-next-line complexity
function prepareChildren(children: React.ReactNode) {
const items = React.Children.toArray(children);

if (items.length === 1) {
const onlyItem = items[0];
const isButtonIconElement =
isButtonIconComponent(onlyItem) ||
(isSpan(onlyItem) && buttonIconClassRe.test(onlyItem.props.className || ''));

if (isButtonIconComponent(onlyItem)) {
if (isButtonIconElement) {
return onlyItem;
} else if (isIcon(onlyItem)) {
} else if (isIcon(onlyItem) || isSvg(onlyItem)) {
return <Button.Icon key="icon">{onlyItem}</Button.Icon>;
} else {
return (
Expand All @@ -216,10 +224,12 @@ function prepareChildren(children: React.ReactNode) {
const content = [];

for (const item of items) {
const isIconElement = isIcon(item);
const isIconElement = isIcon(item) || isSvg(item);
const isButtonIconElement = isButtonIconComponent(item);
const isRenderedButtonIconElement =
isSpan(item) && buttonIconClassRe.test(item.props.className || '');

if (isIconElement || isButtonIconElement) {
if (isIconElement || isButtonIconElement || isRenderedButtonIconElement) {
if (!startIcon && content.length === 0) {
const key = 'icon-start';
const side = 'start';
Expand All @@ -229,10 +239,14 @@ function prepareChildren(children: React.ReactNode) {
{item}
</Button.Icon>
);
} else {
} else if (isButtonIconElement) {
startIcon = React.cloneElement(item, {
side,
});
} else {
startIcon = React.cloneElement(item, {
className: b('icon', {side: getIconSide(side)}, item.props.className),
});
}
} else if (!endIcon && content.length !== 0) {
const key = 'icon-end';
Expand All @@ -243,10 +257,14 @@ function prepareChildren(children: React.ReactNode) {
{item}
</Button.Icon>
);
} else {
} else if (isButtonIconElement) {
endIcon = React.cloneElement(item, {
side,
});
} else {
endIcon = React.cloneElement(item, {
className: b('icon', {side: getIconSide(side)}, item.props.className),
});
}
}
} else {
Expand Down
28 changes: 16 additions & 12 deletions src/components/Button/ButtonIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,12 @@ function warnAboutPhysicalValues() {
}

export const ButtonIcon = ({side, className, children}: Props) => {
let sideMod = side;

if (sideMod === 'left') {
warnAboutPhysicalValues();
sideMod = 'start';
}
if (sideMod === 'right') {
warnAboutPhysicalValues();
sideMod = 'end';
}

return (
<span
className={b(
'icon',
{
side: sideMod,
side: getIconSide(side),
},
className,
)}
Expand All @@ -44,3 +33,18 @@ export const ButtonIcon = ({side, className, children}: Props) => {
};

ButtonIcon.displayName = 'Button.Icon';

export function getIconSide(side?: 'left' | 'right' | 'start' | 'end') {
let sideMod = side;

if (sideMod === 'left') {
warnAboutPhysicalValues();
sideMod = 'start';
}
if (sideMod === 'right') {
warnAboutPhysicalValues();
sideMod = 'end';
}

return sideMod;
}
1 change: 1 addition & 0 deletions src/components/Button/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './Button';
export {ButtonIcon} from './ButtonIcon';
2 changes: 2 additions & 0 deletions src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {useActionHandlers} from '../../hooks';
Expand Down
2 changes: 2 additions & 0 deletions src/components/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {useCheckbox} from '../../hooks/private';
Expand Down
40 changes: 20 additions & 20 deletions src/components/Checkbox/__stories__/CheckboxShowcase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,50 +8,50 @@ export function CheckboxShowcase() {
return (
<Showcase>
<ShowcaseItem title="Size">
<p>
<div style={{marginBlock: '1em'}}>
<Checkbox size="m" checked={false} content="size m" />
<span style={{margin: '8px'}} />
<Checkbox size="m" checked={true} content="size m" />
<span style={{margin: '8px'}} />
<Checkbox size="m" indeterminate={true} content="size m" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox size="l" checked={false} content="size l" />
<span style={{margin: '8px'}} />
<Checkbox size="l" checked={true} content="size l" />
<span style={{margin: '8px'}} />
<Checkbox size="l" indeterminate={true} content="size l" />
</p>
</div>
</ShowcaseItem>
<ShowcaseItem title="Disabled">
<p>
<div style={{marginBlock: '1em'}}>
<Checkbox checked={false} disabled content="unchecked" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox indeterminate={true} disabled content="indeterminate" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox checked={true} disabled content="checked" />
</p>
</div>
</ShowcaseItem>
<ShowcaseItem title="Uncontrolled">
<p>
<div style={{marginBlock: '1em'}}>
<Checkbox defaultChecked={false} content="unchecked" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox defaultChecked={true} content="checked" />
</p>
</div>
</ShowcaseItem>
<ShowcaseItem title="Controlled">
<p>
<div style={{marginBlock: '1em'}}>
<Checkbox checked={false} content="unchecked" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox indeterminate={true} content="indeterminate" />
</p>
<p>
</div>
<div style={{marginBlock: '1em'}}>
<Checkbox checked={true} content="checked" />
</p>
</div>
</ShowcaseItem>
</Showcase>
);
Expand Down
2 changes: 2 additions & 0 deletions src/components/ClipboardButton/ClipboardButton.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import React from 'react';

import {ActionTooltip} from '../ActionTooltip';
Expand Down
Loading

0 comments on commit 0581115

Please sign in to comment.