@finos/legend-application-marketplace
Version:
Legend Marketplace application core
58 lines • 4.62 kB
JavaScript
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, ClickAwayListener, } from '@mui/material';
import { clsx, CubesLoadingIndicator, CubesLoadingIndicatorIcon, deserializeIcon, } from '@finos/legend-art';
import { V1_DataProductEmbeddedImageIcon, V1_DataProductLibraryIcon, } from '@finos/legend-graph';
export const LegendMarketplaceCard = (props) => {
const { content, size, actions, onClick, moreInfo, moreInfoPreview, className, cardMedia, loadingMedia, } = props;
const cardImage = cardMedia instanceof V1_DataProductEmbeddedImageIcon
? cardMedia.imageUrl
: typeof cardMedia === 'string'
? cardMedia
: undefined;
const cardIcon = cardMedia instanceof V1_DataProductLibraryIcon ? cardMedia : undefined;
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(ClickAwayListener, { onClickAway: () => setIsMouseOver(false), children: _jsx(CardContent, { className: clsx('legend-marketplace-card__more-info', {
'legend-marketplace-card__more-info--preview--small': moreInfoPreview === 'small',
'legend-marketplace-card__more-info--preview--large': moreInfoPreview === 'large',
'legend-marketplace-card__more-info--visible': isMouseOver,
}), onMouseEnter: moreInfoPreview !== undefined
? () => setIsMouseOver(true)
: undefined, onMouseLeave: moreInfoPreview !== undefined
? () => setIsMouseOver(false)
: undefined, children: _jsx("div", { className: "legend-marketplace-card__more-info__content", children: moreInfo }) }) }))] }));
return (_jsxs(Card, { variant: "outlined", className: clsx('legend-marketplace-card', {
'legend-marketplace-card--small': size === 'small',
'legend-marketplace-card--large': size === 'large',
'legend-marketplace-card--with-icon': cardIcon !== undefined,
'legend-marketplace-card--with-preview--small': moreInfoPreview === 'small',
'legend-marketplace-card--with-preview--large': moreInfoPreview === 'large',
}, className), ref: containerRef, children: [loadingMedia && (_jsx(CubesLoadingIndicator, { isLoading: true, children: _jsx(CubesLoadingIndicatorIcon, {}) })), cardImage !== undefined && (_jsx("div", { className: "legend-marketplace-card__image", style: { backgroundImage: `url(${cardImage})` } })), cardIcon !== undefined && (_jsx("div", { className: "legend-marketplace-card__icon", children: deserializeIcon(cardIcon.libraryId, cardIcon.iconId) })), onClick ? (_jsx(CardActionArea, { onClick: onClick, onMouseEnter: moreInfoPreview === undefined
? () => setIsMouseOver(true)
: undefined, onMouseLeave: moreInfoPreview === undefined
? () => setIsMouseOver(false)
: undefined, className: "legend-marketplace-card__content-container", component: "div", children: CardContentComponent })) : (_jsx("div", { onMouseEnter: moreInfoPreview === undefined
? () => setIsMouseOver(true)
: undefined, onMouseLeave: moreInfoPreview === undefined
? () => setIsMouseOver(false)
: undefined, className: "legend-marketplace-card__content-container", children: CardContentComponent }))] }));
};
//# sourceMappingURL=LegendMarketplaceCard.js.map