1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/open-hand-choerodon-ui

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
CheckableTag.tsx 1.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
HughHzWu Отправлено 3 лет назад acf16fd
import React, { Component } from 'react';
import classNames from 'classnames';
import ConfigContext, { ConfigContextValue } from '../config-provider/ConfigContext';
export interface CheckableTagProps {
prefixCls?: string;
className?: string;
checked: boolean;
onChange?: (checked: boolean) => void;
}
export default class CheckableTag extends Component<CheckableTagProps> {
static get contextType(): typeof ConfigContext {
return ConfigContext;
}
static displayName = 'CheckableTag';
context: ConfigContextValue;
handleClick = () => {
const { checked, onChange } = this.props;
if (onChange) {
onChange(!checked);
}
};
render() {
const { prefixCls: customizePrefixCls, className, checked, ...restProps } = this.props;
const { getPrefixCls } = this.context;
const prefixCls = getPrefixCls('tag', customizePrefixCls);
const cls = classNames(
prefixCls,
{
[`${prefixCls}-checkable`]: true,
[`${prefixCls}-checkable-checked`]: checked,
},
className,
);
delete (restProps as any).onChange; // TypeScript cannot check delete now.
return <div {...(restProps as any)} className={cls} onClick={this.handleClick} />;
}
}

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/open-hand-choerodon-ui.git
git@gitlife.ru:oschina-mirror/open-hand-choerodon-ui.git
oschina-mirror
open-hand-choerodon-ui
open-hand-choerodon-ui
master