blob: f8c6cba3aa22d34363f0ac24fdbe91a36f68cc8a (
plain)
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
|
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { toArray } from 'app/utils'
import actions from 'app/actions'
import { Arrow } from '../nav/viewer.icons'
import { EfluxClose } from '../nav/eflux.icons'
class ViewerSectionsFootnotes extends Component {
state = {
scrollPositions: [],
}
constructor(props) {
super(props)
this.scrollRef = React.createRef()
}
componentDidUpdate(prevProps) {
if (this.props.footnoteList !== prevProps.footnoteList) {
this.cacheScrollPositions()
}
if (this.props.currentFootnote !== prevProps.currentFootnote) {
this.scrollToFootnote()
}
}
cacheScrollPositions() {
let scrollPositions = toArray(this.scrollRef.current.querySelectorAll('.note-element')).map(el => {
return el.offsetTop
})
this.setState({ scrollPositions })
}
scrollToFootnote() {
const { currentFootnote } = this.props
const id = currentFootnote.footnote_id - 1
const pos = this.state.scrollPositions[id]
this.scrollRef.current.scrollTo(0, pos - 5)
}
render() {
const { footnoteList } = this.props
return (
<div className='nav-footnotes'>
<div className='nav-footnotes-close' onClick={() => actions.viewer.hideNavComponent('footnotes')}>
{EfluxClose}
</div>
<div className='nav-footnotes-scroll' ref={this.scrollRef}>
{footnoteList.map(note => (
<div key={note.footnote_id} className="note-element">
<div className="note-number">
{note.footnote_id}
</div>
<div className="note-body">
<div dangerouslySetInnerHTML={{ __html: note.text }} />
<u onClick={() => actions.viewer.seekToTimestamp(note.start_ts)}>
{'Go to text'}
</u>
</div>
</div>
))}
</div>
<div className='nav-footnotes-gradient' />
<FootnotesLink type='down' />
</div>
)
}
}
const FootnotesLink = ({ type }) => (
<div className="nav-return" onClick={() => actions.viewer.hideNavComponent('footnotes')}>
<Arrow type={type} />
{'Notes'}
</div>
)
const mapStateToProps = state => ({
footnoteList: state.viewer.footnoteList,
currentFootnote: state.viewer.currentFootnote,
})
export default connect(mapStateToProps)(ViewerSectionsFootnotes)
|