Update Settings Modal
This commit is contained in:
parent
eb5cb2dee6
commit
add184d580
3 changed files with 116 additions and 84 deletions
|
@ -28,7 +28,7 @@ export const ItemList = styled.ul`
|
|||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
@media (max-width: 750px) {
|
||||
@media (max-width: 766px) {
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
}
|
||||
`;
|
||||
|
|
|
@ -5,14 +5,28 @@ import { Headline } from "./elements";
|
|||
import { IconButton } from "./icon";
|
||||
|
||||
const ModalContainer = styled.div`
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 10;
|
||||
padding: 1rem;
|
||||
|
||||
z-index: 1;
|
||||
|
||||
max-height: 100%;
|
||||
|
||||
overflow-y: auto;
|
||||
|
||||
box-sizing: border-box;
|
||||
border: 1px solid ${(props) => props.theme.mainColor};
|
||||
background-color: ${(props) => props.theme.backgroundColor};
|
||||
|
||||
padding: 1rem;
|
||||
|
||||
@media (max-width: 766px) {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
`;
|
||||
|
||||
const Text = styled.p`
|
||||
|
@ -32,6 +46,7 @@ const Text = styled.p`
|
|||
|
||||
const TitleContainer = styled.div`
|
||||
display: flex;
|
||||
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
|
@ -70,6 +85,18 @@ const Modal = ({
|
|||
|
||||
return (
|
||||
<>
|
||||
<ModalContainer hidden={modalHidden}>
|
||||
<TitleContainer>
|
||||
<Headline>{title}</Headline>
|
||||
<IconButton
|
||||
icon="close"
|
||||
testid="close-button"
|
||||
onClick={() => closeModal()}
|
||||
/>
|
||||
</TitleContainer>
|
||||
{children}
|
||||
</ModalContainer>
|
||||
|
||||
{element === "icon" && (
|
||||
<IconButton
|
||||
icon={icon ?? ""}
|
||||
|
@ -83,18 +110,6 @@ const Modal = ({
|
|||
{text}
|
||||
</Text>
|
||||
)}
|
||||
|
||||
<ModalContainer hidden={modalHidden}>
|
||||
<TitleContainer>
|
||||
<Headline>{title}</Headline>
|
||||
<IconButton
|
||||
icon="close"
|
||||
testid="close-button"
|
||||
onClick={() => closeModal()}
|
||||
/>
|
||||
</TitleContainer>
|
||||
{children}
|
||||
</ModalContainer>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -10,7 +10,9 @@ import { Button, SubHeadline } from "./elements";
|
|||
import Modal from "./modal";
|
||||
|
||||
export const FormContainer = styled.div`
|
||||
display: flex;
|
||||
display: inline-grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-gap: 0.5rem 1rem;
|
||||
margin-bottom: 1em;
|
||||
`;
|
||||
|
||||
|
@ -56,7 +58,6 @@ const Code = styled.p`
|
|||
`;
|
||||
|
||||
const ThemeHeader = styled.p`
|
||||
grid-column: 1 / 4;
|
||||
color: ${(props) => props.theme.accentColor};
|
||||
`;
|
||||
|
||||
|
@ -76,6 +77,16 @@ const ThemeSelect = styled(Select)`
|
|||
}
|
||||
`;
|
||||
|
||||
const ContentContainer = styled.div`
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
|
||||
@media (max-width: 766px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
`;
|
||||
|
||||
interface ISettingsProps {
|
||||
themes: Array<IThemeProps> | undefined;
|
||||
search: ISearchProps | undefined;
|
||||
|
@ -96,73 +107,79 @@ const Settings = ({ themes, search }: ISettingsProps) => {
|
|||
if (themes || search) {
|
||||
return (
|
||||
<Modal element="icon" icon="settings" title="Settings">
|
||||
{themes && (
|
||||
<Section>
|
||||
<SectionHeadline>Theme</SectionHeadline>
|
||||
<FormContainer>
|
||||
<div>
|
||||
<ThemeHeader>Light</ThemeHeader>
|
||||
<ThemeSelect
|
||||
items={themes}
|
||||
onChange={(theme: IThemeProps) => setNewLightTheme(theme)}
|
||||
current={currentLightTheme}
|
||||
testId="light"
|
||||
></ThemeSelect>
|
||||
</div>
|
||||
<div>
|
||||
<ThemeHeader>Dark</ThemeHeader>
|
||||
<ThemeSelect
|
||||
items={themes}
|
||||
onChange={(theme: IThemeProps) => setNewDarkTheme(theme)}
|
||||
current={currentDarkTheme}
|
||||
testId="dark"
|
||||
></ThemeSelect>
|
||||
</div>
|
||||
</FormContainer>
|
||||
<Button
|
||||
data-testid="button-submit"
|
||||
onClick={() => {
|
||||
if (newLightTheme) setTheme("light", newLightTheme);
|
||||
if (newDarkTheme) setTheme("dark", newDarkTheme);
|
||||
}}
|
||||
>
|
||||
Apply
|
||||
</Button>
|
||||
<Button
|
||||
data-testid="button-refresh"
|
||||
onClick={() => window.location.reload()}
|
||||
>
|
||||
Refresh
|
||||
</Button>
|
||||
</Section>
|
||||
)}
|
||||
{search && (
|
||||
<Section>
|
||||
<SectionHeadline>Search Providers</SectionHeadline>
|
||||
<>
|
||||
<Text>Default Search Provider</Text>
|
||||
<Code>{search.defaultProvider}</Code>
|
||||
</>
|
||||
<>
|
||||
{search.providers && (
|
||||
<Table>
|
||||
<tbody>
|
||||
<TableRow>
|
||||
<HeadCell>Search Provider</HeadCell>
|
||||
<HeadCell>Prefix</HeadCell>
|
||||
</TableRow>
|
||||
{search.providers.map(({ name, prefix }, index) => (
|
||||
<TableRow key={name + index}>
|
||||
<TableCell>{name}</TableCell>
|
||||
<TableCell>{prefix}</TableCell>
|
||||
<ContentContainer>
|
||||
{themes && (
|
||||
<Section>
|
||||
<SectionHeadline>Theme</SectionHeadline>
|
||||
<FormContainer>
|
||||
<div>
|
||||
<ThemeHeader>Light</ThemeHeader>
|
||||
<ThemeSelect
|
||||
items={themes}
|
||||
onChange={(theme: IThemeProps) => setNewLightTheme(theme)}
|
||||
current={currentLightTheme}
|
||||
testId="light"
|
||||
></ThemeSelect>
|
||||
</div>
|
||||
<div>
|
||||
<ThemeHeader>Dark</ThemeHeader>
|
||||
<ThemeSelect
|
||||
items={themes}
|
||||
onChange={(theme: IThemeProps) => setNewDarkTheme(theme)}
|
||||
current={currentDarkTheme}
|
||||
testId="dark"
|
||||
></ThemeSelect>
|
||||
</div>
|
||||
<div>
|
||||
<Button
|
||||
data-testid="button-submit"
|
||||
onClick={() => {
|
||||
if (newLightTheme) setTheme("light", newLightTheme);
|
||||
if (newDarkTheme) setTheme("dark", newDarkTheme);
|
||||
}}
|
||||
>
|
||||
Apply
|
||||
</Button>
|
||||
</div>
|
||||
<div>
|
||||
<Button
|
||||
data-testid="button-refresh"
|
||||
onClick={() => window.location.reload()}
|
||||
>
|
||||
Refresh
|
||||
</Button>
|
||||
</div>
|
||||
</FormContainer>
|
||||
</Section>
|
||||
)}
|
||||
{search && (
|
||||
<Section>
|
||||
<SectionHeadline>Search Providers</SectionHeadline>
|
||||
<>
|
||||
<Text>Default Search Provider</Text>
|
||||
<Code>{search.defaultProvider}</Code>
|
||||
</>
|
||||
<>
|
||||
{search.providers && (
|
||||
<Table>
|
||||
<tbody>
|
||||
<TableRow>
|
||||
<HeadCell>Search Provider</HeadCell>
|
||||
<HeadCell>Prefix</HeadCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</tbody>
|
||||
</Table>
|
||||
)}
|
||||
</>
|
||||
</Section>
|
||||
)}
|
||||
{search.providers.map(({ name, prefix }, index) => (
|
||||
<TableRow key={name + index}>
|
||||
<TableCell>{name}</TableCell>
|
||||
<TableCell>{prefix}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</tbody>
|
||||
</Table>
|
||||
)}
|
||||
</>
|
||||
</Section>
|
||||
)}
|
||||
</ContentContainer>
|
||||
</Modal>
|
||||
);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue