189 lines
3.3 KiB
JavaScript
189 lines
3.3 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 List = styled.ul`
|
||
|
list-style-type: none;
|
||
|
padding: ${mdPaddingY} ${borderSize};
|
||
|
margin: 0;
|
||
|
white-space: nowrap;
|
||
|
text-align: left;
|
||
|
|
||
|
[dir="rtl"] & {
|
||
|
text-align: right;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const ListItem = styled.li`
|
||
|
padding: ${mdPaddingY} ${mdPaddingX};
|
||
|
|
||
|
&:hover {
|
||
|
background-color: ${colorPrimary};
|
||
|
color: white;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const Dropdown = styled.div`
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 117%;
|
||
|
background-color: ${colorWhite};
|
||
|
z-index: 1000;
|
||
|
box-shadow: 0 0 10px 1px ${colorGrayLightest};
|
||
|
border-radius: ${borderRadius};
|
||
|
|
||
|
[dir="rtl"] & {
|
||
|
right: auto;
|
||
|
left: 0;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const ButtonIcon = styled(Icon)`
|
||
|
width: 1em;
|
||
|
text-align: center;
|
||
|
`;
|
||
|
|
||
|
const Overlay = styled.div`
|
||
|
position: fixed;
|
||
|
inset: 0;
|
||
|
z-index: 999;
|
||
|
cursor: auto;
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
DropdownButton,
|
||
|
Right,
|
||
|
ToastText,
|
||
|
StatusIcon,
|
||
|
ToastIcon,
|
||
|
Line,
|
||
|
List,
|
||
|
Dropdown,
|
||
|
ListItem,
|
||
|
ButtonIcon,
|
||
|
Overlay,
|
||
|
};
|