aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/style/media.ts
blob: 5a0cba668771c1ec74c430ef1fd0e5f536e988a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { InterpolationValue } from 'styled-components';

import { css } from './theme';

export enum ScreenWidths {
    Sm = 40,
    Md = 52,
    Lg = 64,
}

const generateMediaWrapper = (screenWidth: ScreenWidths) => (...args: any[]) => css`
    @media (max-width: ${screenWidth}em) {
        ${css.apply(css, args)};
    }
`;

export const media = {
    small: generateMediaWrapper(ScreenWidths.Sm),
    medium: generateMediaWrapper(ScreenWidths.Md),
    large: generateMediaWrapper(ScreenWidths.Lg),
};

/// media helper
export interface MediaChoice {
    sm: string;
    md?: string;
    lg?: string;
}
// TODO: handle string too
export const stylesForMedia = (choice: MediaChoice): InterpolationValue[] => {
    return media.small`width: ${choice.sm}`;
};