UNPKG

@finos/legend-application-marketplace

Version:
32 lines 2.42 kB
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime"; /** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { useRef, useState } from 'react'; import { Card, CardActionArea, CardActions, CardContent, Slide, } from '@mui/material'; import { clsx } from '@finos/legend-art'; export const LegendMarketplaceCard = (props) => { const { content, size, actions, onClick, moreInfo, className } = props; const [isMouseOver, setIsMouseOver] = useState(false); const containerRef = useRef(null); const CardContentComponent = (_jsxs(_Fragment, { children: [_jsx(CardContent, { className: clsx('legend-marketplace-card__content', { 'legend-marketplace-card__content--with-actions': actions !== undefined, }), children: content }), actions && (_jsx(CardActions, { className: "legend-marketplace-card__actions", children: actions })), moreInfo && (_jsx(Slide, { direction: "up", in: isMouseOver, container: containerRef.current, children: _jsx(CardContent, { className: "legend-marketplace-card__more-info", children: moreInfo }) }))] })); return (_jsx(Card, { variant: "outlined", className: clsx('legend-marketplace-card', { 'legend-marketplace-card--small': size === 'small', 'legend-marketplace-card--large': size === 'large', }, className), ref: containerRef, children: onClick ? (_jsx(CardActionArea, { onClick: onClick, onMouseEnter: () => setIsMouseOver(true), onMouseLeave: () => setIsMouseOver(false), className: "legend-marketplace-card__content-container", children: CardContentComponent })) : (_jsx("div", { onMouseEnter: () => setIsMouseOver(true), onMouseLeave: () => setIsMouseOver(false), className: "legend-marketplace-card__content-container", children: CardContentComponent })) })); }; //# sourceMappingURL=LegendMarketplaceCard.js.map