Skip to content

Commit

Permalink
fix: add export of TabFieldVerticalProps (rework exports)
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-efremoff committed Sep 12, 2024
1 parent 3412eb8 commit 08148a4
Show file tree
Hide file tree
Showing 52 changed files with 140 additions and 153 deletions.
4 changes: 1 addition & 3 deletions src/dialog/CheckBoxControl/CheckBoxControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface CheckBoxControlProps
onChange: (value: CheckBoxControlProps['value']) => void;
}

function CheckBoxControl({value, onChange, ...props}: CheckBoxControlProps) {
export function CheckBoxControl({value, onChange, ...props}: CheckBoxControlProps) {
const onCheckBoxChange = useCallback(() => onChange(!value), [onChange, value]);
const {children, ...rest} = props || {};

Expand All @@ -28,5 +28,3 @@ CheckBoxControl.getDefaultValue = function () {
CheckBoxControl.isEmpty = function (value: CheckBoxControlProps['value']) {
return typeof value !== 'boolean' || !value;
};

export default CheckBoxControl;
1 change: 1 addition & 0 deletions src/dialog/CheckBoxControl/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './CheckBoxControl';
1 change: 1 addition & 0 deletions src/dialog/CollapsibleSection/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './CollapsibleSection';
4 changes: 1 addition & 3 deletions src/dialog/Condition/Condition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ interface Props<T = any> {
children: React.ReactNode;
}

function Condition<T>({when, isActive, children}: Props<T>) {
export function Condition<T>({when, isActive, children}: Props<T>) {
return (
<Field name={when} subscription={{value: true}}>
{({input: {value}}) => (isActive(value) ? children : null)}
</Field>
);
}

export default Condition;
1 change: 1 addition & 0 deletions src/dialog/Condition/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './Condition';
4 changes: 1 addition & 3 deletions src/dialog/CustomBlock/CustomBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ export interface CustomBlockProps {
children: React.ReactNode;
}

class CustomBlock extends React.Component<CustomBlockProps> {
export class CustomBlock extends React.Component<CustomBlockProps> {
static renderLabel = () => null;
static getDefaultValue = () => undefined;

render() {
return this.props.children || null;
}
}

export default CustomBlock;
1 change: 1 addition & 0 deletions src/dialog/CustomBlock/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './CustomBlock';
67 changes: 35 additions & 32 deletions src/dialog/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, {Component, Fragment} from 'react';
import _reduce from 'lodash/reduce';
import _find from 'lodash/find';
import _findIndex from 'lodash/findIndex';
import _isEqual from 'lodash/isEqual';
import _get from 'lodash/get';
import _isEmpty from 'lodash/isEmpty';
import _map from 'lodash/map';
import reduce_ from 'lodash/reduce';
import find_ from 'lodash/find';
import findIndex_ from 'lodash/findIndex';
import isEqual_ from 'lodash/isEqual';
import get_ from 'lodash/get';
import isEmpty_ from 'lodash/isEmpty';
import map_ from 'lodash/map';
import {
Dialog as CommonDialog,
DialogFooterProps,
Expand All @@ -21,26 +21,29 @@ import createDecorator, {Calculation, Updates} from 'final-form-calculate';
import {OnChange} from 'react-final-form-listeners';

import {InfoIcon, TooltipIcon, WarningIcon} from '../Icon/Icon';
import TextControl, {TextControlProps} from '../TextControl/TextControl';
import TextAreaControl, {TextAreaControlProps} from '../TextAreaControl/TextAreaControl';
import {SelectControl, SelectControlProps} from '../SelectControl/SelectControl';
import TumblerControl, {TumblerControlProps} from '../TumblerControl/TumblerControl';
import PlainText, {PlainTextProps} from '../PlainText/PlainText';
import CheckBoxControl, {CheckBoxControlProps} from '../CheckBoxControl/CheckBoxControl';
import Condition from '../Condition/Condition';
import CustomBlock, {CustomBlockProps} from '../CustomBlock/CustomBlock';
import RadioButtonControl, {
RadioButtonControlProps,
} from '../RadioButtonControl/RadioButtonControl';
import EditableList, {EditableListProps} from '../EditableList/EditableList';
import EditableManyLists, {EditableManyListsProps} from '../EditableManyLists/EditableManyLists';
import MultiTextControl, {MultiTextControlProps} from '../MultiTextControl/MultiTextControl';
import TabField, {TabFieldProps, TabItem} from '../TabField/TabField';
import {TextControl, TextControlProps} from '../TextControl';
import {TextAreaControl, TextAreaControlProps} from '../TextAreaControl';
import {SelectControl, SelectControlProps} from '../SelectControl';
import {TumblerControl, TumblerControlProps} from '../TumblerControl';
import {PlainText, PlainTextProps} from '../PlainText';
import {CheckBoxControl, CheckBoxControlProps} from '../CheckBoxControl';
import {Condition} from '../Condition';
import {CustomBlock, CustomBlockProps} from '../CustomBlock';
import {RadioButtonControl, RadioButtonControlProps} from '../RadioButtonControl';
import {EditableList, EditableListProps} from '../EditableList';
import {EditableManyLists, EditableManyListsProps} from '../EditableManyLists';
import {MultiTextControl, MultiTextControlProps} from '../MultiTextControl';
import {
TabField,
TabFieldProps,
TabFieldVertical,
TabFieldVerticalProps,
TabItem,
} from '../TabField';
import {checkTabId, getTabId, applyFunctions} from './utils';
import {useStableEventHandler} from '../../helpers/useStableEventHendler';

import './Dialog.scss';
import TabFieldVertical, {TabFieldVerticalProps} from '../TabField/TabFieldVertical';

import i18n from './i18n';
import {
Expand Down Expand Up @@ -385,7 +388,7 @@ class Dialog<
static getDefaultValues<T extends TabbedField<F>, F>(
fields: FieldsType<T, F> = [],
): Record<string, any> {
return _reduce(
return reduce_(
fields,
(acc, item) => {
const field = item as ArrayElement<typeof fields>;
Expand Down Expand Up @@ -432,7 +435,7 @@ class Dialog<
}
}

return _isEmpty(res) ? null : res;
return isEmpty_(res) ? null : res;
}

static hasTabs<TabT extends TabbedField<FieldT>, FieldT extends ControlField>(
Expand Down Expand Up @@ -584,7 +587,7 @@ class Dialog<
fields: FieldsType<TabT, FieldT>,
dst: Array<{name: Calculation['field']; subscribers: Calculation['updates']}> = [],
) {
return _reduce(
return reduce_(
fields,
(acc, field) => {
const item = field as ArrayElement<typeof fields>;
Expand Down Expand Up @@ -906,7 +909,7 @@ class Dialog<
if (!visibilityCondition) {
return true;
}
const value = _get(values, visibilityCondition.when);
const value = get_(values, visibilityCondition.when);
return visibilityCondition.isActive(value);
}

Expand All @@ -929,19 +932,19 @@ class Dialog<
active?: boolean,
options: {userOptions?: any} = {},
) => {
const tabSpec = _find(fields, (fieldSpec) => fieldSpec.name === fieldName);
const tabSpec = find_(fields, (fieldSpec) => fieldSpec.name === fieldName);
const {onCreateTab} = tabSpec || {};
if (!tabSpec?.multiple) {
return;
}

const {userOptions} = options;

const index = _findIndex(values[fieldName], this.isActiveTab);
const index = findIndex_(values[fieldName], this.isActiveTab);
const {id: _id, ...srcTabData} = values[fieldName][index === -1 ? 0 : index];
const newTabData = onCreateTab ? onCreateTab(srcTabData, {userOptions}) : srcTabData;
if (newTabData.id === undefined) {
const ids = new Set(_map(values[fieldName], ({id}) => String(id)));
const ids = new Set(map_(values[fieldName], ({id}) => String(id)));
for (let i = 0; i <= ids.size; ++i) {
const id = String(i + 1);
if (!ids.has(id)) {
Expand All @@ -960,7 +963,7 @@ class Dialog<
};

const removeTab = (tabItemToDelete: TabItem) => {
const tabIndexToDelete = _findIndex(tabItems, (item) => item.id === tabItemToDelete.id);
const tabIndexToDelete = findIndex_(tabItems, (item) => item.id === tabItemToDelete.id);
if (tabIndexToDelete < 0) {
return;
}
Expand Down Expand Up @@ -1206,7 +1209,7 @@ class Dialog<

return (
<Form
initialValuesEqual={_isEqual}
initialValuesEqual={isEqual_}
keepDirtyOnReinitialize={true}
{...formExtras}
onSubmit={this.onApply}
Expand Down
1 change: 1 addition & 0 deletions src/dialog/Dialog/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './Dialog';
4 changes: 1 addition & 3 deletions src/dialog/EditableList/EditableList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ interface State {
showAll: boolean;
}

class EditableList<T = any> extends React.Component<EditableListProps<T>, State> {
export class EditableList<T = any> extends React.Component<EditableListProps<T>, State> {
static defaultProps = {
value: [],
};
Expand Down Expand Up @@ -140,5 +140,3 @@ class EditableList<T = any> extends React.Component<EditableListProps<T>, State>
);
}
}

export default EditableList;
1 change: 1 addition & 0 deletions src/dialog/EditableList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './EditableList';
6 changes: 2 additions & 4 deletions src/dialog/EditableManyLists/EditableManyLists.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import {dfCN} from '../../helpers/cn';

import EditableList, {EditableListItemType, EditableListProps} from '../EditableList/EditableList';
import {EditableList, EditableListItemType, EditableListProps} from '../EditableList';
import './EditableManyLists.scss';

const block = dfCN('editable-many-lists');
Expand All @@ -24,7 +24,7 @@ export interface EditableManyListsItemType<T> {
data: Array<EditableListItemType<T>>;
}

class EditableManyLists<T> extends React.Component<EditableManyListsProps<T>> {
export class EditableManyLists<T> extends React.Component<EditableManyListsProps<T>> {
static getDefaultValue() {
return [];
}
Expand Down Expand Up @@ -63,5 +63,3 @@ class EditableManyLists<T> extends React.Component<EditableManyListsProps<T>> {
);
}
}

export default EditableManyLists;
1 change: 1 addition & 0 deletions src/dialog/EditableManyLists/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './EditableManyLists';
2 changes: 1 addition & 1 deletion src/dialog/FocusBlurContainer/FocusBlurContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {applyFunctions} from '../Dialog/utils';

function noop() {}

interface FocusBlurContainerProps {
export interface FocusBlurContainerProps {
children?: React.ReactNode;
className?: string;
onFocus?: () => void;
Expand Down
1 change: 1 addition & 0 deletions src/dialog/FocusBlurContainer/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './FocusBlurContainer';
1 change: 1 addition & 0 deletions src/dialog/Icon/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './Icon';
12 changes: 6 additions & 6 deletions src/dialog/MultiTextControl/LabelsGroup/LabelsGroup.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {Component} from 'react';
import _map from 'lodash/map';
import map_ from 'lodash/map';
import {Button, Label} from '@gravity-ui/uikit';
import {dfCN} from '../../../helpers/cn';
import withCollapsible from '../../../hoc/withCollapsible';
Expand All @@ -9,7 +9,7 @@ import {ArrayElement} from '../../types';

const block = dfCN('labels-group');

type Props = {
export type LabelGroupProps = {
items: Array<{name: string; isDefault?: boolean}>;
visibleCount: number;
disabled?: boolean;
Expand All @@ -21,9 +21,9 @@ type Props = {
renderToggler?: () => React.ReactNode;
};

type ItemType = ArrayElement<Props['items']>;
type ItemType = ArrayElement<LabelGroupProps['items']>;

class LabelsGroup extends Component<Props> {
class LabelsGroupComponent extends Component<LabelGroupProps> {
handleLabelClick = (label: ItemType) => {
const {onClick} = this.props;
if (typeof onClick === 'function') {
Expand Down Expand Up @@ -68,7 +68,7 @@ class LabelsGroup extends Component<Props> {

return (
<div className={block()}>
{_map(items, (label) => this.renderLabel(label))}
{map_(items, (label) => this.renderLabel(label))}
{renderToggler?.()}
{onRemoveAll && items.length > 0 && (
<Button
Expand All @@ -85,4 +85,4 @@ class LabelsGroup extends Component<Props> {
}
}

export default withCollapsible(LabelsGroup);
export const LabelsGroup = withCollapsible(LabelsGroupComponent);
14 changes: 6 additions & 8 deletions src/dialog/MultiTextControl/MultiTextControl.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, {Component} from 'react';
import _find from 'lodash/find';
import _findIndex from 'lodash/findIndex';
import find_ from 'lodash/find';
import findIndex_ from 'lodash/findIndex';
import {TextInput, TextInputProps} from '@gravity-ui/uikit';

import {dfCN} from '../../helpers/cn';
import LabelsGroup from './LabelsGroup/LabelsGroup';
import {LabelsGroup} from './LabelsGroup/LabelsGroup';
import {FocusBlurContainer} from '../FocusBlurContainer/FocusBlurContainer';

import type {ArrayElement} from '../types';
Expand Down Expand Up @@ -32,7 +32,7 @@ interface State {
currentLabel: string;
}

class MultiTextControl extends Component<MultiTextControlProps, State> {
export class MultiTextControl extends Component<MultiTextControlProps, State> {
static ENTER = 13;

static hasErrorRenderer = true;
Expand All @@ -46,7 +46,7 @@ class MultiTextControl extends Component<MultiTextControlProps, State> {
}

static remove(theItem: ItemType, items: Array<ItemType>) {
const index = _findIndex(items, (anItem) => theItem.name === anItem.name);
const index = findIndex_(items, (anItem) => theItem.name === anItem.name);
if (index > -1) {
const copy = [...items];
copy.splice(index, 1);
Expand All @@ -68,7 +68,7 @@ class MultiTextControl extends Component<MultiTextControlProps, State> {
if (currentLabel?.length > 0) {
const {onChange, value: labels} = this.props;

if (!_find(labels, (label) => label.name === currentLabel)) {
if (!find_(labels, (label) => label.name === currentLabel)) {
onChange(labels.concat({name: currentLabel}));
}
this.setState({currentLabel: ''});
Expand Down Expand Up @@ -118,5 +118,3 @@ class MultiTextControl extends Component<MultiTextControlProps, State> {
);
}
}

export default MultiTextControl;
1 change: 1 addition & 0 deletions src/dialog/MultiTextControl/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './MultiTextControl';
4 changes: 1 addition & 3 deletions src/dialog/PlainText/PlainText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type PlainTextProps = {
placeholder?: React.ReactNode;
};

class PlainText extends React.Component<PlainTextProps> {
export class PlainText extends React.Component<PlainTextProps> {
static getDefaultValue() {
return '';
}
Expand All @@ -31,5 +31,3 @@ class PlainText extends React.Component<PlainTextProps> {
);
}
}

export default PlainText;
1 change: 1 addition & 0 deletions src/dialog/PlainText/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './PlainText';
8 changes: 3 additions & 5 deletions src/dialog/RadioButtonControl/RadioButtonControl.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {useCallback} from 'react';
import _map from 'lodash/map';
import map_ from 'lodash/map';
import {RadioButton, RadioButtonProps} from '@gravity-ui/uikit';

RadioButtonControl.defaultProps = {
Expand All @@ -20,7 +20,7 @@ export interface RadioButtonControlProps extends Omit<RadioButtonProps, 'onChang
options?: Array<{value: string; label: React.ReactNode}>;
}

function RadioButtonControl({value, onChange, ...props}: RadioButtonControlProps) {
export function RadioButtonControl({value, onChange, ...props}: RadioButtonControlProps) {
const onRadioChange = useCallback(
(evt: React.ChangeEvent<HTMLInputElement>) => onChange(evt.target.value),
[onChange],
Expand All @@ -29,13 +29,11 @@ function RadioButtonControl({value, onChange, ...props}: RadioButtonControlProps

return (
<RadioButton {...rest} size={size} value={value} onChange={onRadioChange}>
{_map(options, ({value, label}) => (
{map_(options, ({value, label}) => (
<RadioButton.Option value={value} key={value}>
{label}
</RadioButton.Option>
))}
</RadioButton>
);
}

export default RadioButtonControl;
1 change: 1 addition & 0 deletions src/dialog/RadioButtonControl/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './RadioButtonControl';
1 change: 1 addition & 0 deletions src/dialog/SelectControl/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './SelectControl';
Loading

0 comments on commit 08148a4

Please sign in to comment.