blob: 616394366342e3bedab7f402d0833e668a76f912 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 cx from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';
import { t } from '@superset-ui/core';
const propTypes = {
datasourceUrl: PropTypes.string,
datasourceName: PropTypes.string,
innerRef: PropTypes.func,
isSelected: PropTypes.bool,
lastModified: PropTypes.string,
sliceName: PropTypes.string.isRequired,
style: PropTypes.object,
visType: PropTypes.string.isRequired,
};
const defaultProps = {
datasourceUrl: null,
datasourceName: '-',
innerRef: null,
isSelected: false,
style: null,
lastModified: null,
};
function AddSliceCard({
datasourceUrl,
datasourceName,
innerRef,
isSelected,
lastModified,
sliceName,
style,
visType,
}) {
return (
<div ref={innerRef} className="chart-card-container" style={style}>
<div
className={cx('chart-card', isSelected && 'is-selected')}
data-test="chart-card"
>
<div className="card-title" data-test="card-title">
{sliceName}
</div>
<div className="card-body">
<div className="item">
<span>{t('Modified')} </span>
<span>{lastModified}</span>
</div>
<div className="item">
<span>{t('Visualization')} </span>
<span>{visType}</span>
</div>
<div className="item">
<span>{t('Data source')} </span>
<a href={datasourceUrl}>{datasourceName}</a>
</div>
</div>
</div>
{isSelected && <div className="is-added-label">{t('Added')}</div>}
</div>
);
}
AddSliceCard.propTypes = propTypes;
AddSliceCard.defaultProps = defaultProps;
export default AddSliceCard;