| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import {
- Modal, ModalBody, Nav, NavItem, NavLink, TabContent, TabPane,
- } from 'reactstrap';
- import { withTranslation } from 'react-i18next';
- import PageListIcon from './Icons/PageListIcon';
- import TimeLineIcon from './Icons/TimeLineIcon';
- import RecentChangesIcon from './Icons/RecentChangesIcon';
- import AttachmentIcon from './Icons/AttachmentIcon';
- import { withUnstatedContainers } from './UnstatedUtils';
- import PageAccessoriesContainer from '../services/PageAccessoriesContainer';
- import PageAttachment from './PageAttachment';
- const PageAccessoriesModal = (props) => {
- const { t, pageAccessoriesContainer } = props;
- const { switchActiveTab } = pageAccessoriesContainer;
- const { activeTab } = pageAccessoriesContainer.state;
- function closeModalHandler() {
- if (props.onClose == null) {
- return;
- }
- props.onClose();
- }
- const menu = document.getElementsByClassName('nav'); // 上部に持ってきた
- // Values are set.
- // Might make this dynamic for px, %, pt, em
- function getPercentage(min, max) {
- return min / max * 100;
- }
- // Not using reduce, because IE8 doesn't supprt it
- function getArraySum(arr) {
- let sum = 0;
- [].forEach.call(arr, (el, index) => {
- sum += el;
- });
- return sum;
- }
- function navSlider(menu, callback) {
- const menuWidth = menu.offsetWidth;
- // We only want the <li> </li> tags
- const navTabs = document.querySelectorAll('li.nav-link');
- console.log(navTabs);
- if (menu.length > 0) {
- const marginLeft = [];
- // Loop through nav children i.e li
- [].forEach.call(navTabs, (el, index) => {
- // Dynamic width/margin calculation for hr
- const width = getPercentage(el.offsetWidth, menuWidth);
- let tempMarginLeft = 0;
- // We don't want to modify first elements positioning
- if (index !== 0) {
- tempMarginLeft = getArraySum(marginLeft);
- }
- // Set mouse event hover/click
- callback(el, width, tempMarginLeft);
- /* We store it in array because the later accumulated value is used for positioning */
- marginLeft.push(width);
- });
- }
- }
- if (menu) {
- // CLICK
- const menuSliderClick = document.getElementById('nav_slide_click');
- if (menuSliderClick) {
- navSlider(menu[1], (el, width, tempMarginLeft) => {
- el.onclick = () => {
- menuSliderClick.style.width = `${width}%`;
- menuSliderClick.style.marginLeft = `${tempMarginLeft}%`;
- };
- });
- }
- } // endif
- return (
- <React.Fragment>
- <Modal
- size="lg"
- isOpen={props.isOpen}
- toggle={closeModalHandler}
- className="grw-page-accessories-modal"
- >
- <ModalBody>
- <Nav className="nav-title border-bottom" id="nav_slide_click">
- <NavItem type="button" className={`nav-link ${activeTab === 'pagelist' && 'active'}`}>
- <NavLink
- onClick={() => { switchActiveTab('pagelist') }}
- >
- <PageListIcon />
- { t('page_list') }
- </NavLink>
- </NavItem>
- <NavItem type="button" className={`nav-link ${activeTab === 'timeline' && 'active'}`}>
- <NavLink
- onClick={() => { switchActiveTab('timeline') }}
- >
- <TimeLineIcon />
- { t('Timeline View') }
- </NavLink>
- </NavItem>
- <NavItem type="button" className={`nav-link ${activeTab === 'recent-changes' && 'active'}`}>
- <NavLink
- onClick={() => { switchActiveTab('recent-changes') }}
- >
- <RecentChangesIcon />
- { t('History') }
- </NavLink>
- </NavItem>
- <NavItem type="button" className={`nav-link ${activeTab === 'attachment' && 'active'}`}>
- <NavLink
- onClick={() => { switchActiveTab('attachment') }}
- >
- <AttachmentIcon />
- { t('attachment_data') }
- </NavLink>
- </NavItem>
- </Nav>
- <TabContent activeTab={activeTab}>
- <TabPane tabId="pagelist"></TabPane>
- <TabPane tabId="timeline"></TabPane>
- <TabPane tabId="recent-changes"></TabPane>
- <TabPane tabId="attachment" className="p-4">
- {pageAccessoriesContainer.state.activeComponents.has('attachment') && <PageAttachment /> }
- </TabPane>
- </TabContent>
- </ModalBody>
- </Modal>
- </React.Fragment>
- );
- };
- /**
- * Wrapper component for using unstated
- */
- const PageAccessoriesModalWrapper = withUnstatedContainers(PageAccessoriesModal, [PageAccessoriesContainer]);
- PageAccessoriesModal.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- // pageContainer: PropTypes.instanceOf(PageContainer).isRequired,
- pageAccessoriesContainer: PropTypes.instanceOf(PageAccessoriesContainer).isRequired,
- isOpen: PropTypes.bool.isRequired,
- onClose: PropTypes.func,
- };
- export default withTranslation()(PageAccessoriesModalWrapper);
|