-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
108 lines (92 loc) · 2.8 KB
/
index.js
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
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import {MDCNotchedOutlineFoundation} from '@material/notched-outline';
export default class NotchedOutline extends React.Component {
foundation_ = null;
state = {
classList: new Set(),
};
constructor(props) {
super(props);
this.outlineElement_ = React.createRef();
this.pathElement_ = React.createRef();
this.idleElement_ = React.createRef();
}
componentDidMount() {
this.foundation_ = new MDCNotchedOutlineFoundation(this.adapter);
this.foundation_.init();
const {notch, notchWidth, isRtl} = this.props;
if (notch) {
this.foundation_.notch(notchWidth, isRtl);
}
}
componentWillUnmount() {
this.foundation_.destroy();
}
componentWillReceiveProps(nextProps) {
const hasToggledNotch = this.props.notch !== nextProps.notch;
const hasToggleRtl = this.props.isRtl !== nextProps.isRtl;
const notchWidthUpdated = this.props.notchWidth !== nextProps.notchWidth;
const shouldUpdateNotch = notchWidthUpdated || hasToggleRtl || hasToggledNotch;
if (!shouldUpdateNotch) {
return;
}
if (nextProps.notch) {
const {notchWidth, isRtl} = nextProps;
this.foundation_.notch(notchWidth, isRtl);
} else {
this.foundation_.closeNotch();
}
}
get classes() {
const {classList} = this.state;
const {className} = this.props;
return classnames('mdc-notched-outline', Array.from(classList), className);
}
get adapter() {
return {
getWidth: () => this.outlineElement_.current.offsetWidth,
getHeight: () => this.outlineElement_.current.offsetHeight,
addClass: (className) =>
this.setState({classList: this.state.classList.add(className)}),
removeClass: (className) => {
const {classList} = this.state;
classList.delete(className);
this.setState({classList});
},
setOutlinePathAttr: (value) => this.pathElement_.current.setAttribute('d', value),
getIdleOutlineStyleValue: (propertyName) =>
window.getComputedStyle(this.idleElement_.current).getPropertyValue(propertyName),
};
}
render() {
return ([
<div
className={this.classes}
key='notched-outline'
ref={this.outlineElement_}>
<svg>
<path ref={this.pathElement_}
className='mdc-notched-outline__path' />
</svg>
</div>,
<div
ref={this.idleElement_}
className='mdc-notched-outline__idle'
key='notched-outline-idle'></div>,
]);
}
}
NotchedOutline.propTypes = {
className: PropTypes.string,
isRtl: PropTypes.bool,
notch: PropTypes.bool,
notchWidth: PropTypes.number,
};
NotchedOutline.defaultProps = {
className: '',
isRtl: false,
notch: false,
notchWidth: 0,
};