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

OSCHINA-MIRROR/open-hand-choerodon-ui

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
createBodyRow.tsx 1.7 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
Vink Dong Отправлено 7 лет назад f03bd7d
import * as React from 'react';
import classnames from 'classnames';
import omit from 'omit.js';
import { Store } from './createStore';
interface BodyRowProps {
store: Store;
className?: string;
rowKey: string;
prefixCls: string;
}
interface BodyRowState {
selected: boolean;
}
export interface BodyRowClass extends React.ComponentClass {}
export default function createTableRow(Component = 'tr') {
class BodyRow extends React.Component<BodyRowProps, BodyRowState> {
private store: Store;
private unsubscribe: () => void;
constructor(props: BodyRowProps) {
super(props);
this.store = props.store;
const { selectedRowKeys } = this.store.getState();
this.state = {
selected: selectedRowKeys.indexOf(props.rowKey) >= 0,
};
}
componentDidMount() {
this.subscribe();
}
componentWillUnmount() {
if (this.unsubscribe) {
this.unsubscribe();
}
}
subscribe() {
const { store, rowKey } = this.props;
this.unsubscribe = store.subscribe(() => {
const { selectedRowKeys } = this.store.getState();
const selected = selectedRowKeys.indexOf(rowKey) >= 0;
if (selected !== this.state.selected) {
this.setState({ selected });
}
});
}
render() {
const rowProps = omit(this.props, ['prefixCls', 'rowKey', 'store']);
const className = classnames(
this.props.className,
{
[`${this.props.prefixCls}-row-selected`]: this.state.selected,
},
);
return (
<Component {...rowProps} className={className}>
{this.props.children}
</Component>
);
}
}
return BodyRow as BodyRowClass;
}

Опубликовать ( 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
release-0.2.2