forked from ant-design/ant-design-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListItem.web.tsx
136 lines (120 loc) · 3.16 KB
/
ListItem.web.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import * as React from 'react';
import classNames from 'classnames';
export interface ListItemProps {
/** web only */
prefixCls?: string;
style?: React.CSSProperties;
/** web only */
className?: string;
thumb: React.ReactNode;
extra?: React.ReactNode;
arrow?: 'horizontal'|'down'|'up'|'empty'|'';
align?: string;
onClick?: Function;
error?: boolean;
multipleLine?: boolean;
children?: any;
}
export interface ListItemState {
hover: boolean;
}
export class Brief extends React.Component<any, any> {
render() {
return (
<div className="am-list-brief">{this.props.children}</div>
);
}
}
export default class ListItem extends React.Component<ListItemProps, ListItemState> {
static Brief = Brief;
static defaultProps = {
prefixCls: 'am-list',
thumb: '',
arrow: '',
children: '',
extra: '',
error: false,
multipleLine: false,
align: 'middle',
};
constructor(props) {
super(props);
this.state = {
hover: false,
};
}
onClick = (e) => {
if (this.props.onClick) {
this.props.onClick(e);
}
};
onTouchStart = () => {
if (this.props.onClick) {
this.setState({
hover: true,
});
}
};
onTouchEnd = () => {
if (this.props.onClick) {
this.setState({
hover: false,
});
}
};
render() {
let { prefixCls, thumb, arrow, error, children, extra, className, align, multipleLine, style } = this.props;
let { hover } = this.state;
let thumbDom;
let arrowDom;
const wrapCls = classNames({
[`${prefixCls}-item`]: true,
[`${prefixCls}-item-error`]: error,
[`${prefixCls}-item-top`]: align === 'top',
[`${prefixCls}-item-middle`]: align === 'middle',
[`${prefixCls}-item-bottom`]: align === 'bottom',
[`${prefixCls}-item-hover`]: hover,
[className]: className,
});
const lineCls = classNames({
[`${prefixCls}-line`]: true,
[`${prefixCls}-line-multiple`]: multipleLine,
});
const arrowCls = classNames({
[`${prefixCls}-arrow`]: true,
[`${prefixCls}-arrow-horizontal`]: arrow === 'horizontal',
[`${prefixCls}-arrow-vertical`]: arrow === 'down' || arrow === 'up',
[`${prefixCls}-arrow-vertical-up`]: arrow === 'up',
});
if (thumb) {
if (typeof thumb === 'string') {
thumbDom = <div className={`${prefixCls}-thumb`}><img src={thumb} /></div>;
} else {
thumbDom = <div className={`${prefixCls}-thumb`}>{thumb}</div>;
}
}
/* arrow有值,则保留这个dom坑位 */
if (arrow !== '') {
arrowDom = (<div className={arrowCls} />);
} else {
arrowDom = null;
}
return (
<div
className={wrapCls}
onClick={this.onClick}
onTouchStart={this.onTouchStart}
onTouchEnd={this.onTouchEnd}
onTouchCancel={this.onTouchEnd}
style={style}
>
{thumbDom}
<div className={lineCls}>
{children !== '' ? <div className={`${prefixCls}-content`}>{children}</div> : null}
{extra !== '' ? <div className={`${prefixCls}-extra`}>{extra}</div> : null}
{arrowDom}
</div>
</div>
);
}
}