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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178 | 1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
| import React from 'react';
import PropTypes from 'prop-types';
import { OverlayTrigger, Popover, ListGroup, ListGroupItem } from 'react-bootstrap';
import { connect } from 'react-redux';
import { getChartKey } from '../../exploreUtils';
import { runAnnotationQuery } from '../../../chart/chartAction';
import InfoTooltipWithTrigger from '../../../components/InfoTooltipWithTrigger';
import AnnotationLayer from './AnnotationLayer';
import { t } from '../../../locales';
const propTypes = {
colorScheme: PropTypes.string.isRequired,
annotationError: PropTypes.object,
annotationQuery: PropTypes.object,
vizType: PropTypes.string,
validationErrors: PropTypes.array,
name: PropTypes.string.isRequired,
actions: PropTypes.object,
value: PropTypes.arrayOf(PropTypes.object),
onChange: PropTypes.func,
refreshAnnotationData: PropTypes.func,
};
const defaultProps = {
vizType: '',
value: [],
annotationError: {},
annotationQuery: {},
onChange: () => {},
};
class AnnotationLayerControl extends React.PureComponent {
constructor(props) {
super(props);
this.addAnnotationLayer = this.addAnnotationLayer.bind(this);
this.removeAnnotationLayer = this.removeAnnotationLayer.bind(this);
}
componentWillReceiveProps(nextProps) {
const { name, annotationError, validationErrors, value } = nextProps;
if (Object.keys(annotationError).length && !validationErrors.length) {
this.props.actions.setControlValue(name, value, Object.keys(annotationError));
}
if (!Object.keys(annotationError).length && validationErrors.length) {
this.props.actions.setControlValue(name, value, []);
}
}
addAnnotationLayer(annotationLayer) {
const annotation = annotationLayer;
let annotations = this.props.value.slice();
const i = annotations.findIndex(x => x.name === (annotation.oldName || annotation.name));
delete annotation.oldName;
if (i > -1) {
annotations[i] = annotation;
} else {
annotations = annotations.concat(annotation);
}
this.props.refreshAnnotationData(annotation);
this.props.onChange(annotations);
}
removeAnnotationLayer(annotation) {
const annotations = this.props.value.slice()
.filter(x => x.name !== annotation.oldName);
this.props.onChange(annotations);
}
renderPopover(parent, annotation, error) {
const id = !annotation ? '_new' : annotation.name;
return (
<Popover
style={{ maxWidth: 'none' }}
title={annotation ? 'Edit Annotation Layer' : 'Add Annotation Layer'}
id={`annotation-pop-${id}`}
>
<AnnotationLayer
{...annotation}
error={error}
colorScheme={this.props.colorScheme}
vizType={this.props.vizType}
addAnnotationLayer={this.addAnnotationLayer}
removeAnnotationLayer={this.removeAnnotationLayer}
close={() => this.refs[parent].hide()}
/>
</Popover>
);
}
renderInfo(anno) {
const { annotationError, annotationQuery } = this.props;
if (annotationQuery[anno.name]) {
return (
<i className="fa fa-refresh" style={{ color: 'orange' }} aria-hidden />
);
}
if (annotationError[anno.name]) {
return (
<InfoTooltipWithTrigger
label="validation-errors"
bsStyle="danger"
tooltip={annotationError[anno.name]}
/>
);
}
if (!anno.show) {
return <span style={{ color: 'red' }}> Hidden </span>;
}
return '';
}
render() {
const annotations = this.props.value.map((anno, i) => (
<OverlayTrigger
key={i}
trigger="click"
rootClose
ref={`overlay-${i}`}
placement="right"
overlay={this.renderPopover(`overlay-${i}`, anno,
this.props.annotationError[anno.name])}
>
<ListGroupItem>
<span>{anno.name}</span>
<span style={{ float: 'right' }}>
{this.renderInfo(anno)}
</span>
</ListGroupItem>
</OverlayTrigger>
));
return (
<div>
<ListGroup>
{annotations}
<OverlayTrigger
trigger="click"
rootClose
ref="overlay-new"
placement="right"
overlay={this.renderPopover('overlay-new')}
>
<ListGroupItem>
<i className="fa fa-plus" /> {t('Add Annotation Layer')}
</ListGroupItem>
</OverlayTrigger>
</ListGroup>
</div>
);
}
}
AnnotationLayerControl.propTypes = propTypes;
AnnotationLayerControl.defaultProps = defaultProps;
// Tried to hook this up through stores/control.jsx instead of using redux
// directly, could not figure out how to get access to the color_scheme
function mapStateToProps({ charts, explore }) {
const chartKey = getChartKey(explore);
return {
colorScheme: (explore.controls || {}).color_scheme.value,
annotationError: charts[chartKey].annotationError,
annotationQuery: charts[chartKey].annotationQuery,
vizType: explore.controls.viz_type.value,
};
}
function mapDispatchToProps(dispatch) {
return {
refreshAnnotationData: annotationLayer => dispatch(runAnnotationQuery(annotationLayer)),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(AnnotationLayerControl);
|