/* * The MIT License (MIT) * * Copyright (c) 2015 - present Instructure, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ import { Component } from 'react' import { error } from '@instructure/console' import { px } from '@instructure/ui-utils' import { matchComponentTypes } from '@instructure/ui-react-utils' import { Responsive } from '@instructure/ui-responsive/v11_6' import { TopNavBarActionItems } from './TopNavBarActionItems' import { TopNavBarBrand } from './TopNavBarBrand' import { TopNavBarItem } from './TopNavBarItem' import { TopNavBarLayout } from './TopNavBarLayout' import { TopNavBarMenuItems } from './TopNavBarMenuItems' import { TopNavBarUser } from './TopNavBarUser' import { TopNavBarBreadcrumb } from './TopNavBarBreadcrumb' import { TopNavBarContext } from './TopNavBarContext' import type { TopNavBarLayouts } from './TopNavBarContext' import { allowedProps } from './props' import type { TopNavBarProps } from './props' /** --- category: components --- **/ class TopNavBar extends Component { static readonly componentId = 'TopNavBar' // TODO: mention subcomponent registration in "new component" docs static ActionItems = TopNavBarActionItems static Brand = TopNavBarBrand static Item = TopNavBarItem static Layout = TopNavBarLayout static MenuItems = TopNavBarMenuItems static User = TopNavBarUser static Breadcrumb = TopNavBarBreadcrumb static contextType = TopNavBarContext static allowedProps = allowedProps static defaultProps = { breakpoint: 1024, mediaQueryMatch: 'media', inverseColor: false } ref: HTMLDivElement | null = null handleRef = (el: HTMLDivElement | null) => { const { elementRef } = this.props this.ref = el if (typeof elementRef === 'function') { elementRef(el) } } get breakpoint() { return px(this.props.breakpoint!) } render() { const { children, mediaQueryMatch, inverseColor } = this.props return ( { const layout = matches ? (matches[0] as TopNavBarLayouts) : 'smallViewport' const isInverseColor = typeof inverseColor === 'function' ? inverseColor(layout) : !!inverseColor const content = children({ currentLayout: layout, inverseColor: isInverseColor }) if (!matchComponentTypes(content, [TopNavBarLayout])) { error( false, 'The `children` function prop of TopNavBar has to return a child of type , but it returned:', content ) } return ( {content} ) }} /> ) } } export { TopNavBar } export default TopNavBar