summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/sections/viewer.sections.footnotes.js
blob: 6c6ef31895115e90fe1b117dabc78abc3530ac86 (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
import React, { Component } from 'react'
import { connect } from 'react-redux'

import actions from 'app/actions'
import { Arrow } from '../nav/viewer.icons'
import { EfluxClose } from '../nav/eflux.icons'

class ViewerSectionsFootnotes extends Component {
  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'>
          {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,
})

export default connect(mapStateToProps)(ViewerSectionsFootnotes)