-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathPickerButton.js
101 lines (88 loc) · 1.92 KB
/
PickerButton.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
import {forward, handle} from '@enact/core/handle';
import kind from '@enact/core/kind';
import React from 'react';
import PropTypes from 'prop-types';
import Pure from '@enact/ui/internal/Pure';
import {contextTypes} from '../../Marquee/MarqueeController';
import Holdable from '../Holdable';
import Icon from '../../Icon';
import IconButton from '../../IconButton';
import {withSkinnableProps} from '../../Skinnable';
import css from './Picker.less';
const PickerButtonBase = kind({
name: 'PickerButton',
propTypes: {
disabled: PropTypes.bool,
hidden: PropTypes.bool,
icon: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object
]),
joined: PropTypes.bool,
onSpotlightDisappear: PropTypes.func,
skin: PropTypes.string,
spotlightDisabled: PropTypes.bool
},
defaultProps: {
joined: false
},
contextTypes: contextTypes,
styles: {
css
},
handlers: {
onMouseEnter: handle(
forward('onMouseEnter'),
(ev, props, context) => {
if (context.enter) {
context.enter(null);
}
}
),
onMouseLeave: handle(
forward('onMouseLeave'),
(ev, props, context) => {
if (context.leave) {
context.leave(null);
}
}
)
},
computed: {
className: ({hidden, styler}) => styler.append({
hidden
})
},
render: ({disabled, icon, joined, ...rest}) => {
if (joined) {
delete rest.hidden;
delete rest.onSpotlightDisappear;
delete rest.skin;
delete rest.spotlightDisabled;
return (
<span {...rest} disabled={disabled}>
<Icon className={css.icon} disabled={disabled} small>{icon}</Icon>
</span>
);
} else {
return (
<IconButton {...rest} backgroundOpacity="transparent" disabled={disabled} small>
{icon}
</IconButton>
);
}
}
});
const PickerButton = Pure(
Holdable(
{resume: true, endHold: 'onLeave'},
withSkinnableProps(
PickerButtonBase
)
)
);
export default PickerButton;
export {
PickerButton,
PickerButtonBase
};