misc_pterodactyl-panel/resources/scripts/components/elements/Spinner.tsx

49 lines
1.3 KiB
TypeScript
Raw Normal View History

import React from 'react';
2020-07-04 19:39:55 +00:00
import styled, { css, keyframes } from 'styled-components/macro';
import tw from 'twin.macro';
2020-07-04 19:39:55 +00:00
export type SpinnerSize = 'small' | 'base' | 'large';
2019-12-22 22:53:27 +00:00
interface Props {
size?: SpinnerSize;
centered?: boolean;
2020-07-04 19:39:55 +00:00
isBlue?: boolean;
2019-12-22 22:53:27 +00:00
}
2020-07-04 19:39:55 +00:00
const spin = keyframes`
to { transform: rotate(360deg); }
`;
// noinspection CssOverwrittenProperties
const SpinnerComponent = styled.div<Props>`
${tw`w-8 h-8`};
border-width: 3px;
border-radius: 50%;
animation: ${spin} 1s cubic-bezier(0.55, 0.25, 0.25, 0.70) infinite;
${props => props.size === 'small' ? tw`w-4 h-4 border-2` : (props.size === 'large' ? css`
${tw`w-16 h-16`};
border-width: 6px;
` : null)};
border-color: ${props => !props.isBlue ? 'rgba(255, 255, 255, 0.2)' : 'hsla(212, 92%, 43%, 0.2)'};
border-top-color: ${props => !props.isBlue ? 'rgb(255, 255, 255)' : 'hsl(212, 92%, 43%)'};
`;
const Spinner = ({ centered, ...props }: Props) => (
centered ?
2020-07-04 19:39:55 +00:00
<div
css={[
tw`flex justify-center`,
props.size === 'large' ? tw`m-20` : tw`m-6`,
]}
>
<SpinnerComponent {...props}/>
</div>
:
2020-07-04 19:39:55 +00:00
<SpinnerComponent {...props}/>
);
2020-07-04 19:39:55 +00:00
Spinner.DisplayName = 'Spinner';
2020-02-08 23:23:08 +00:00
export default Spinner;