/* eslint-disable max-lines */ require('./toolBar.less'); const React = require('react'); const { useState, useEffect } = React; const _ = require('lodash'); import { Anchored, AnchoredBox, AnchoredTrigger } from '../../../components/Anchored.jsx'; const MAX_ZOOM = 300; const MIN_ZOOM = 10; const ToolBar = ({ displayOptions, onDisplayOptionsChange, visiblePages, totalPages })=>{ const [pageNum, setPageNum] = useState(1); const [toolsVisible, setToolsVisible] = useState(true); useEffect(()=>{ if(visiblePages.length !== 0){ // If zoomed in enough, it's possible that no page fits the intersection criteria, so don't update. setPageNum(formatVisiblePages(visiblePages)); } }, [visiblePages]); const handleZoomButton = (zoom)=>{ handleOptionChange('zoomLevel', _.round(_.clamp(zoom, MIN_ZOOM, MAX_ZOOM))); }; const handleOptionChange = (optionKey, newValue)=>{ onDisplayOptionsChange({ ...displayOptions, [optionKey]: newValue }); }; const handlePageInput = (pageInput)=>{ if(/[0-9]/.test(pageInput)) setPageNum(parseInt(pageInput)); // input type is 'text', so `page` comes in as a string, not number. }; // scroll to a page, used in the Prev/Next Page buttons. const scrollToPage = (pageNumber)=>{ if(typeof pageNumber !== 'number') return; pageNumber = _.clamp(pageNumber, 1, totalPages); const iframe = document.getElementById('BrewRenderer'); const brewRenderer = iframe?.contentWindow?.document.querySelector('.brewRenderer'); const page = brewRenderer?.querySelector(`#p${pageNumber}`); page?.scrollIntoView({ block: 'start' }); }; const calculateChange = (mode)=>{ const iframe = document.getElementById('BrewRenderer'); const iframeWidth = iframe.getBoundingClientRect().width; const iframeHeight = iframe.getBoundingClientRect().height; const pages = iframe.contentWindow.document.getElementsByClassName('page'); let desiredZoom = 0; if(mode == 'fill'){ // find widest page, in case pages are different widths, so that the zoom is adapted to not cut the widest page off screen. const widestPage = _.maxBy([...pages], 'offsetWidth').offsetWidth; desiredZoom = (iframeWidth / widestPage) * 100; } else if(mode == 'fit'){ let minDimRatio; // find the page with the largest single dim (height or width) so that zoom can be adapted to fit it. if(displayOptions.spread === 'facing') minDimRatio = [...pages].reduce((minRatio, page)=>Math.min(minRatio, iframeWidth / page.offsetWidth / 2), Infinity); // if 'facing' spread, fit two pages in view else minDimRatio = [...pages].reduce((minRatio, page)=>Math.min(minRatio, iframeWidth / page.offsetWidth, iframeHeight / page.offsetHeight), Infinity); desiredZoom = minDimRatio * 100; } const margin = 5; // extra space so page isn't edge to edge (not truly "to fill") const deltaZoom = (desiredZoom - displayOptions.zoomLevel) - margin; return deltaZoom; }; // format the visible pages to work with ranges, including separate ranges ("2-7, 10-15") const formatVisiblePages = (pages)=>{ if(pages.length === 0) return ''; const sortedPages = [...pages].sort((a, b)=>a - b); // Copy and sort the array const ranges = []; let start = sortedPages[0]; for (let i = 1; i <= sortedPages.length; i++) { // If the current page is the end of the list or not consecutive if(i === sortedPages.length || sortedPages[i] !== sortedPages[i - 1] + 1) { ranges.push( start === sortedPages[i - 1] ? `${start}` : `${start} - ${sortedPages[i - 1]}` ); start = sortedPages[i]; // Start a new range } } return ranges.join(', '); }; return (