142 lines
2.5 KiB
JavaScript
142 lines
2.5 KiB
JavaScript
import styled, { css, keyframes } from 'styled-components';
|
|
import Icon from '/imports/ui/components/common/icon/component';
|
|
import { headingsFontWeight } from '/imports/ui/stylesheets/styled-components/typography';
|
|
import {
|
|
colorDanger,
|
|
colorGray,
|
|
colorGrayDark,
|
|
colorSuccess,
|
|
colorGrayLightest,
|
|
colorPrimary,
|
|
colorWhite,
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
import {
|
|
borderSizeLarge,
|
|
lgPaddingX,
|
|
statusIconSize,
|
|
borderSize,
|
|
statusInfoHeight,
|
|
borderRadius,
|
|
mdPaddingY,
|
|
mdPaddingX,
|
|
} from '/imports/ui/stylesheets/styled-components/general';
|
|
|
|
const DropdownButton = styled.button`
|
|
background-color: ${colorGrayLightest};
|
|
border: none;
|
|
border-radius: 1px;
|
|
color: ${colorGrayDark};
|
|
cursor: pointer;
|
|
padding: .2rem .5rem;
|
|
|
|
&:hover, &:focus {
|
|
color: ${colorGray};
|
|
}
|
|
|
|
&:focus {
|
|
outline: ${colorGray} solid ${borderSize};
|
|
}
|
|
`;
|
|
|
|
const Right = styled.div`
|
|
cursor: pointer;
|
|
position: absolute;
|
|
left: auto;
|
|
top: ${borderSize};
|
|
right: ${borderSize};
|
|
z-index:999;
|
|
|
|
[dir="rtl"] & {
|
|
right: auto;
|
|
left : ${borderSize};
|
|
}
|
|
`;
|
|
|
|
const ToastText = styled.span`
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
position: relative;
|
|
top: ${borderSizeLarge};
|
|
width: auto;
|
|
font-weight: ${headingsFontWeight};
|
|
|
|
[dir="rtl"] & {
|
|
text-align: right;
|
|
}
|
|
`;
|
|
|
|
const StatusIcon = styled.span`
|
|
margin-left: auto;
|
|
|
|
[dir="rtl"] & {
|
|
margin-right: auto;
|
|
margin-left: 0;
|
|
}
|
|
|
|
& > i {
|
|
position: relative;
|
|
top: 1px;
|
|
height: ${statusIconSize};
|
|
width: ${statusIconSize};
|
|
}
|
|
`;
|
|
|
|
const rotate = keyframes`
|
|
0% { transform: rotate(0); }
|
|
100% { transform: rotate(360deg); }
|
|
`;
|
|
|
|
const ToastIcon = styled(Icon)`
|
|
position: relative;
|
|
width: ${statusIconSize};
|
|
height: ${statusIconSize};
|
|
font-size: 117%;
|
|
bottom: ${borderSize};
|
|
left: ${statusInfoHeight};
|
|
|
|
[dir="rtl"] & {
|
|
left: auto;
|
|
right: ${statusInfoHeight};
|
|
}
|
|
|
|
${({ done }) => done && `
|
|
color: ${colorSuccess};
|
|
`}
|
|
|
|
${({ error }) => error && `
|
|
color: ${colorDanger};
|
|
`}
|
|
|
|
${({ loading }) => loading && css`
|
|
color: ${colorGrayLightest};
|
|
border: 1px solid;
|
|
border-radius: 50%;
|
|
border-right-color: ${colorGray};
|
|
animation: ${rotate} 1s linear infinite;
|
|
`}
|
|
`;
|
|
|
|
const Line = styled.div`
|
|
display: flex;
|
|
width: 100%;
|
|
flex-wrap: nowrap;
|
|
padding: ${lgPaddingX} 0;
|
|
`;
|
|
|
|
const ButtonIcon = styled(Icon)`
|
|
width: 1em;
|
|
text-align: center;
|
|
`;
|
|
|
|
export default {
|
|
DropdownButton,
|
|
Right,
|
|
ToastText,
|
|
StatusIcon,
|
|
ToastIcon,
|
|
Line,
|
|
ButtonIcon,
|
|
};
|