forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.jsx
154 lines (132 loc) · 3.94 KB
/
timeline.jsx
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import React, { Component, Children } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { polyfill } from 'react-lifecycles-compat';
import { obj } from '../../util';
import ConfigProvider from '../../config-provider';
import nextLocale from '../../locale/zh-cn';
/** Timeline */
class Timeline extends Component {
static propTypes = {
...ConfigProvider.propTypes,
/**
* 样式的品牌前缀
*/
prefix: PropTypes.string,
rtl: PropTypes.bool,
/**
* 自定义折叠选项 示例`[{foldArea: [startIndex, endIndex], foldShow: boolean}]`
*/
fold: PropTypes.array,
/**
* 自定义类名
*/
className: PropTypes.string,
children: PropTypes.any,
locale: PropTypes.object,
animation: PropTypes.bool,
};
static defaultProps = {
prefix: 'next-',
rtl: false,
fold: [],
locale: nextLocale.Timeline,
animation: true,
};
constructor(props, context) {
super(props, context);
this.state = {
fold: props.fold,
};
}
static getDerivedStateFromProps(nextProps, prevState) {
const { innerUpdate, fold } = prevState;
if (innerUpdate) {
return {
fold,
innerUpdate: false,
};
}
if ('fold' in nextProps) {
return {
fold: nextProps.fold,
};
}
return null;
}
toggleFold(folderIndex, total) {
const fold = this.state.fold.map(item => ({ ...item }));
if (folderIndex) {
for (let i = 0; i < fold.length; i++) {
const { foldArea, foldShow } = fold[i];
if (
(foldArea[1] && folderIndex === foldArea[1]) ||
(!foldArea[1] && folderIndex === total - 1)
) {
fold[i].foldShow = !foldShow;
}
}
this.setState({ fold, innerUpdate: true });
}
}
render() {
const {
prefix,
rtl,
className,
children,
locale,
animation,
...others
} = this.props;
const { fold } = this.state;
// 修改子节点属性
const childrenCount = React.Children.count(children);
const cloneChildren = Children.map(children, (child, i) => {
let folderIndex = null;
let foldNodeShow = false;
fold.forEach(item => {
const { foldArea, foldShow } = item;
if (
foldArea[0] &&
i >= foldArea[0] &&
(i <= foldArea[1] || !foldArea[1])
) {
folderIndex = foldArea[1] || childrenCount - 1;
foldNodeShow = foldShow;
}
});
return React.cloneElement(child, {
prefix: prefix,
locale: locale,
total: childrenCount,
index: i,
folderIndex: folderIndex,
foldShow: foldNodeShow,
toggleFold:
folderIndex === i
? this.toggleFold.bind(this, folderIndex, childrenCount)
: () => {},
animation: animation,
});
});
const timelineCls = classNames(
{
[`${prefix}timeline`]: true,
},
className
);
if (rtl) {
others.dir = 'rtl';
}
return (
<ul
{...obj.pickOthers(Timeline.propTypes, others)}
className={timelineCls}
>
{cloneChildren}
</ul>
);
}
}
export default ConfigProvider.config(polyfill(Timeline));