| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import Dropdown from 'react-bootstrap/es/Dropdown';
- import MenuItem from 'react-bootstrap/es/MenuItem';
- import Clipboard from 'react-clipboard.js';
- export default class RevisionPath extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- pages: [],
- isListPage: false,
- isLinkToListPage: true,
- };
- // retrieve xss library from window
- this.xss = window.xss;
- }
- componentWillMount() {
- // whether list page or not
- const isListPage = this.props.pagePath.match(/\/$/);
- this.setState({ isListPage });
- // whether set link to '/'
- const behaviorType = this.props.crowi.getConfig().behaviorType;
- const isLinkToListPage = (!behaviorType || behaviorType === 'crowi');
- this.setState({ isLinkToListPage });
- // generate pages obj
- const splitted = this.props.pagePath.split(/\//);
- splitted.shift(); // omit first element with shift()
- if (splitted[splitted.length - 1] === '') {
- splitted.pop(); // omit last element with unshift()
- }
- const pages = [];
- let parentPath = '/';
- splitted.forEach((pageName) => {
- pages.push({
- pagePath: parentPath + encodeURIComponent(pageName),
- pageName: this.xss.process(pageName),
- });
- parentPath += `${pageName}/`;
- });
- this.setState({ pages });
- }
- showToolTip() {
- const buttonId = '#copyPagePathDropdown';
- $(buttonId).tooltip('show');
- setTimeout(() => {
- $(buttonId).tooltip('hide');
- }, 1000);
- }
- generateLinkElementToListPage(pagePath, isLinkToListPage, isLastElement) {
- /* eslint-disable no-else-return */
- if (isLinkToListPage) {
- return <a href={`${pagePath}/`} className={(isLastElement && !this.state.isListPage) ? 'last-path' : ''}>/</a>;
- }
- else if (!isLastElement) {
- return <span>/</span>;
- }
- else {
- return <span></span>;
- }
- /* eslint-enable no-else-return */
- }
- render() {
- // define styles
- const rootStyle = {
- marginRight: '0.2em',
- };
- const separatorStyle = {
- marginLeft: '0.2em',
- marginRight: '0.2em',
- };
- const editButtonStyle = {
- marginLeft: '0.5em',
- padding: '0 2px',
- };
- const pageLength = this.state.pages.length;
- const afterElements = [];
- this.state.pages.forEach((page, index) => {
- const isLastElement = (index === pageLength - 1);
- // add elements for page
- afterElements.push(
- <span key={page.pagePath} className="path-segment">
- <a href={page.pagePath}>{page.pageName}</a>
- </span>,
- );
- // add elements for '/'
- afterElements.push(
- <span key={`${page.pagePath}/`} className="separator" style={separatorStyle}>
- {this.generateLinkElementToListPage(page.pagePath, this.state.isLinkToListPage, isLastElement)}
- </span>,
- );
- });
- return (
- <span className="d-flex align-items-center">
- <span className="separator" style={rootStyle}>
- <a href="/">/</a>
- </span>
- {afterElements}
- <Dropdown id="copyPagePathDropdown">
- <Dropdown.Toggle bsSize="sm">
- <i className="ti-clipboard"></i>
- </Dropdown.Toggle>
- <Dropdown.Menu>
- <MenuItem>hoge</MenuItem>
- <MenuItem>fuga</MenuItem>
- </Dropdown.Menu>
- </Dropdown>
- <a href="#edit" className="btn btn-default btn-edit" style={editButtonStyle}>
- <i className="icon-note" />
- </a>
- </span>
- );
- }
- }
- RevisionPath.propTypes = {
- pagePath: PropTypes.string.isRequired,
- crowi: PropTypes.object.isRequired,
- };
|