import React, { Component } from 'react' import { connect } from 'react-redux' import actions from 'app/actions' import { ROMAN_NUMERALS } from 'app/constants' import { pad } from 'app/utils' import { thumbnailURL } from 'app/utils/annotation.utils' import { PlayIcon } from '../nav/viewer.icons' class ChecklistContent extends Component { handleMediaSelection(section, mediaItem, i) { if (i === 0 && section.index !== 0) { actions.viewer.hideNavComponent('checklist') actions.viewer.seekToSection(section) } else { actions.viewer.seekToMediaItem(section, mediaItem) } } render() { const { sections, checklistSection } = this.props return (