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
|
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { TEXT_OVERLAYS, DEFAULT_ICON } from '../text-overlays.js'
import './overlay.css'
class TextOverlay extends Component {
state = {
open: false,
content: null,
}
constructor(props) {
super(props)
this.toggle = this.toggle.bind(this)
}
componentDidMount() {
this.load()
}
componentDidUpdate(prevProps) {
// console.log(this.props.location.pathname, prevProps.location.pathname)
if (this.props.location.pathname !== prevProps.location.pathname) {
this.load()
}
}
load() {
const { page_name } = this.props.match.params
if (TEXT_OVERLAYS[page_name]) {
this.setState({
content: TEXT_OVERLAYS[page_name],
open: false,
})
} else {
this.setState({
content: null,
open: false,
})
}
}
toggle() {
this.setState({ open: !this.state.open })
}
render() {
const { open, content } = this.state
const { popups, interactive } = this.props
if (!interactive || !content) return null
if (content.popup && !popups[content.popup]) return null
if (!content.popup && !open) {
return (
<div
className="text-overlay-icon"
style={content.style}
onClick={this.toggle}
>
<img src={content.icon || DEFAULT_ICON} />
</div>
)
}
return (
<div
className="text-overlay"
style={{
...content.style,
...(content.textStyle || {}),
}}
onClick={this.toggle}
dangerouslySetInnerHTML={{ __html: content.text }}
/>
)
}
}
const mapStateToProps = state => ({
popups: state.site.popups,
interactive: state.site.interactive,
})
export default connect(mapStateToProps)(TextOverlay)
|