main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

tooltip.tsx

TLDR

The tooltip.tsx file in the src/widgets directory contains a React functional component called Tooltip. It adds a tooltip div over its children elements, positioning the tooltip based on the specified placement or defaulting to 'top'.

Methods

None

Classes

None

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react'

import './tooltip.scss'

type Props = {
    title: string
    children: React.ReactNode
    placement?: 'top'|'left'|'right'|'bottom'
}

// Adds tooltip div over children elements, the popup will
// be positioned based on the specified placement
// Default position is 'top'
function Tooltip(props: Props): JSX.Element {
    const placement = props.placement || 'top'
    const className = `octo-tooltip tooltip-${placement}`
    return (
        <div
            className={className}
            data-tooltip={props.title}
        >
            {props.children}
        </div>
    )
}

export default React.memo(Tooltip)