nexxtway/react-rainbow

View on GitHub
src/components/InternalDropdown/styled/index.js

Summary

Maintainability
C
1 day
Test Coverage
import styled from 'styled-components';
import attachThemeAttrs from '../../../styles/helpers/attachThemeAttrs';
import { FONT_SIZE_TEXT_LARGE } from '../../../styles/fontSizes';
import SearchIcon from '../icons/searchIcon';
import PrimitiveCheckbox from '../../PrimitiveCheckbox';
import StyledHeader from '../../Option/styled/header';
import BorderRadiusElement from '../../Structural/borderRadiusElement';

export const Dropdown = attachThemeAttrs(styled(BorderRadiusElement))`
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 0.75rem;
    background: ${props => props.palette.background.main};
    box-shadow: ${props => props.shadows.shadow_12};
    transition: opacity 0.1s linear, visibility 0.1s linear;

    &:focus,
    &:active {
        outline: none;
    }
`;

export const Ul = styled.ul`
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    overflow-y: auto;
    ${props =>
        props.showEmptyMessage &&
        `
        display: none;
    `}
`;

export const Arrow = attachThemeAttrs(styled.div)`
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 1rem;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: ${props => props.palette.background.main};
    cursor: pointer;

    &::after {
        content: '';
        position: absolute;
        display: block;
        left: 50%;
        pointer-events: none;
        width: 0.45rem;
        height: 0.45rem;
        border-style: solid;
        border-color: ${props => props.palette.border.main};
        transform: rotate(135deg);
    }

    ${props =>
        props.direction === 'up' &&
        `
            top: 0;
            margin-top: 0.2rem;

            &::after {
                border-width: 0 0 0.15em 0.15em;
                top: 40%;
            }
    `}

    ${props =>
        props.direction === 'down' &&
        `
            bottom: 0;
            margin-bottom: 0.2rem;

            &::after {
                border-width: 0.15em 0.15em 0 0;
            }
    `}
`;

export const UlContainer = styled.div`
    position: relative;
    padding: 1rem 0;
`;

export const SearchContainer = attachThemeAttrs(styled.div)`
    display: flex;
    align-items: center;
    border-bottom: 1px solid ${props => props.palette.border.divider};
`;

export const Icon = attachThemeAttrs(styled(SearchIcon))`
    width: 14px;
    height: 14px;
    margin-left: 12px;
    color: ${props => props.palette.border.main};
`;

export const StyledSearchIcon = attachThemeAttrs(styled(SearchIcon))`
    width: 32px;
    height: 32px;
    color: ${props => props.palette.border.main};
`;

export const InputSearch = attachThemeAttrs(styled.input)`
    font: inherit;
    background-color: transparent;
    border: 0;
    color: ${props => props.palette.text.main};
    caret-color: ${props => props.palette.brand.main} ;
    font-size: ${FONT_SIZE_TEXT_LARGE};
    margin: 0;
    line-height: 42px;
    height: 42px;
    width: 85%;
    padding: 0 0.5rem;

    :focus,
    :active {
        outline: 0;
        background-color: transparent;
        border: 0;
    }
`;

export const SpinnerContainer = attachThemeAttrs(styled.div)`    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.125rem 0;
`;

export const MessageContainer = attachThemeAttrs(styled.div)`    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 16px;
    `;

export const MessageDescription = attachThemeAttrs(styled.p)`
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
    color: ${props => props.palette.text.header};
    margin-top: 12px;
    word-wrap: break-word;
`;

export const MessageHighLight = attachThemeAttrs(styled.p)`
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    color: ${props => props.palette.text.main};
    word-wrap: break-word;
`;

export const StyledPrimitiveCheckbox = styled(PrimitiveCheckbox)`
    display: inline;
    margin-left: 4px;
    margin-right: 8px;
`;

export const StyledTopHeader = attachThemeAttrs(styled(StyledHeader))`
    position: sticky;
    top: 0;
    border-bottom: 1px solid ${props => props.palette.border.divider};
    background: ${props => props.palette.background.main};
    z-index: 1;
`;