2018-05-16 12:44:36 +03:00
|
|
|
import { ComponentClass, StatelessComponent } from 'react';
|
2017-10-12 00:01:37 +03:00
|
|
|
import * as styledComponents from 'styled-components';
|
|
|
|
|
2018-06-29 23:49:53 +03:00
|
|
|
import { ResolvedThemeInterface, ThemeInterface } from './theme';
|
2017-10-12 00:01:37 +03:00
|
|
|
|
2018-05-16 12:44:36 +03:00
|
|
|
export { ResolvedThemeInterface };
|
|
|
|
|
|
|
|
export type InterpolationFunction<P> = styledComponents.InterpolationFunction<P>;
|
|
|
|
|
2018-03-16 18:02:31 +03:00
|
|
|
export type StyledFunction<T> = styledComponents.ThemedStyledFunction<T, ResolvedThemeInterface>;
|
2017-10-12 00:01:37 +03:00
|
|
|
|
|
|
|
function withProps<T, U extends HTMLElement = HTMLElement>(
|
|
|
|
styledFunction: StyledFunction<React.HTMLProps<U>>,
|
|
|
|
): StyledFunction<T & React.HTMLProps<U>> {
|
|
|
|
return styledFunction;
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
|
|
|
default: styled,
|
|
|
|
css,
|
|
|
|
injectGlobal,
|
|
|
|
keyframes,
|
|
|
|
ThemeProvider,
|
2018-05-18 15:10:16 +03:00
|
|
|
} = (styledComponents as any) as styledComponents.ThemedStyledComponentsModule<
|
|
|
|
ResolvedThemeInterface
|
|
|
|
>;
|
2017-10-12 00:01:37 +03:00
|
|
|
|
2018-01-30 16:35:18 +03:00
|
|
|
export const media = {
|
|
|
|
lessThan(breakpoint) {
|
|
|
|
return (...args) => css`
|
2018-02-25 13:13:42 +03:00
|
|
|
@media (max-width: ${props => props.theme.breakpoints[breakpoint]}) {
|
2018-01-30 16:35:18 +03:00
|
|
|
${(css as any)(...args)};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
},
|
|
|
|
|
|
|
|
greaterThan(breakpoint) {
|
|
|
|
return (...args) => css`
|
2018-02-25 13:13:42 +03:00
|
|
|
@media (min-width: ${props => props.theme.breakpoints[breakpoint]}) {
|
2018-01-30 16:35:18 +03:00
|
|
|
${(css as any)(...args)};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
},
|
|
|
|
|
|
|
|
between(firstBreakpoint, secondBreakpoint) {
|
|
|
|
return (...args) => css`
|
2018-03-16 18:02:31 +03:00
|
|
|
@media (min-width: ${props =>
|
|
|
|
props.theme.breakpoints[firstBreakpoint]}) and (max-width: ${props =>
|
|
|
|
props.theme.breakpoints[secondBreakpoint]}) {
|
2018-01-30 16:35:18 +03:00
|
|
|
${(css as any)(...args)};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-05-18 15:10:16 +03:00
|
|
|
export { css, injectGlobal, keyframes, ThemeProvider, withProps };
|
2018-03-18 12:13:08 +03:00
|
|
|
export { StyledComponentClass } from 'styled-components';
|
2017-10-12 00:01:37 +03:00
|
|
|
export default styled;
|
2018-06-29 23:49:53 +03:00
|
|
|
|
|
|
|
export function extensionsHook(styledName: string) {
|
|
|
|
return props => {
|
|
|
|
if (!props.theme.extensionsHook) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return props.theme.extensionsHook(styledName, props);
|
|
|
|
};
|
|
|
|
}
|