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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
import * as React from 'react';
import styled, { ThemeProvider } from 'styled-components';
import { colors } from 'ts/style/colors';
import { Footer } from 'ts/@next/components/footer';
import { Header } from 'ts/@next/components/header';
import { GlobalStyles } from 'ts/@next/constants/globalStyle';
// Note(ez): We'll define the theme and provide it via a prop
// e.g. theme dark/light/etc.
interface Props {
theme?: 'dark' | 'light' | 'gray';
children: any;
}
// we proabbly want to put this somewhere else (themes)
export interface ThemeInterface {
[key: string]: {
bgColor: string;
textColor: string;
linkColor: string;
};
}
const GLOBAL_THEMES: ThemeInterface = {
dark: {
bgColor: '#000000',
darkBgColor: '#111A19',
lightBgColor: '#003831',
textColor: '#FFFFFF',
linkColor: colors.brandLight,
dropdownBg: '#111A19',
dropdownButtonBg: '#003831',
dropdownColor: '#FFFFFF',
headerButtonBg: '#00AE99',
footerBg: '#181818',
footerColor: '#FFFFFF',
},
light: {
bgColor: '#FFFFFF',
textColor: '#000000',
linkColor: colors.brandDark,
dropdownBg: '#FBFBFB',
dropdownButtonBg: '#F3F6F4',
dropdownColor: '#003831',
dropdownBorderColor: '#E4E4E4',
headerButtonBg: '#003831',
footerBg: '#F2F2F2',
footerColor: '#000000',
},
gray: {
bgColor: '#e0e0e0',
textColor: '#000000',
linkColor: colors.brandDark,
dropdownBg: '#FFFFFF',
dropdownButtonBg: '#F3F6F4',
dropdownColor: '#003831',
headerButtonBg: '#003831',
footerBg: '#181818',
footerColor: '#FFFFFF',
},
};
export const SiteWrap: React.StatelessComponent<Props> = props => {
const {
children,
theme = 'dark',
} = props;
const currentTheme = GLOBAL_THEMES[theme];
return (
<>
<ThemeProvider theme={currentTheme}>
<>
<GlobalStyles />
<Header />
<main>
{children}
</main>
<Footer/>
</>
</ThemeProvider>
</>
);
};
|