123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * Copyright (C) 2015 - present Instructure, Inc.
- *
- * This file is part of Canvas.
- *
- * Canvas is free software: you can redistribute it and/or modify it under
- * the terms of the GNU Affero General Public License as published by the Free
- * Software Foundation, version 3 of the License.
- *
- * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Affero General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import React from 'react'
- import I18n from 'i18n!react_files'
- import classnames from 'classnames'
- import Breadcrumbs from 'compiled/react_files/components/Breadcrumbs'
- import filesEnv from 'compiled/react_files/modules/filesEnv'
- import BreadcrumbCollapsedContainer from 'jsx/files/BreadcrumbCollapsedContainer'
- import splitAssetString from 'compiled/str/splitAssetString'
- var MAX_CRUMB_WIDTH = 500
- var MIN_CRUMB_WIDTH = 80;
- Breadcrumbs.renderSingleCrumb = function (folder, isLastCrumb, isRootCrumb) {
- const [contextType, contextId] = splitAssetString(this.props.contextAssetString, false);
- const isContextRoot = !!(folder && (folder.get("context_type") || "").toLowerCase() === contextType && (folder.get("context_id") || -1).toString() === contextId);
- const name = (isRootCrumb && isContextRoot) ? I18n.t('files', 'Files') : folder && (folder.get('custom_name') || folder.get('name'));
- return (
- <li key={name}>
- <a
- href={(isRootCrumb && isContextRoot) ? filesEnv.baseUrl : `${filesEnv.baseUrl}/folder/${(folder) ? folder.urlPath(): null}`}
- // only add title tooltips if there's a chance they could be ellipsized
- title={(this.state.maxCrumbWidth < 500) ? name : null}
- >
- <span
- className='ellipsis'
- style={{maxWidth: (isLastCrumb) ? null : this.state.maxCrumbWidth}}
- >
- {name}
- </span>
- </a>
- </li>
- );
- };
- Breadcrumbs.renderDynamicCrumbs = function () {
- if (this.props.showingSearchResults) {
- return [
- this.renderSingleCrumb(null, !'isLastCrumb', !!'isRootCrumb'),
- <li key='searchLink'>
- <a href="/search">
- <span className='ellipsis'>
- {this.props.query.search_term &&
- I18n.t('search_results_for', 'search results for "%{search_term}"', {search_term: this.props.query.search_term})
- }
- </span>
- </a>
- </li>
- ];
- } else {
- if (!this.props.rootTillCurrentFolder || !this.props.rootTillCurrentFolder.length) {
- return [];
- }
- // Formerly, in CoffeeScript [...foldersInMiddle, lastFolder] = this.props.rootTillCurrentFolder
- var foldersInMiddle = this.props.rootTillCurrentFolder.slice(0, this.props.rootTillCurrentFolder.length - 1)
- var lastFolder = this.props.rootTillCurrentFolder[this.props.rootTillCurrentFolder.length - 1]
- if (this.state.maxCrumbWidth > MIN_CRUMB_WIDTH) {
- return this.props.rootTillCurrentFolder.map((folder, i) => {
- return this.renderSingleCrumb(folder, folder === lastFolder, i === 0)
- });
- } else {
- return [
- <BreadcrumbCollapsedContainer foldersToContain={foldersInMiddle} />,
- this.renderSingleCrumb(lastFolder, true)
- ]
- }
- }
- };
- Breadcrumbs.render = function () {
- return (
- <nav
- aria-label='breadcrumbs'
- role='navigation'
- id='breadcrumbs'
- ref='breadcrumbs'
- >
- <ul>
- <li className='home'>
- <a href='/'>
- <i className='icon-home standalone-icon' title={this.state.homeName}>
- <span className='screenreader-only'>{this.state.homeName}</span>
- </i>
- </a>
- </li>
- <li>
- <a href={this.state.contextUrl}>
- <span className='ellipsible'>
- {this.state.contextName}
- </span>
- </a>
- </li>
- {this.renderDynamicCrumbs()}
- </ul>
- </nav>
- );
- };
- export default React.createClass(Breadcrumbs)
|