aboutsummaryrefslogblamecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Code.tsx
blob: 4b8f0b555bb904a9283a510ff1ac2a2d855ad46a (plain) (tree)
1
2
3
4
5
6
7
8
9


                                       
                                      




                                  
                    


                           












                                  


                   



                

               
                       
                                                                                 
                                
                                                                                                         

                                                                            















                                      


                       

  












                                                               
 
                      

                              














                                                                       
     





                                                 
     

























                                                          


                                                                

                                     
                                                                                                                     
 


                                                                



















                                                                                  



                                                                             

                
                                                                
                           





                                                                                               
                            
                                                                                                              








                                                                                              
import * as React from 'react';
import styled from 'styled-components';

import { colors } from 'ts/variables';
import BaseButton from './Button';

interface CodeProps {
    children: React.ReactNode;
    language?: string;
    light?: boolean;
    diff?: boolean;
    gutter?: Array<number>;
    gutterLength?: number;
}

interface CodeState {
    hlCode?: string;
    copied?: boolean;
}

const Button = styled(BaseButton)`
    opacity: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: opacity 0.2s;
    :focus {
        opacity: 1;
    }
`;

const Base =
    styled.div <
    CodeProps >
    `
    font-size: .875rem;
    color: ${props => (props.language === undefined ? colors.white : 'inherit')};
    background-color: ${props =>
        props.light ? 'rgba(255,255,255,.15)' : props.language === undefined ? colors.black : '#F1F4F5'};
    white-space: ${props => (props.language === undefined ? 'nowrap' : '')};
    position: relative;

    ${props =>
        props.diff
            ? `
        background-color: #E9ECED;
        display: flex;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    `
            : `
        padding: 1.5rem;
    `}

    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;

    &:hover ${Button} {
        opacity: 1;
    }
`;

const StyledCodeDiff =
    styled.code <
    any >
    `
    ::before {
        content: '';
        width: calc(.75rem + ${props => props.gutterLength}ch);
        background-color: #e2e5e6;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
    }

    [class^='line-'] {
        display: inline-block;
        width: 100%;
        position: relative;
        padding-right: 1.5rem;
        padding-left: calc(2.25rem + ${props => props.gutterLength}ch);
        ::before {
            content: attr(data-test);
            font-size: 0.875rem;
            width: ${props => props.gutterLength};
            padding-left: .375rem;
            padding-right: .375rem;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 1;
        }
    }

    .line-addition {
        background-color: rgba(0, 202, 105, 0.1);
    }
    .line-deletion {
        background-color: rgba(255, 0, 0, 0.07);
    }
`;

const StyledPre = styled.pre`
    margin: 0;
`;

const StyledCopyInput = styled.textarea`
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
`;

const CopyInput = StyledCopyInput as any;

class Code extends React.Component<CodeProps, CodeState> {
    code = React.createRef<HTMLTextAreaElement>();

    state: CodeState = {};

    constructor(props: CodeProps) {
        super(props);
    }

    async componentDidMount() {
        const { language, children, diff, gutter } = this.props;

        const code = children as string;

        if (language !== undefined) {
            const { default: highlight } = await System.import(/* webpackChunkName: 'highlightjs' */ 'ts/highlight');

            this.setState({
                hlCode: highlight(language, code, diff, gutter),
            });
        }
    }

    handleCopy = async () => {
        try {
            if ('clipboard' in navigator) {
                await (navigator as any).clipboard.writeText(this.props.children);
                this.setState({ copied: true });
            } else {
                this.code.current.focus();
                this.code.current.select();
                document.execCommand('copy');
                this.setState({ copied: true });
            }
        } catch (error) {
            this.setState({ copied: false });
        }
    };

    render() {
        const { language, light, diff, children, gutterLength } = this.props;
        const { hlCode } = this.state;

        const Code = diff ? StyledCodeDiff : 'code';

        return (
            <Base language={language} diff={diff} light={light}>
                <StyledPre>
                    <Code
                        gutterLength={gutterLength}
                        dangerouslySetInnerHTML={hlCode ? { __html: this.state.hlCode } : null}
                    >
                        {hlCode === undefined ? children : null}
                    </Code>
                </StyledPre>
                {navigator.userAgent !== 'ReactSnap' ? <Button onClick={this.handleCopy}>Copy</Button> : null}
                {!('clipboard' in navigator) ? (
                    <CopyInput readOnly aria-hidden="true" ref={this.code} value={children} />
                ) : null}
            </Base>
        );
    }
}

export default Code;