Chart.tsx 1.9 KB
Newer Older
P
Peter Pan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/**
 * Copyright 2020 Baidu Inc. All Rights Reserved.
 *
 * 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.
 */

P
Peter Pan 已提交
17
import React, {FunctionComponent} from 'react';
P
Peter Pan 已提交
18
import {WithStyled, borderRadius, headerHeight, math, rem, sameBorder, size, transitionProps} from '~/utils/style';
19

20 21
import styled from 'styled-components';

22
const Div = styled.div<{maximized?: boolean; divWidth?: string; divHeight?: string}>`
23 24
    ${props =>
        size(
25 26
            props.maximized ? `calc(100vh - ${headerHeight} - ${rem(40)})` : props.divHeight || 'auto',
            props.maximized ? '100%' : props.divWidth || '100%'
27
        )}
P
Peter Pan 已提交
28
    background-color: var(--background-color);
29
    ${sameBorder({radius: math(`${borderRadius} * 2`)})}
P
Peter Pan 已提交
30
    ${transitionProps(['border-color', 'box-shadow', 'background-color'])}
31
    position: relative;
32 33

    &:hover {
P
Peter Pan 已提交
34
        border-color: var(--primary-color);
35 36 37 38
        box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.05);
    }
`;

39
type ChartProps = {
P
Peter Pan 已提交
40
    maximized?: boolean;
41 42 43 44
    width?: string;
    height?: string;
};

P
Peter Pan 已提交
45
const Chart: FunctionComponent<ChartProps & WithStyled> = ({maximized, width, height, className, children}) => {
46
    return (
P
Peter Pan 已提交
47 48
        <Div
            maximized={maximized}
49 50
            divWidth={width}
            divHeight={height}
P
Peter Pan 已提交
51 52
            className={`${maximized ? 'maximized' : ''} ${className ?? ''}`}
        >
53 54 55
            {children}
        </Div>
    );
56 57 58
};

export default Chart;