/* * The MIT License (MIT) * * Copyright (c) 2021 - 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, ContextType } from 'react' import { Img } from '@instructure/ui-img' import { callRenderProp } from '@instructure/ui-react-utils' import { testable } from '@instructure/ui-testable' import { withStyle } from '@instructure/emotion' import generateStyles from '../TreeButton/styles' import generateComponentTheme from '../TreeButton/theme' import type { TreeBrowserNodeProps } from './props' import { allowedProps, propTypes } from './props' import TreeBrowserContext from '../TreeBrowserContext' // Todo: merge TreeButton and TreeNode: TreeButton should be a special type of TreeNode /** --- parent: TreeBrowser id: TreeBrowser.Node --- A helper class used to render the :renderBeforeItems and :renderAfterItems in the TreeBrowser. **/ @withStyle(generateStyles, generateComponentTheme) @testable() class TreeNode extends Component { static readonly componentId = 'TreeBrowser.Node' static allowedProps = allowedProps static propTypes = propTypes static contextType = TreeBrowserContext declare context: ContextType static defaultProps = { size: 'medium', variant: 'folderTree', selected: false, focused: false } ref: Element | null = null componentDidMount() { this.props.makeStyles?.({ animation: this.context?.animation }) } componentDidUpdate() { this.props.makeStyles?.({ animation: this.context?.animation }) } handleRef = (el: HTMLDivElement) => { if (el && typeof this.props.containerRef === 'function') { this.props.containerRef(el.parentElement) } this.ref = el } renderItemImage() { const { thumbnail, itemIcon, styles } = this.props if (thumbnail) { return (
) } if (itemIcon) { return
{callRenderProp(itemIcon)}
} return undefined } render() { const { children, styles } = this.props return (
{this.renderItemImage()} {children}
) } } export default TreeNode export { TreeNode }