mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-21 09:11:29 +03:00
commit
446b4095f6
1
.dev/build_dev.sh
Normal file
1
.dev/build_dev.sh
Normal file
@ -0,0 +1 @@
|
|||||||
|
docker build -t flame:dev -f .docker/Dockerfile .
|
@ -1,2 +1,2 @@
|
|||||||
docker build -t pawelmalak/flame -t "pawelmalak/flame:$1" -f .docker/Dockerfile "$2" \
|
docker build -t pawelmalak/flame -t "pawelmalak/flame:$1" -f .docker/Dockerfile . \
|
||||||
&& docker push pawelmalak/flame && docker push "pawelmalak/flame:$1"
|
&& docker push pawelmalak/flame && docker push "pawelmalak/flame:$1"
|
@ -3,4 +3,4 @@ docker buildx build \
|
|||||||
-f .docker/Dockerfile.multiarch \
|
-f .docker/Dockerfile.multiarch \
|
||||||
-t pawelmalak/flame:multiarch \
|
-t pawelmalak/flame:multiarch \
|
||||||
-t "pawelmalak/flame:multiarch$1" \
|
-t "pawelmalak/flame:multiarch$1" \
|
||||||
--push "$2"
|
--push .
|
2
.env
2
.env
@ -1,5 +1,5 @@
|
|||||||
PORT=5005
|
PORT=5005
|
||||||
NODE_ENV=development
|
NODE_ENV=development
|
||||||
VERSION=2.2.2
|
VERSION=2.3.0
|
||||||
PASSWORD=flame_password
|
PASSWORD=flame_password
|
||||||
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
@ -1,3 +1,10 @@
|
|||||||
|
### v2.3.0 (2022-03-25)
|
||||||
|
- Added custom theme editor ([#246](https://github.com/pawelmalak/flame/issues/246))
|
||||||
|
- Added option to set secondary search provider ([#295](https://github.com/pawelmalak/flame/issues/295))
|
||||||
|
- Fixed bug where pressing Enter with empty search bar would redirect to search results ([#325](https://github.com/pawelmalak/flame/issues/325))
|
||||||
|
- Fixed bug where user could create empty app or bookmark which was causing page to go blank ([#332](https://github.com/pawelmalak/flame/issues/332))
|
||||||
|
- Added new theme: Mint
|
||||||
|
|
||||||
### v2.2.2 (2022-03-21)
|
### v2.2.2 (2022-03-21)
|
||||||
- Added option to get user location directly from the app ([#287](https://github.com/pawelmalak/flame/issues/287))
|
- Added option to get user location directly from the app ([#287](https://github.com/pawelmalak/flame/issues/287))
|
||||||
- Fixed bug with local search not working when using prefix ([#289](https://github.com/pawelmalak/flame/issues/289))
|
- Fixed bug with local search not working when using prefix ([#289](https://github.com/pawelmalak/flame/issues/289))
|
||||||
|
@ -11,7 +11,7 @@ Flame is self-hosted startpage for your server. Its design is inspired (heavily)
|
|||||||
- 📌 Pin your favourite items to the homescreen for quick and easy access
|
- 📌 Pin your favourite items to the homescreen for quick and easy access
|
||||||
- 🔍 Integrated search bar with local filtering, 11 web search providers and ability to add your own
|
- 🔍 Integrated search bar with local filtering, 11 web search providers and ability to add your own
|
||||||
- 🔑 Authentication system to protect your settings, apps and bookmarks
|
- 🔑 Authentication system to protect your settings, apps and bookmarks
|
||||||
- 🔨 Dozens of options to customize Flame interface to your needs, including support for custom CSS and 15 built-in color themes
|
- 🔨 Dozens of options to customize Flame interface to your needs, including support for custom CSS, 15 built-in color themes and custom theme builder
|
||||||
- ☀️ Weather widget with current temperature, cloud coverage and animated weather status
|
- ☀️ Weather widget with current temperature, cloud coverage and animated weather status
|
||||||
- 🐳 Docker integration to automatically pick and add apps based on their labels
|
- 🐳 Docker integration to automatically pick and add apps based on their labels
|
||||||
|
|
||||||
|
1
api.js
1
api.js
@ -22,6 +22,7 @@ api.use('/api/categories', require('./routes/category'));
|
|||||||
api.use('/api/bookmarks', require('./routes/bookmark'));
|
api.use('/api/bookmarks', require('./routes/bookmark'));
|
||||||
api.use('/api/queries', require('./routes/queries'));
|
api.use('/api/queries', require('./routes/queries'));
|
||||||
api.use('/api/auth', require('./routes/auth'));
|
api.use('/api/auth', require('./routes/auth'));
|
||||||
|
api.use('/api/themes', require('./routes/themes'));
|
||||||
|
|
||||||
// Custom error handler
|
// Custom error handler
|
||||||
api.use(errorHandler);
|
api.use(errorHandler);
|
||||||
|
@ -1 +1 @@
|
|||||||
REACT_APP_VERSION=2.2.2
|
REACT_APP_VERSION=2.3.0
|
@ -10,7 +10,7 @@ import { actionCreators, store } from './store';
|
|||||||
import { State } from './store/reducers';
|
import { State } from './store/reducers';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { checkVersion, decodeToken } from './utility';
|
import { checkVersion, decodeToken, parsePABToTheme } from './utility';
|
||||||
|
|
||||||
// Routes
|
// Routes
|
||||||
import { Home } from './components/Home/Home';
|
import { Home } from './components/Home/Home';
|
||||||
@ -31,7 +31,7 @@ export const App = (): JSX.Element => {
|
|||||||
const { config, loading } = useSelector((state: State) => state.config);
|
const { config, loading } = useSelector((state: State) => state.config);
|
||||||
|
|
||||||
const dispath = useDispatch();
|
const dispath = useDispatch();
|
||||||
const { fetchQueries, setTheme, logout, createNotification } =
|
const { fetchQueries, setTheme, logout, createNotification, fetchThemes } =
|
||||||
bindActionCreators(actionCreators, dispath);
|
bindActionCreators(actionCreators, dispath);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -51,9 +51,12 @@ export const App = (): JSX.Element => {
|
|||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
|
// load themes
|
||||||
|
fetchThemes();
|
||||||
|
|
||||||
// set user theme if present
|
// set user theme if present
|
||||||
if (localStorage.theme) {
|
if (localStorage.theme) {
|
||||||
setTheme(localStorage.theme);
|
setTheme(parsePABToTheme(localStorage.theme));
|
||||||
}
|
}
|
||||||
|
|
||||||
// check for updated
|
// check for updated
|
||||||
@ -68,7 +71,7 @@ export const App = (): JSX.Element => {
|
|||||||
// If there is no user theme, set the default one
|
// If there is no user theme, set the default one
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!loading && !localStorage.theme) {
|
if (!loading && !localStorage.theme) {
|
||||||
setTheme(config.defaultTheme, false);
|
setTheme(parsePABToTheme(config.defaultTheme), false);
|
||||||
}
|
}
|
||||||
}, [loading]);
|
}, [loading]);
|
||||||
|
|
||||||
|
@ -18,10 +18,8 @@ export const AppForm = ({ modalHandler }: Props): JSX.Element => {
|
|||||||
const { appInUpdate } = useSelector((state: State) => state.apps);
|
const { appInUpdate } = useSelector((state: State) => state.apps);
|
||||||
|
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const { addApp, updateApp, setEditApp } = bindActionCreators(
|
const { addApp, updateApp, setEditApp, createNotification } =
|
||||||
actionCreators,
|
bindActionCreators(actionCreators, dispatch);
|
||||||
dispatch
|
|
||||||
);
|
|
||||||
|
|
||||||
const [useCustomIcon, toggleUseCustomIcon] = useState<boolean>(false);
|
const [useCustomIcon, toggleUseCustomIcon] = useState<boolean>(false);
|
||||||
const [customIcon, setCustomIcon] = useState<File | null>(null);
|
const [customIcon, setCustomIcon] = useState<File | null>(null);
|
||||||
@ -58,6 +56,17 @@ export const AppForm = ({ modalHandler }: Props): JSX.Element => {
|
|||||||
const formSubmitHandler = (e: SyntheticEvent<HTMLFormElement>): void => {
|
const formSubmitHandler = (e: SyntheticEvent<HTMLFormElement>): void => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
for (let field of ['name', 'url', 'icon'] as const) {
|
||||||
|
if (/^ +$/.test(formData[field])) {
|
||||||
|
createNotification({
|
||||||
|
title: 'Error',
|
||||||
|
message: `Field cannot be empty: ${field}`,
|
||||||
|
});
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const createFormData = (): FormData => {
|
const createFormData = (): FormData => {
|
||||||
const data = new FormData();
|
const data = new FormData();
|
||||||
|
|
||||||
|
@ -69,6 +69,17 @@ export const BookmarksForm = ({
|
|||||||
const formSubmitHandler = (e: FormEvent): void => {
|
const formSubmitHandler = (e: FormEvent): void => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
for (let field of ['name', 'url', 'icon'] as const) {
|
||||||
|
if (/^ +$/.test(formData[field])) {
|
||||||
|
createNotification({
|
||||||
|
title: 'Error',
|
||||||
|
message: `Field cannot be empty: ${field}`,
|
||||||
|
});
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const createFormData = (): FormData => {
|
const createFormData = (): FormData => {
|
||||||
const data = new FormData();
|
const data = new FormData();
|
||||||
if (customIcon) {
|
if (customIcon) {
|
||||||
|
@ -64,16 +64,22 @@ export const SearchBar = (props: Props): JSX.Element => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const searchHandler = (e: KeyboardEvent<HTMLInputElement>) => {
|
const searchHandler = (e: KeyboardEvent<HTMLInputElement>) => {
|
||||||
const { isLocal, search, query, isURL, sameTab } = searchParser(
|
const {
|
||||||
inputRef.current.value
|
isLocal,
|
||||||
);
|
encodedURL,
|
||||||
|
primarySearch,
|
||||||
|
secondarySearch,
|
||||||
|
isURL,
|
||||||
|
sameTab,
|
||||||
|
rawQuery,
|
||||||
|
} = searchParser(inputRef.current.value);
|
||||||
|
|
||||||
if (isLocal) {
|
if (isLocal) {
|
||||||
setLocalSearch(search);
|
setLocalSearch(encodedURL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e.code === 'Enter' || e.code === 'NumpadEnter') {
|
if (e.code === 'Enter' || e.code === 'NumpadEnter') {
|
||||||
if (!query.prefix) {
|
if (!primarySearch.prefix) {
|
||||||
// Prefix not found -> emit notification
|
// Prefix not found -> emit notification
|
||||||
createNotification({
|
createNotification({
|
||||||
title: 'Error',
|
title: 'Error',
|
||||||
@ -90,19 +96,21 @@ export const SearchBar = (props: Props): JSX.Element => {
|
|||||||
} else if (bookmarkSearchResult?.[0]?.bookmarks?.length) {
|
} else if (bookmarkSearchResult?.[0]?.bookmarks?.length) {
|
||||||
redirectUrl(bookmarkSearchResult[0].bookmarks[0].url, sameTab);
|
redirectUrl(bookmarkSearchResult[0].bookmarks[0].url, sameTab);
|
||||||
} else {
|
} else {
|
||||||
// no local results -> search the internet with the default search provider
|
// no local results -> search the internet with the default search provider if query is not empty
|
||||||
let template = query.template;
|
if (!/^ *$/.test(rawQuery)) {
|
||||||
|
let template = primarySearch.template;
|
||||||
|
|
||||||
if (query.prefix === 'l') {
|
if (primarySearch.prefix === 'l') {
|
||||||
template = 'https://duckduckgo.com/?q=';
|
template = secondarySearch.template;
|
||||||
}
|
}
|
||||||
|
|
||||||
const url = `${template}${search}`;
|
const url = `${template}${encodedURL}`;
|
||||||
redirectUrl(url, sameTab);
|
redirectUrl(url, sameTab);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Valid query -> redirect to search results
|
// Valid query -> redirect to search results
|
||||||
const url = `${query.template}${search}`;
|
const url = `${primarySearch.template}${encodedURL}`;
|
||||||
redirectUrl(url, sameTab);
|
redirectUrl(url, sameTab);
|
||||||
}
|
}
|
||||||
} else if (e.code === 'Escape') {
|
} else if (e.code === 'Escape') {
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
.QueriesGrid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.QueriesGrid span {
|
|
||||||
color: var(--color-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.QueriesGrid span:last-child {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ActionIcons {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ActionIcons svg {
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ActionIcons svg:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Separator {
|
|
||||||
grid-column: 1 / 4;
|
|
||||||
border-bottom: 1px solid var(--color-primary);
|
|
||||||
margin: 10px 0;
|
|
||||||
}
|
|
@ -9,11 +9,8 @@ import { actionCreators } from '../../../../store';
|
|||||||
// Typescript
|
// Typescript
|
||||||
import { Query } from '../../../../interfaces';
|
import { Query } from '../../../../interfaces';
|
||||||
|
|
||||||
// CSS
|
|
||||||
import classes from './CustomQueries.module.css';
|
|
||||||
|
|
||||||
// UI
|
// UI
|
||||||
import { Modal, Icon, Button } from '../../../UI';
|
import { Modal, Icon, Button, CompactTable, ActionIcons } from '../../../UI';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { QueriesForm } from './QueriesForm';
|
import { QueriesForm } from './QueriesForm';
|
||||||
@ -67,33 +64,27 @@ export const CustomQueries = (): JSX.Element => {
|
|||||||
)}
|
)}
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
||||||
<div>
|
<section>
|
||||||
<div className={classes.QueriesGrid}>
|
{customQueries.length ? (
|
||||||
{customQueries.length > 0 && (
|
<CompactTable headers={['Name', 'Prefix', 'Actions']}>
|
||||||
<Fragment>
|
|
||||||
<span>Name</span>
|
|
||||||
<span>Prefix</span>
|
|
||||||
<span>Actions</span>
|
|
||||||
|
|
||||||
<div className={classes.Separator}></div>
|
|
||||||
</Fragment>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{customQueries.map((q: Query, idx) => (
|
{customQueries.map((q: Query, idx) => (
|
||||||
<Fragment key={idx}>
|
<Fragment key={idx}>
|
||||||
<span>{q.name}</span>
|
<span>{q.name}</span>
|
||||||
<span>{q.prefix}</span>
|
<span>{q.prefix}</span>
|
||||||
<span className={classes.ActionIcons}>
|
<ActionIcons>
|
||||||
<span onClick={() => updateHandler(q)}>
|
<span onClick={() => updateHandler(q)}>
|
||||||
<Icon icon="mdiPencil" />
|
<Icon icon="mdiPencil" />
|
||||||
</span>
|
</span>
|
||||||
<span onClick={() => deleteHandler(q)}>
|
<span onClick={() => deleteHandler(q)}>
|
||||||
<Icon icon="mdiDelete" />
|
<Icon icon="mdiDelete" />
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</ActionIcons>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
))}
|
))}
|
||||||
</div>
|
</CompactTable>
|
||||||
|
) : (
|
||||||
|
<></>
|
||||||
|
)}
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
click={() => {
|
click={() => {
|
||||||
@ -103,7 +94,7 @@ export const CustomQueries = (): JSX.Element => {
|
|||||||
>
|
>
|
||||||
Add new search provider
|
Add new search provider
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</section>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -164,10 +164,10 @@ export const GeneralSettings = (): JSX.Element => {
|
|||||||
</select>
|
</select>
|
||||||
</InputGroup>
|
</InputGroup>
|
||||||
|
|
||||||
{/* SEARCH SETTINGS */}
|
{/* === SEARCH OPTIONS === */}
|
||||||
<SettingsHeadline text="Search" />
|
<SettingsHeadline text="Search" />
|
||||||
<InputGroup>
|
<InputGroup>
|
||||||
<label htmlFor="defaultSearchProvider">Default search provider</label>
|
<label htmlFor="defaultSearchProvider">Primary search provider</label>
|
||||||
<select
|
<select
|
||||||
id="defaultSearchProvider"
|
id="defaultSearchProvider"
|
||||||
name="defaultSearchProvider"
|
name="defaultSearchProvider"
|
||||||
@ -186,6 +186,34 @@ export const GeneralSettings = (): JSX.Element => {
|
|||||||
</select>
|
</select>
|
||||||
</InputGroup>
|
</InputGroup>
|
||||||
|
|
||||||
|
{formData.defaultSearchProvider === 'l' && (
|
||||||
|
<InputGroup>
|
||||||
|
<label htmlFor="secondarySearchProvider">
|
||||||
|
Secondary search provider
|
||||||
|
</label>
|
||||||
|
<select
|
||||||
|
id="secondarySearchProvider"
|
||||||
|
name="secondarySearchProvider"
|
||||||
|
value={formData.secondarySearchProvider}
|
||||||
|
onChange={(e) => inputChangeHandler(e)}
|
||||||
|
>
|
||||||
|
{[...queries, ...customQueries].map((query: Query, idx) => {
|
||||||
|
const isCustom = idx >= queries.length;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<option key={idx} value={query.prefix}>
|
||||||
|
{isCustom && '+'} {query.name}
|
||||||
|
</option>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</select>
|
||||||
|
<span>
|
||||||
|
Will be used when "Local search" is primary search provider and
|
||||||
|
there are not any local results
|
||||||
|
</span>
|
||||||
|
</InputGroup>
|
||||||
|
)}
|
||||||
|
|
||||||
<InputGroup>
|
<InputGroup>
|
||||||
<label htmlFor="searchSameTab">
|
<label htmlFor="searchSameTab">
|
||||||
Open search results in the same tab
|
Open search results in the same tab
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
.ThemeBuilder {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Buttons button:not(:last-child) {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
@ -0,0 +1,95 @@
|
|||||||
|
import { useState, useEffect } from 'react';
|
||||||
|
|
||||||
|
// Redux
|
||||||
|
import { useSelector, useDispatch } from 'react-redux';
|
||||||
|
import { bindActionCreators } from 'redux';
|
||||||
|
import { actionCreators } from '../../../../store';
|
||||||
|
import { State } from '../../../../store/reducers';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import { Theme } from '../../../../interfaces';
|
||||||
|
|
||||||
|
// UI
|
||||||
|
import { Button, Modal } from '../../../UI';
|
||||||
|
import { ThemeGrid } from '../ThemeGrid/ThemeGrid';
|
||||||
|
import classes from './ThemeBuilder.module.css';
|
||||||
|
import { ThemeCreator } from './ThemeCreator';
|
||||||
|
import { ThemeEditor } from './ThemeEditor';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
themes: Theme[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThemeBuilder = ({ themes }: Props): JSX.Element => {
|
||||||
|
const {
|
||||||
|
auth: { isAuthenticated },
|
||||||
|
theme: { themeInEdit, userThemes },
|
||||||
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
|
const { editTheme } = bindActionCreators(actionCreators, useDispatch());
|
||||||
|
|
||||||
|
const [showModal, toggleShowModal] = useState(false);
|
||||||
|
const [isInEdit, toggleIsInEdit] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (themeInEdit) {
|
||||||
|
toggleIsInEdit(false);
|
||||||
|
toggleShowModal(true);
|
||||||
|
}
|
||||||
|
}, [themeInEdit]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isInEdit && !userThemes.length) {
|
||||||
|
toggleIsInEdit(false);
|
||||||
|
toggleShowModal(false);
|
||||||
|
}
|
||||||
|
}, [userThemes]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={classes.ThemeBuilder}>
|
||||||
|
{/* MODALS */}
|
||||||
|
<Modal
|
||||||
|
isOpen={showModal}
|
||||||
|
setIsOpen={() => toggleShowModal(!showModal)}
|
||||||
|
cb={() => editTheme(null)}
|
||||||
|
>
|
||||||
|
{isInEdit ? (
|
||||||
|
<ThemeEditor modalHandler={() => toggleShowModal(!showModal)} />
|
||||||
|
) : (
|
||||||
|
<ThemeCreator modalHandler={() => toggleShowModal(!showModal)} />
|
||||||
|
)}
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
{/* USER THEMES */}
|
||||||
|
<ThemeGrid themes={themes} />
|
||||||
|
|
||||||
|
{/* BUTTONS */}
|
||||||
|
{isAuthenticated && (
|
||||||
|
<div className={classes.Buttons}>
|
||||||
|
<Button
|
||||||
|
click={() => {
|
||||||
|
editTheme(null);
|
||||||
|
toggleIsInEdit(false);
|
||||||
|
toggleShowModal(!showModal);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Create new theme
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{themes.length ? (
|
||||||
|
<Button
|
||||||
|
click={() => {
|
||||||
|
toggleIsInEdit(true);
|
||||||
|
toggleShowModal(!showModal);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Edit user themes
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<></>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
@ -0,0 +1,6 @@
|
|||||||
|
.ColorsContainer {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-gap: 10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
@ -0,0 +1,152 @@
|
|||||||
|
import { ChangeEvent, FormEvent, useState, useEffect } from 'react';
|
||||||
|
|
||||||
|
// Redux
|
||||||
|
import { useDispatch, useSelector } from 'react-redux';
|
||||||
|
import { bindActionCreators } from 'redux';
|
||||||
|
import { actionCreators } from '../../../../store';
|
||||||
|
import { State } from '../../../../store/reducers';
|
||||||
|
|
||||||
|
// UI
|
||||||
|
import { Button, InputGroup, ModalForm } from '../../../UI';
|
||||||
|
import classes from './ThemeCreator.module.css';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import { Theme } from '../../../../interfaces';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
modalHandler: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThemeCreator = ({ modalHandler }: Props): JSX.Element => {
|
||||||
|
const {
|
||||||
|
theme: { activeTheme, themeInEdit },
|
||||||
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
|
const { addTheme, updateTheme, editTheme } = bindActionCreators(
|
||||||
|
actionCreators,
|
||||||
|
useDispatch()
|
||||||
|
);
|
||||||
|
|
||||||
|
const [formData, setFormData] = useState<Theme>({
|
||||||
|
name: '',
|
||||||
|
isCustom: true,
|
||||||
|
colors: {
|
||||||
|
primary: '#ffffff',
|
||||||
|
accent: '#ffffff',
|
||||||
|
background: '#ffffff',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setFormData({ ...formData, colors: activeTheme.colors });
|
||||||
|
}, [activeTheme]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (themeInEdit) {
|
||||||
|
setFormData(themeInEdit);
|
||||||
|
}
|
||||||
|
}, [themeInEdit]);
|
||||||
|
|
||||||
|
const inputChangeHandler = (e: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const { name, value } = e.target;
|
||||||
|
|
||||||
|
setFormData({
|
||||||
|
...formData,
|
||||||
|
[name]: value,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const setColor = ({
|
||||||
|
target: { value, name },
|
||||||
|
}: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
setFormData({
|
||||||
|
...formData,
|
||||||
|
colors: {
|
||||||
|
...formData.colors,
|
||||||
|
[name]: value,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const closeModal = () => {
|
||||||
|
editTheme(null);
|
||||||
|
modalHandler();
|
||||||
|
};
|
||||||
|
|
||||||
|
const formHandler = (e: FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
if (!themeInEdit) {
|
||||||
|
addTheme(formData);
|
||||||
|
} else {
|
||||||
|
updateTheme(formData, themeInEdit.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
// close modal
|
||||||
|
closeModal();
|
||||||
|
|
||||||
|
// clear theme name
|
||||||
|
setFormData({ ...formData, name: '' });
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ModalForm formHandler={formHandler} modalHandler={closeModal}>
|
||||||
|
<InputGroup>
|
||||||
|
<label htmlFor="name">Theme name</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="name"
|
||||||
|
id="name"
|
||||||
|
placeholder="my_theme"
|
||||||
|
required
|
||||||
|
value={formData.name}
|
||||||
|
onChange={(e) => inputChangeHandler(e)}
|
||||||
|
/>
|
||||||
|
</InputGroup>
|
||||||
|
|
||||||
|
<div className={classes.ColorsContainer}>
|
||||||
|
<InputGroup>
|
||||||
|
<label htmlFor="primary">Primary color</label>
|
||||||
|
<input
|
||||||
|
type="color"
|
||||||
|
name="primary"
|
||||||
|
id="primary"
|
||||||
|
required
|
||||||
|
value={formData.colors.primary}
|
||||||
|
onChange={(e) => setColor(e)}
|
||||||
|
/>
|
||||||
|
</InputGroup>
|
||||||
|
|
||||||
|
<InputGroup>
|
||||||
|
<label htmlFor="accent">Accent color</label>
|
||||||
|
<input
|
||||||
|
type="color"
|
||||||
|
name="accent"
|
||||||
|
id="accent"
|
||||||
|
required
|
||||||
|
value={formData.colors.accent}
|
||||||
|
onChange={(e) => setColor(e)}
|
||||||
|
/>
|
||||||
|
</InputGroup>
|
||||||
|
|
||||||
|
<InputGroup>
|
||||||
|
<label htmlFor="background">Background color</label>
|
||||||
|
<input
|
||||||
|
type="color"
|
||||||
|
name="background"
|
||||||
|
id="background"
|
||||||
|
required
|
||||||
|
value={formData.colors.background}
|
||||||
|
onChange={(e) => setColor(e)}
|
||||||
|
/>
|
||||||
|
</InputGroup>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{!themeInEdit ? (
|
||||||
|
<Button>Add theme</Button>
|
||||||
|
) : (
|
||||||
|
<Button>Update theme</Button>
|
||||||
|
)}
|
||||||
|
</ModalForm>
|
||||||
|
);
|
||||||
|
};
|
@ -0,0 +1,57 @@
|
|||||||
|
import { Fragment } from 'react';
|
||||||
|
|
||||||
|
// Redux
|
||||||
|
import { useSelector, useDispatch } from 'react-redux';
|
||||||
|
import { bindActionCreators } from 'redux';
|
||||||
|
import { Theme } from '../../../../interfaces';
|
||||||
|
import { actionCreators } from '../../../../store';
|
||||||
|
import { State } from '../../../../store/reducers';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import { ActionIcons, CompactTable, Icon, ModalForm } from '../../../UI';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
modalHandler: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThemeEditor = (props: Props): JSX.Element => {
|
||||||
|
const {
|
||||||
|
theme: { userThemes },
|
||||||
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
|
const { deleteTheme, editTheme } = bindActionCreators(
|
||||||
|
actionCreators,
|
||||||
|
useDispatch()
|
||||||
|
);
|
||||||
|
|
||||||
|
const updateHandler = (theme: Theme) => {
|
||||||
|
props.modalHandler();
|
||||||
|
editTheme(theme);
|
||||||
|
};
|
||||||
|
|
||||||
|
const deleteHandler = (theme: Theme) => {
|
||||||
|
if (window.confirm(`Are you sure you want to delete this theme?`)) {
|
||||||
|
deleteTheme(theme.name);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ModalForm formHandler={() => {}} modalHandler={props.modalHandler}>
|
||||||
|
<CompactTable headers={['Name', 'Actions']}>
|
||||||
|
{userThemes.map((t, idx) => (
|
||||||
|
<Fragment key={idx}>
|
||||||
|
<span>{t.name}</span>
|
||||||
|
<ActionIcons>
|
||||||
|
<span onClick={() => updateHandler(t)}>
|
||||||
|
<Icon icon="mdiPencil" />
|
||||||
|
</span>
|
||||||
|
<span onClick={() => deleteHandler(t)}>
|
||||||
|
<Icon icon="mdiDelete" />
|
||||||
|
</span>
|
||||||
|
</ActionIcons>
|
||||||
|
</Fragment>
|
||||||
|
))}
|
||||||
|
</CompactTable>
|
||||||
|
</ModalForm>
|
||||||
|
);
|
||||||
|
};
|
@ -0,0 +1,22 @@
|
|||||||
|
// Components
|
||||||
|
import { ThemePreview } from '../ThemePreview/ThemePreview';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import { Theme } from '../../../../interfaces';
|
||||||
|
import classes from './ThemeGrid.module.css';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
themes: Theme[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThemeGrid = ({ themes }: Props): JSX.Element => {
|
||||||
|
return (
|
||||||
|
<div className={classes.ThemerGrid}>
|
||||||
|
{themes.map(
|
||||||
|
(theme: Theme, idx: number): JSX.Element => (
|
||||||
|
<ThemePreview key={idx} theme={theme} />
|
||||||
|
)
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
@ -1,32 +0,0 @@
|
|||||||
import { Theme } from '../../../interfaces/Theme';
|
|
||||||
import classes from './ThemePreview.module.css';
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
theme: Theme;
|
|
||||||
applyTheme: Function;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ThemePreview = (props: Props): JSX.Element => {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={classes.ThemePreview}
|
|
||||||
onClick={() => props.applyTheme(props.theme.name)}
|
|
||||||
>
|
|
||||||
<div className={classes.ColorsPreview}>
|
|
||||||
<div
|
|
||||||
className={classes.ColorPreview}
|
|
||||||
style={{ backgroundColor: props.theme.colors.background }}
|
|
||||||
></div>
|
|
||||||
<div
|
|
||||||
className={classes.ColorPreview}
|
|
||||||
style={{ backgroundColor: props.theme.colors.primary }}
|
|
||||||
></div>
|
|
||||||
<div
|
|
||||||
className={classes.ColorPreview}
|
|
||||||
style={{ backgroundColor: props.theme.colors.accent }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
<p>{props.theme.name}</p>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
@ -0,0 +1,38 @@
|
|||||||
|
// Redux
|
||||||
|
import { useDispatch } from 'react-redux';
|
||||||
|
import { bindActionCreators } from 'redux';
|
||||||
|
import { actionCreators } from '../../../../store';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import { Theme } from '../../../../interfaces/Theme';
|
||||||
|
import classes from './ThemePreview.module.css';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
theme: Theme;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThemePreview = ({
|
||||||
|
theme: { colors, name },
|
||||||
|
}: Props): JSX.Element => {
|
||||||
|
const { setTheme } = bindActionCreators(actionCreators, useDispatch());
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={classes.ThemePreview} onClick={() => setTheme(colors)}>
|
||||||
|
<div className={classes.ColorsPreview}>
|
||||||
|
<div
|
||||||
|
className={classes.ColorPreview}
|
||||||
|
style={{ backgroundColor: colors.background }}
|
||||||
|
></div>
|
||||||
|
<div
|
||||||
|
className={classes.ColorPreview}
|
||||||
|
style={{ backgroundColor: colors.primary }}
|
||||||
|
></div>
|
||||||
|
<div
|
||||||
|
className={classes.ColorPreview}
|
||||||
|
style={{ backgroundColor: colors.accent }}
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
<p>{name}</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
@ -4,31 +4,32 @@ import { ChangeEvent, FormEvent, Fragment, useEffect, useState } from 'react';
|
|||||||
import { useDispatch, useSelector } from 'react-redux';
|
import { useDispatch, useSelector } from 'react-redux';
|
||||||
import { bindActionCreators } from 'redux';
|
import { bindActionCreators } from 'redux';
|
||||||
import { actionCreators } from '../../../store';
|
import { actionCreators } from '../../../store';
|
||||||
|
import { State } from '../../../store/reducers';
|
||||||
|
|
||||||
// Typescript
|
// Typescript
|
||||||
import { Theme, ThemeSettingsForm } from '../../../interfaces';
|
import { Theme, ThemeSettingsForm } from '../../../interfaces';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { ThemePreview } from './ThemePreview';
|
import { Button, InputGroup, SettingsHeadline, Spinner } from '../../UI';
|
||||||
import { Button, InputGroup, SettingsHeadline } from '../../UI';
|
import { ThemeBuilder } from './ThemeBuilder/ThemeBuilder';
|
||||||
|
import { ThemeGrid } from './ThemeGrid/ThemeGrid';
|
||||||
|
|
||||||
// Other
|
// Other
|
||||||
import classes from './Themer.module.css';
|
import {
|
||||||
import { themes } from './themes.json';
|
inputHandler,
|
||||||
import { State } from '../../../store/reducers';
|
parseThemeToPAB,
|
||||||
import { inputHandler, themeSettingsTemplate } from '../../../utility';
|
themeSettingsTemplate,
|
||||||
|
} from '../../../utility';
|
||||||
|
|
||||||
export const Themer = (): JSX.Element => {
|
export const Themer = (): JSX.Element => {
|
||||||
const {
|
const {
|
||||||
auth: { isAuthenticated },
|
auth: { isAuthenticated },
|
||||||
config: { loading, config },
|
config: { loading, config },
|
||||||
|
theme: { themes, userThemes },
|
||||||
} = useSelector((state: State) => state);
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const { setTheme, updateConfig } = bindActionCreators(
|
const { updateConfig } = bindActionCreators(actionCreators, dispatch);
|
||||||
actionCreators,
|
|
||||||
dispatch
|
|
||||||
);
|
|
||||||
|
|
||||||
// Initial state
|
// Initial state
|
||||||
const [formData, setFormData] = useState<ThemeSettingsForm>(
|
const [formData, setFormData] = useState<ThemeSettingsForm>(
|
||||||
@ -47,7 +48,7 @@ export const Themer = (): JSX.Element => {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
// Save settings
|
// Save settings
|
||||||
await updateConfig(formData);
|
await updateConfig({ ...formData });
|
||||||
};
|
};
|
||||||
|
|
||||||
// Input handler
|
// Input handler
|
||||||
@ -63,31 +64,34 @@ export const Themer = (): JSX.Element => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const customThemesEl = (
|
||||||
|
<Fragment>
|
||||||
|
<SettingsHeadline text="User themes" />
|
||||||
|
<ThemeBuilder themes={userThemes} />
|
||||||
|
</Fragment>
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<SettingsHeadline text="Set theme" />
|
<SettingsHeadline text="App themes" />
|
||||||
<div className={classes.ThemerGrid}>
|
{!themes.length ? <Spinner /> : <ThemeGrid themes={themes} />}
|
||||||
{themes.map(
|
|
||||||
(theme: Theme, idx: number): JSX.Element => (
|
{!userThemes.length ? isAuthenticated && customThemesEl : customThemesEl}
|
||||||
<ThemePreview key={idx} theme={theme} applyTheme={setTheme} />
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{isAuthenticated && (
|
{isAuthenticated && (
|
||||||
<form onSubmit={formSubmitHandler}>
|
<form onSubmit={formSubmitHandler}>
|
||||||
<SettingsHeadline text="Other settings" />
|
<SettingsHeadline text="Other settings" />
|
||||||
<InputGroup>
|
<InputGroup>
|
||||||
<label htmlFor="defaultTheme">Default theme (for new users)</label>
|
<label htmlFor="defaultTheme">Default theme for new users</label>
|
||||||
<select
|
<select
|
||||||
id="defaultTheme"
|
id="defaultTheme"
|
||||||
name="defaultTheme"
|
name="defaultTheme"
|
||||||
value={formData.defaultTheme}
|
value={formData.defaultTheme}
|
||||||
onChange={(e) => inputChangeHandler(e)}
|
onChange={(e) => inputChangeHandler(e)}
|
||||||
>
|
>
|
||||||
{themes.map((theme: Theme, idx) => (
|
{[...themes, ...userThemes].map((theme: Theme, idx) => (
|
||||||
<option key={idx} value={theme.name}>
|
<option key={idx} value={parseThemeToPAB(theme.colors)}>
|
||||||
{theme.name}
|
{theme.isCustom && '+'} {theme.name}
|
||||||
</option>
|
</option>
|
||||||
))}
|
))}
|
||||||
</select>
|
</select>
|
||||||
|
@ -38,3 +38,7 @@
|
|||||||
resize: none;
|
resize: none;
|
||||||
height: 50vh;
|
height: 50vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.InputGroup input[type='color'] {
|
||||||
|
all: unset;
|
||||||
|
}
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
.ActionIcons {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ActionIcons svg {
|
||||||
|
width: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ActionIcons svg:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
10
client/src/components/UI/Icons/ActionIcons/ActionIcons.tsx
Normal file
10
client/src/components/UI/Icons/ActionIcons/ActionIcons.tsx
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { ReactNode } from 'react';
|
||||||
|
import styles from './ActionIcons.module.css';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ActionIcons = ({ children }: Props): JSX.Element => {
|
||||||
|
return <span className={styles.ActionIcons}>{children}</span>;
|
||||||
|
};
|
@ -10,7 +10,7 @@ interface Props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const WeatherIcon = (props: Props): JSX.Element => {
|
export const WeatherIcon = (props: Props): JSX.Element => {
|
||||||
const { theme } = useSelector((state: State) => state.theme);
|
const { activeTheme } = useSelector((state: State) => state.theme);
|
||||||
|
|
||||||
const icon = props.isDay
|
const icon = props.isDay
|
||||||
? new IconMapping().mapIcon(props.weatherStatusCode, TimeOfDay.day)
|
? new IconMapping().mapIcon(props.weatherStatusCode, TimeOfDay.day)
|
||||||
@ -18,7 +18,7 @@ export const WeatherIcon = (props: Props): JSX.Element => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const delay = setTimeout(() => {
|
const delay = setTimeout(() => {
|
||||||
const skycons = new Skycons({ color: theme.colors.accent });
|
const skycons = new Skycons({ color: activeTheme.colors.accent });
|
||||||
skycons.add(`weather-icon`, icon);
|
skycons.add(`weather-icon`, icon);
|
||||||
skycons.play();
|
skycons.play();
|
||||||
}, 1);
|
}, 1);
|
||||||
@ -26,7 +26,7 @@ export const WeatherIcon = (props: Props): JSX.Element => {
|
|||||||
return () => {
|
return () => {
|
||||||
clearTimeout(delay);
|
clearTimeout(delay);
|
||||||
};
|
};
|
||||||
}, [props.weatherStatusCode, icon, theme.colors.accent]);
|
}, [props.weatherStatusCode, icon, activeTheme.colors.accent]);
|
||||||
|
|
||||||
return <canvas id={`weather-icon`} width="50" height="50"></canvas>;
|
return <canvas id={`weather-icon`} width="50" height="50"></canvas>;
|
||||||
};
|
};
|
||||||
|
@ -6,24 +6,32 @@ interface Props {
|
|||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
setIsOpen: Function;
|
setIsOpen: Function;
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
|
cb?: Function;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Modal = (props: Props): JSX.Element => {
|
export const Modal = ({
|
||||||
|
isOpen,
|
||||||
|
setIsOpen,
|
||||||
|
children,
|
||||||
|
cb,
|
||||||
|
}: Props): JSX.Element => {
|
||||||
const modalRef = useRef(null);
|
const modalRef = useRef(null);
|
||||||
const modalClasses = [
|
const modalClasses = [
|
||||||
classes.Modal,
|
classes.Modal,
|
||||||
props.isOpen ? classes.ModalOpen : classes.ModalClose,
|
isOpen ? classes.ModalOpen : classes.ModalClose,
|
||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
const clickHandler = (e: MouseEvent) => {
|
const clickHandler = (e: MouseEvent) => {
|
||||||
if (e.target === modalRef.current) {
|
if (e.target === modalRef.current) {
|
||||||
props.setIsOpen(false);
|
setIsOpen(false);
|
||||||
|
|
||||||
|
if (cb) cb();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={modalClasses} onClick={clickHandler} ref={modalRef}>
|
<div className={modalClasses} onClick={clickHandler} ref={modalRef}>
|
||||||
{props.children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
.CompactTable {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CompactTable span {
|
||||||
|
color: var(--color-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.CompactTable span:last-child {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Separator {
|
||||||
|
border-bottom: 1px solid var(--color-primary);
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
import { ReactNode } from 'react';
|
||||||
|
import classes from './CompactTable.module.css';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
headers: string[];
|
||||||
|
children?: ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const CompactTable = ({ headers, children }: Props): JSX.Element => {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={classes.CompactTable}
|
||||||
|
style={{ gridTemplateColumns: `repeat(${headers.length}, 1fr)` }}
|
||||||
|
>
|
||||||
|
{headers.map((h, idx) => (
|
||||||
|
<span key={idx}>{h}</span>
|
||||||
|
))}
|
||||||
|
|
||||||
|
<div
|
||||||
|
className={classes.Separator}
|
||||||
|
style={{ gridColumn: `1 / ${headers.length + 1}` }}
|
||||||
|
></div>
|
||||||
|
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
@ -1,10 +1,12 @@
|
|||||||
export * from './Table/Table';
|
export * from './Tables/Table/Table';
|
||||||
|
export * from './Tables/CompactTable/CompactTable';
|
||||||
export * from './Spinner/Spinner';
|
export * from './Spinner/Spinner';
|
||||||
export * from './Notification/Notification';
|
export * from './Notification/Notification';
|
||||||
export * from './Modal/Modal';
|
export * from './Modal/Modal';
|
||||||
export * from './Layout/Layout';
|
export * from './Layout/Layout';
|
||||||
export * from './Icons/Icon/Icon';
|
export * from './Icons/Icon/Icon';
|
||||||
export * from './Icons/WeatherIcon/WeatherIcon';
|
export * from './Icons/WeatherIcon/WeatherIcon';
|
||||||
|
export * from './Icons/ActionIcons/ActionIcons';
|
||||||
export * from './Headlines/Headline/Headline';
|
export * from './Headlines/Headline/Headline';
|
||||||
export * from './Headlines/SectionHeadline/SectionHeadline';
|
export * from './Headlines/SectionHeadline/SectionHeadline';
|
||||||
export * from './Headlines/SettingsHeadline/SettingsHeadline';
|
export * from './Headlines/SettingsHeadline/SettingsHeadline';
|
||||||
|
@ -17,6 +17,7 @@ export interface Config {
|
|||||||
hideCategories: boolean;
|
hideCategories: boolean;
|
||||||
hideSearch: boolean;
|
hideSearch: boolean;
|
||||||
defaultSearchProvider: string;
|
defaultSearchProvider: string;
|
||||||
|
secondarySearchProvider: string;
|
||||||
dockerApps: boolean;
|
dockerApps: boolean;
|
||||||
dockerHost: string;
|
dockerHost: string;
|
||||||
kubernetesApps: boolean;
|
kubernetesApps: boolean;
|
||||||
|
@ -10,6 +10,7 @@ export interface WeatherForm {
|
|||||||
|
|
||||||
export interface GeneralForm {
|
export interface GeneralForm {
|
||||||
defaultSearchProvider: string;
|
defaultSearchProvider: string;
|
||||||
|
secondarySearchProvider: string;
|
||||||
searchSameTab: boolean;
|
searchSameTab: boolean;
|
||||||
pinAppsByDefault: boolean;
|
pinAppsByDefault: boolean;
|
||||||
pinCategoriesByDefault: boolean;
|
pinCategoriesByDefault: boolean;
|
||||||
|
@ -4,6 +4,8 @@ export interface SearchResult {
|
|||||||
isLocal: boolean;
|
isLocal: boolean;
|
||||||
isURL: boolean;
|
isURL: boolean;
|
||||||
sameTab: boolean;
|
sameTab: boolean;
|
||||||
search: string;
|
encodedURL: string;
|
||||||
query: Query;
|
primarySearch: Query;
|
||||||
|
secondarySearch: Query;
|
||||||
|
rawQuery: string;
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
export interface Theme {
|
export interface ThemeColors {
|
||||||
name: string;
|
|
||||||
colors: {
|
|
||||||
background: string;
|
background: string;
|
||||||
primary: string;
|
primary: string;
|
||||||
accent: string;
|
accent: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface Theme {
|
||||||
|
name: string;
|
||||||
|
colors: ThemeColors;
|
||||||
|
isCustom: boolean;
|
||||||
}
|
}
|
@ -7,7 +7,7 @@ import {
|
|||||||
UpdateConfigAction,
|
UpdateConfigAction,
|
||||||
UpdateQueryAction,
|
UpdateQueryAction,
|
||||||
} from '../actions/config';
|
} from '../actions/config';
|
||||||
import axios from 'axios';
|
import axios, { AxiosError } from 'axios';
|
||||||
import { ApiResponse, Config, Query } from '../../interfaces';
|
import { ApiResponse, Config, Query } from '../../interfaces';
|
||||||
import { ActionType } from '../action-types';
|
import { ActionType } from '../action-types';
|
||||||
import { storeUIConfig, applyAuth } from '../../utility';
|
import { storeUIConfig, applyAuth } from '../../utility';
|
||||||
@ -103,7 +103,15 @@ export const addQuery =
|
|||||||
payload: res.data.data,
|
payload: res.data.data,
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
const error = err as AxiosError<{ error: string }>;
|
||||||
|
|
||||||
|
dispatch<any>({
|
||||||
|
type: ActionType.createNotification,
|
||||||
|
payload: {
|
||||||
|
title: 'Error',
|
||||||
|
message: error.response?.data.error,
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,30 +1,128 @@
|
|||||||
import { Dispatch } from 'redux';
|
import { Dispatch } from 'redux';
|
||||||
import { SetThemeAction } from '../actions/theme';
|
import {
|
||||||
|
AddThemeAction,
|
||||||
|
DeleteThemeAction,
|
||||||
|
EditThemeAction,
|
||||||
|
FetchThemesAction,
|
||||||
|
SetThemeAction,
|
||||||
|
UpdateThemeAction,
|
||||||
|
} from '../actions/theme';
|
||||||
import { ActionType } from '../action-types';
|
import { ActionType } from '../action-types';
|
||||||
import { Theme } from '../../interfaces/Theme';
|
import { Theme, ApiResponse, ThemeColors } from '../../interfaces';
|
||||||
import { themes } from '../../components/Settings/Themer/themes.json';
|
import { applyAuth, parseThemeToPAB } from '../../utility';
|
||||||
|
import axios, { AxiosError } from 'axios';
|
||||||
|
|
||||||
export const setTheme =
|
export const setTheme =
|
||||||
(name: string, remeberTheme: boolean = true) =>
|
(colors: ThemeColors, remeberTheme: boolean = true) =>
|
||||||
(dispatch: Dispatch<SetThemeAction>) => {
|
(dispatch: Dispatch<SetThemeAction>) => {
|
||||||
const theme = themes.find((theme) => theme.name === name);
|
|
||||||
|
|
||||||
if (theme) {
|
|
||||||
if (remeberTheme) {
|
if (remeberTheme) {
|
||||||
localStorage.setItem('theme', name);
|
localStorage.setItem('theme', parseThemeToPAB(colors));
|
||||||
}
|
}
|
||||||
|
|
||||||
loadTheme(theme);
|
for (const [key, value] of Object.entries(colors)) {
|
||||||
|
document.body.style.setProperty(`--color-${key}`, value);
|
||||||
|
}
|
||||||
|
|
||||||
dispatch({
|
dispatch({
|
||||||
type: ActionType.setTheme,
|
type: ActionType.setTheme,
|
||||||
payload: theme,
|
payload: colors,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const fetchThemes =
|
||||||
|
() => async (dispatch: Dispatch<FetchThemesAction>) => {
|
||||||
|
try {
|
||||||
|
const res = await axios.get<ApiResponse<Theme[]>>('/api/themes');
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: ActionType.fetchThemes,
|
||||||
|
payload: res.data.data,
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const addTheme =
|
||||||
|
(theme: Theme) => async (dispatch: Dispatch<AddThemeAction>) => {
|
||||||
|
try {
|
||||||
|
const res = await axios.post<ApiResponse<Theme>>('/api/themes', theme, {
|
||||||
|
headers: applyAuth(),
|
||||||
|
});
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: ActionType.addTheme,
|
||||||
|
payload: res.data.data,
|
||||||
|
});
|
||||||
|
|
||||||
|
dispatch<any>({
|
||||||
|
type: ActionType.createNotification,
|
||||||
|
payload: {
|
||||||
|
title: 'Success',
|
||||||
|
message: 'Theme added',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
const error = err as AxiosError<{ error: string }>;
|
||||||
|
|
||||||
|
dispatch<any>({
|
||||||
|
type: ActionType.createNotification,
|
||||||
|
payload: {
|
||||||
|
title: 'Error',
|
||||||
|
message: error.response?.data.error,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const loadTheme = (theme: Theme): void => {
|
export const deleteTheme =
|
||||||
for (const [key, value] of Object.entries(theme.colors)) {
|
(name: string) => async (dispatch: Dispatch<DeleteThemeAction>) => {
|
||||||
document.body.style.setProperty(`--color-${key}`, value);
|
try {
|
||||||
|
const res = await axios.delete<ApiResponse<Theme[]>>(
|
||||||
|
`/api/themes/${name}`,
|
||||||
|
{ headers: applyAuth() }
|
||||||
|
);
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: ActionType.deleteTheme,
|
||||||
|
payload: res.data.data,
|
||||||
|
});
|
||||||
|
|
||||||
|
dispatch<any>({
|
||||||
|
type: ActionType.createNotification,
|
||||||
|
payload: {
|
||||||
|
title: 'Success',
|
||||||
|
message: 'Theme deleted',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.log(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const editTheme =
|
||||||
|
(theme: Theme | null) => (dispatch: Dispatch<EditThemeAction>) => {
|
||||||
|
dispatch({
|
||||||
|
type: ActionType.editTheme,
|
||||||
|
payload: theme,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const updateTheme =
|
||||||
|
(theme: Theme, originalName: string) =>
|
||||||
|
async (dispatch: Dispatch<UpdateThemeAction>) => {
|
||||||
|
try {
|
||||||
|
const res = await axios.put<ApiResponse<Theme[]>>(
|
||||||
|
`/api/themes/${originalName}`,
|
||||||
|
theme,
|
||||||
|
{ headers: applyAuth() }
|
||||||
|
);
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: ActionType.updateTheme,
|
||||||
|
payload: res.data.data,
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
export enum ActionType {
|
export enum ActionType {
|
||||||
// THEME
|
// THEME
|
||||||
setTheme = 'SET_THEME',
|
setTheme = 'SET_THEME',
|
||||||
|
fetchThemes = 'FETCH_THEMES',
|
||||||
|
addTheme = 'ADD_THEME',
|
||||||
|
deleteTheme = 'DELETE_THEME',
|
||||||
|
updateTheme = 'UPDATE_THEME',
|
||||||
|
editTheme = 'EDIT_THEME',
|
||||||
// CONFIG
|
// CONFIG
|
||||||
getConfig = 'GET_CONFIG',
|
getConfig = 'GET_CONFIG',
|
||||||
updateConfig = 'UPDATE_CONFIG',
|
updateConfig = 'UPDATE_CONFIG',
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
import { App } from '../../interfaces';
|
import { App } from '../../interfaces';
|
||||||
|
|
||||||
import { SetThemeAction } from './theme';
|
import {
|
||||||
|
AddThemeAction,
|
||||||
|
DeleteThemeAction,
|
||||||
|
EditThemeAction,
|
||||||
|
FetchThemesAction,
|
||||||
|
SetThemeAction,
|
||||||
|
UpdateThemeAction,
|
||||||
|
} from './theme';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AddQueryAction,
|
AddQueryAction,
|
||||||
@ -54,6 +61,11 @@ import {
|
|||||||
export type Action =
|
export type Action =
|
||||||
// Theme
|
// Theme
|
||||||
| SetThemeAction
|
| SetThemeAction
|
||||||
|
| FetchThemesAction
|
||||||
|
| AddThemeAction
|
||||||
|
| DeleteThemeAction
|
||||||
|
| UpdateThemeAction
|
||||||
|
| EditThemeAction
|
||||||
// Config
|
// Config
|
||||||
| GetConfigAction
|
| GetConfigAction
|
||||||
| UpdateConfigAction
|
| UpdateConfigAction
|
||||||
|
@ -1,7 +1,32 @@
|
|||||||
import { ActionType } from '../action-types';
|
import { ActionType } from '../action-types';
|
||||||
import { Theme } from '../../interfaces';
|
import { Theme, ThemeColors } from '../../interfaces';
|
||||||
|
|
||||||
export interface SetThemeAction {
|
export interface SetThemeAction {
|
||||||
type: ActionType.setTheme;
|
type: ActionType.setTheme;
|
||||||
|
payload: ThemeColors;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FetchThemesAction {
|
||||||
|
type: ActionType.fetchThemes;
|
||||||
|
payload: Theme[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AddThemeAction {
|
||||||
|
type: ActionType.addTheme;
|
||||||
payload: Theme;
|
payload: Theme;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface DeleteThemeAction {
|
||||||
|
type: ActionType.deleteTheme;
|
||||||
|
payload: Theme[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface UpdateThemeAction {
|
||||||
|
type: ActionType.updateTheme;
|
||||||
|
payload: Theme[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EditThemeAction {
|
||||||
|
type: ActionType.editTheme;
|
||||||
|
payload: Theme | null;
|
||||||
|
}
|
||||||
|
@ -1,20 +1,30 @@
|
|||||||
import { Action } from '../actions';
|
import { Action } from '../actions';
|
||||||
import { ActionType } from '../action-types';
|
import { ActionType } from '../action-types';
|
||||||
import { Theme } from '../../interfaces/Theme';
|
import { Theme } from '../../interfaces/Theme';
|
||||||
|
import { arrayPartition, parsePABToTheme } from '../../utility';
|
||||||
|
|
||||||
interface ThemeState {
|
interface ThemeState {
|
||||||
theme: Theme;
|
activeTheme: Theme;
|
||||||
|
themes: Theme[];
|
||||||
|
userThemes: Theme[];
|
||||||
|
themeInEdit: Theme | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const savedTheme = localStorage.theme
|
||||||
|
? parsePABToTheme(localStorage.theme)
|
||||||
|
: parsePABToTheme('#effbff;#6ee2ff;#242b33');
|
||||||
|
|
||||||
const initialState: ThemeState = {
|
const initialState: ThemeState = {
|
||||||
theme: {
|
activeTheme: {
|
||||||
name: 'tron',
|
name: 'main',
|
||||||
|
isCustom: false,
|
||||||
colors: {
|
colors: {
|
||||||
background: '#242B33',
|
...savedTheme,
|
||||||
primary: '#EFFBFF',
|
|
||||||
accent: '#6EE2FF',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
themes: [],
|
||||||
|
userThemes: [],
|
||||||
|
themeInEdit: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const themeReducer = (
|
export const themeReducer = (
|
||||||
@ -22,8 +32,56 @@ export const themeReducer = (
|
|||||||
action: Action
|
action: Action
|
||||||
): ThemeState => {
|
): ThemeState => {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case ActionType.setTheme:
|
case ActionType.setTheme: {
|
||||||
return { theme: action.payload };
|
return {
|
||||||
|
...state,
|
||||||
|
activeTheme: {
|
||||||
|
...state.activeTheme,
|
||||||
|
colors: action.payload,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
case ActionType.fetchThemes: {
|
||||||
|
const [themes, userThemes] = arrayPartition<Theme>(
|
||||||
|
action.payload,
|
||||||
|
(e) => !e.isCustom
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
themes,
|
||||||
|
userThemes,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
case ActionType.addTheme: {
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
userThemes: [...state.userThemes, action.payload],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
case ActionType.deleteTheme: {
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
userThemes: action.payload,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
case ActionType.editTheme: {
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
themeInEdit: action.payload,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
case ActionType.updateTheme: {
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
userThemes: action.payload,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
|
11
client/src/utility/arrayPartition.ts
Normal file
11
client/src/utility/arrayPartition.ts
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
export const arrayPartition = <T>(
|
||||||
|
arr: T[],
|
||||||
|
isValid: (e: T) => boolean
|
||||||
|
): T[][] => {
|
||||||
|
let pass: T[] = [];
|
||||||
|
let fail: T[] = [];
|
||||||
|
|
||||||
|
arr.forEach((e) => (isValid(e) ? pass : fail).push(e));
|
||||||
|
|
||||||
|
return [pass, fail];
|
||||||
|
};
|
@ -12,3 +12,5 @@ export * from './parseTime';
|
|||||||
export * from './decodeToken';
|
export * from './decodeToken';
|
||||||
export * from './applyAuth';
|
export * from './applyAuth';
|
||||||
export * from './escapeRegex';
|
export * from './escapeRegex';
|
||||||
|
export * from './parseTheme';
|
||||||
|
export * from './arrayPartition';
|
||||||
|
20
client/src/utility/parseTheme.ts
Normal file
20
client/src/utility/parseTheme.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import { ThemeColors } from '../interfaces';
|
||||||
|
|
||||||
|
// parse theme in PAB (primary;accent;background) format to theme colors object
|
||||||
|
export const parsePABToTheme = (themeStr: string): ThemeColors => {
|
||||||
|
const [primary, accent, background] = themeStr.split(';');
|
||||||
|
|
||||||
|
return {
|
||||||
|
primary,
|
||||||
|
accent,
|
||||||
|
background,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const parseThemeToPAB = ({
|
||||||
|
primary: p,
|
||||||
|
accent: a,
|
||||||
|
background: b,
|
||||||
|
}: ThemeColors): string => {
|
||||||
|
return `${p};${a};${b}`;
|
||||||
|
};
|
@ -1,5 +1,5 @@
|
|||||||
import { queries } from './searchQueries.json';
|
import { queries } from './searchQueries.json';
|
||||||
import { Query, SearchResult } from '../interfaces';
|
import { SearchResult } from '../interfaces';
|
||||||
import { store } from '../store/store';
|
import { store } from '../store/store';
|
||||||
import { isUrlOrIp } from '.';
|
import { isUrlOrIp } from '.';
|
||||||
|
|
||||||
@ -8,12 +8,18 @@ export const searchParser = (searchQuery: string): SearchResult => {
|
|||||||
isLocal: false,
|
isLocal: false,
|
||||||
isURL: false,
|
isURL: false,
|
||||||
sameTab: false,
|
sameTab: false,
|
||||||
search: '',
|
encodedURL: '',
|
||||||
query: {
|
primarySearch: {
|
||||||
name: '',
|
name: '',
|
||||||
prefix: '',
|
prefix: '',
|
||||||
template: '',
|
template: '',
|
||||||
},
|
},
|
||||||
|
secondarySearch: {
|
||||||
|
name: '',
|
||||||
|
prefix: '',
|
||||||
|
template: '',
|
||||||
|
},
|
||||||
|
rawQuery: searchQuery,
|
||||||
};
|
};
|
||||||
|
|
||||||
const { customQueries, config } = store.getState().config;
|
const { customQueries, config } = store.getState().config;
|
||||||
@ -24,20 +30,26 @@ export const searchParser = (searchQuery: string): SearchResult => {
|
|||||||
// Match prefix and query
|
// Match prefix and query
|
||||||
const splitQuery = searchQuery.match(/^\/([a-z]+)[ ](.+)$/i);
|
const splitQuery = searchQuery.match(/^\/([a-z]+)[ ](.+)$/i);
|
||||||
|
|
||||||
|
// Extract prefix
|
||||||
const prefix = splitQuery ? splitQuery[1] : config.defaultSearchProvider;
|
const prefix = splitQuery ? splitQuery[1] : config.defaultSearchProvider;
|
||||||
|
|
||||||
const search = splitQuery
|
// Encode url
|
||||||
|
const encodedURL = splitQuery
|
||||||
? encodeURIComponent(splitQuery[2])
|
? encodeURIComponent(splitQuery[2])
|
||||||
: encodeURIComponent(searchQuery);
|
: encodeURIComponent(searchQuery);
|
||||||
|
|
||||||
const query = [...queries, ...customQueries].find(
|
// Find primary search engine template
|
||||||
(q: Query) => q.prefix === prefix
|
const findProvider = (prefix: string) => {
|
||||||
);
|
return [...queries, ...customQueries].find((q) => q.prefix === prefix);
|
||||||
|
};
|
||||||
|
|
||||||
// If search provider was found
|
const primarySearch = findProvider(prefix);
|
||||||
if (query) {
|
const secondarySearch = findProvider(config.secondarySearchProvider);
|
||||||
result.query = query;
|
|
||||||
result.search = search;
|
// If search providers were found
|
||||||
|
if (primarySearch) {
|
||||||
|
result.primarySearch = primarySearch;
|
||||||
|
result.encodedURL = encodedURL;
|
||||||
|
|
||||||
if (prefix === 'l') {
|
if (prefix === 'l') {
|
||||||
result.isLocal = true;
|
result.isLocal = true;
|
||||||
@ -45,6 +57,10 @@ export const searchParser = (searchQuery: string): SearchResult => {
|
|||||||
result.sameTab = config.searchSameTab;
|
result.sameTab = config.searchSameTab;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (secondarySearch) {
|
||||||
|
result.secondarySearch = secondarySearch;
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@ export const configTemplate: Config = {
|
|||||||
hideCategories: false,
|
hideCategories: false,
|
||||||
hideSearch: false,
|
hideSearch: false,
|
||||||
defaultSearchProvider: 'l',
|
defaultSearchProvider: 'l',
|
||||||
|
secondarySearchProvider: 'd',
|
||||||
dockerApps: false,
|
dockerApps: false,
|
||||||
dockerHost: 'localhost',
|
dockerHost: 'localhost',
|
||||||
kubernetesApps: false,
|
kubernetesApps: false,
|
||||||
|
@ -33,6 +33,7 @@ export const weatherSettingsTemplate: WeatherForm = {
|
|||||||
export const generalSettingsTemplate: GeneralForm = {
|
export const generalSettingsTemplate: GeneralForm = {
|
||||||
searchSameTab: false,
|
searchSameTab: false,
|
||||||
defaultSearchProvider: 'l',
|
defaultSearchProvider: 'l',
|
||||||
|
secondarySearchProvider: 'd',
|
||||||
pinAppsByDefault: true,
|
pinAppsByDefault: true,
|
||||||
pinCategoriesByDefault: true,
|
pinCategoriesByDefault: true,
|
||||||
useOrdering: 'createdAt',
|
useOrdering: 'createdAt',
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
const asyncWrapper = require('../../middleware/asyncWrapper');
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||||
|
const ErrorResponse = require('../../utils/ErrorResponse');
|
||||||
const File = require('../../utils/File');
|
const File = require('../../utils/File');
|
||||||
|
|
||||||
// @desc Add custom search query
|
// @desc Add custom search query
|
||||||
@ -8,6 +9,12 @@ const addQuery = asyncWrapper(async (req, res, next) => {
|
|||||||
const file = new File('data/customQueries.json');
|
const file = new File('data/customQueries.json');
|
||||||
let content = JSON.parse(file.read());
|
let content = JSON.parse(file.read());
|
||||||
|
|
||||||
|
const prefixes = content.queries.map((q) => q.prefix);
|
||||||
|
|
||||||
|
if (prefixes.includes(req.body.prefix)) {
|
||||||
|
return next(new ErrorResponse('Prefix must be unique', 400));
|
||||||
|
}
|
||||||
|
|
||||||
// Add new query
|
// Add new query
|
||||||
content.queries.push(req.body);
|
content.queries.push(req.body);
|
||||||
file.write(content, true);
|
file.write(content, true);
|
||||||
|
28
controllers/themes/addTheme.js
Normal file
28
controllers/themes/addTheme.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||||
|
const ErrorResponse = require('../../utils/ErrorResponse');
|
||||||
|
const File = require('../../utils/File');
|
||||||
|
|
||||||
|
// @desc Create new theme
|
||||||
|
// @route POST /api/themes
|
||||||
|
// @access Private
|
||||||
|
const addTheme = asyncWrapper(async (req, res, next) => {
|
||||||
|
const file = new File('data/themes.json');
|
||||||
|
let content = JSON.parse(file.read());
|
||||||
|
|
||||||
|
const themeNames = content.themes.map((t) => t.name);
|
||||||
|
|
||||||
|
if (themeNames.includes(req.body.name)) {
|
||||||
|
return next(new ErrorResponse('Name must be unique', 400));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add new theme
|
||||||
|
content.themes.push(req.body);
|
||||||
|
file.write(content, true);
|
||||||
|
|
||||||
|
res.status(201).json({
|
||||||
|
success: true,
|
||||||
|
data: req.body,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = addTheme;
|
22
controllers/themes/deleteTheme.js
Normal file
22
controllers/themes/deleteTheme.js
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||||
|
const File = require('../../utils/File');
|
||||||
|
|
||||||
|
// @desc Delete theme
|
||||||
|
// @route DELETE /api/themes/:name
|
||||||
|
// @access Public
|
||||||
|
const deleteTheme = asyncWrapper(async (req, res, next) => {
|
||||||
|
const file = new File('data/themes.json');
|
||||||
|
let content = JSON.parse(file.read());
|
||||||
|
|
||||||
|
content.themes = content.themes.filter((t) => t.name != req.params.name);
|
||||||
|
file.write(content, true);
|
||||||
|
|
||||||
|
const userThemes = content.themes.filter((t) => t.isCustom);
|
||||||
|
|
||||||
|
res.status(200).json({
|
||||||
|
success: true,
|
||||||
|
data: userThemes,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = deleteTheme;
|
17
controllers/themes/getThemes.js
Normal file
17
controllers/themes/getThemes.js
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||||
|
const File = require('../../utils/File');
|
||||||
|
|
||||||
|
// @desc Get themes file
|
||||||
|
// @route GET /api/themes
|
||||||
|
// @access Public
|
||||||
|
const getThemes = asyncWrapper(async (req, res, next) => {
|
||||||
|
const file = new File('data/themes.json');
|
||||||
|
const content = JSON.parse(file.read());
|
||||||
|
|
||||||
|
res.status(200).json({
|
||||||
|
success: true,
|
||||||
|
data: content.themes,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = getThemes;
|
6
controllers/themes/index.js
Normal file
6
controllers/themes/index.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
getThemes: require('./getThemes'),
|
||||||
|
addTheme: require('./addTheme'),
|
||||||
|
deleteTheme: require('./deleteTheme'),
|
||||||
|
updateTheme: require('./updateTheme'),
|
||||||
|
};
|
32
controllers/themes/updateTheme.js
Normal file
32
controllers/themes/updateTheme.js
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||||
|
const File = require('../../utils/File');
|
||||||
|
|
||||||
|
// @desc Update theme
|
||||||
|
// @route PUT /api/themes/:name
|
||||||
|
// @access Public
|
||||||
|
const updateTheme = asyncWrapper(async (req, res, next) => {
|
||||||
|
const file = new File('data/themes.json');
|
||||||
|
let content = JSON.parse(file.read());
|
||||||
|
|
||||||
|
let themeIdx = content.themes.findIndex((t) => t.name == req.params.name);
|
||||||
|
|
||||||
|
// theme found
|
||||||
|
if (themeIdx > -1) {
|
||||||
|
content.themes = [
|
||||||
|
...content.themes.slice(0, themeIdx),
|
||||||
|
req.body,
|
||||||
|
...content.themes.slice(themeIdx + 1),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
file.write(content, true);
|
||||||
|
|
||||||
|
const userThemes = content.themes.filter((t) => t.isCustom);
|
||||||
|
|
||||||
|
res.status(200).json({
|
||||||
|
success: true,
|
||||||
|
data: userThemes,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = updateTheme;
|
@ -2,7 +2,7 @@ const express = require('express');
|
|||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
// middleware
|
// middleware
|
||||||
const { auth, requireAuth } = require('../middleware');
|
const { auth, requireAuth, requireBody } = require('../middleware');
|
||||||
|
|
||||||
const {
|
const {
|
||||||
getQueries,
|
getQueries,
|
||||||
@ -11,7 +11,16 @@ const {
|
|||||||
updateQuery,
|
updateQuery,
|
||||||
} = require('../controllers/queries/');
|
} = require('../controllers/queries/');
|
||||||
|
|
||||||
router.route('/').post(auth, requireAuth, addQuery).get(getQueries);
|
router
|
||||||
|
.route('/')
|
||||||
|
.post(
|
||||||
|
auth,
|
||||||
|
requireAuth,
|
||||||
|
requireBody(['name', 'prefix', 'template']),
|
||||||
|
addQuery
|
||||||
|
)
|
||||||
|
.get(getQueries);
|
||||||
|
|
||||||
router
|
router
|
||||||
.route('/:prefix')
|
.route('/:prefix')
|
||||||
.delete(auth, requireAuth, deleteQuery)
|
.delete(auth, requireAuth, deleteQuery)
|
||||||
|
29
routes/themes.js
Normal file
29
routes/themes.js
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
const express = require('express');
|
||||||
|
const router = express.Router();
|
||||||
|
|
||||||
|
// middleware
|
||||||
|
const { auth, requireAuth, requireBody } = require('../middleware');
|
||||||
|
|
||||||
|
const {
|
||||||
|
getThemes,
|
||||||
|
addTheme,
|
||||||
|
deleteTheme,
|
||||||
|
updateTheme,
|
||||||
|
} = require('../controllers/themes/');
|
||||||
|
|
||||||
|
router
|
||||||
|
.route('/')
|
||||||
|
.get(getThemes)
|
||||||
|
.post(
|
||||||
|
auth,
|
||||||
|
requireAuth,
|
||||||
|
requireBody(['name', 'colors', 'isCustom']),
|
||||||
|
addTheme
|
||||||
|
);
|
||||||
|
|
||||||
|
router
|
||||||
|
.route('/:name')
|
||||||
|
.delete(auth, requireAuth, deleteTheme)
|
||||||
|
.put(auth, requireAuth, updateTheme);
|
||||||
|
|
||||||
|
module.exports = router;
|
@ -1,6 +1,6 @@
|
|||||||
class Logger {
|
class Logger {
|
||||||
log(message, level = 'INFO') {
|
log(message, level = 'INFO') {
|
||||||
console.log(`[${this.generateTimestamp()}] [${level}] ${message}`)
|
console.log(`[${this.generateTimestamp()}] [${level}] ${message}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
generateTimestamp() {
|
generateTimestamp() {
|
||||||
@ -20,7 +20,9 @@ class Logger {
|
|||||||
// Timezone
|
// Timezone
|
||||||
const tz = -d.getTimezoneOffset() / 60;
|
const tz = -d.getTimezoneOffset() / 60;
|
||||||
|
|
||||||
return `${year}-${month}-${day} ${hour}:${minutes}:${seconds}.${miliseconds} UTC${tz >= 0 ? '+' + tz : tz}`;
|
return `${year}-${month}-${day} ${hour}:${minutes}:${seconds}.${miliseconds} UTC${
|
||||||
|
tz >= 0 ? '+' + tz : tz
|
||||||
|
}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
parseDate(date, ms = false) {
|
parseDate(date, ms = false) {
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
const initConfig = require('./initConfig');
|
const initConfig = require('./initConfig');
|
||||||
const initFiles = require('./initFiles');
|
const initFiles = require('./initFiles');
|
||||||
const initDockerSecrets = require('./initDockerSecrets');
|
const initDockerSecrets = require('./initDockerSecrets');
|
||||||
|
const normalizeTheme = require('./normalizeTheme');
|
||||||
|
|
||||||
const initApp = async () => {
|
const initApp = async () => {
|
||||||
initDockerSecrets();
|
initDockerSecrets();
|
||||||
await initFiles();
|
await initFiles();
|
||||||
await initConfig();
|
await initConfig();
|
||||||
|
await normalizeTheme();
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = initApp;
|
module.exports = initApp;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
"hideCategories": false,
|
"hideCategories": false,
|
||||||
"hideSearch": false,
|
"hideSearch": false,
|
||||||
"defaultSearchProvider": "l",
|
"defaultSearchProvider": "l",
|
||||||
|
"secondarySearchProvider": "d",
|
||||||
"dockerApps": false,
|
"dockerApps": false,
|
||||||
"dockerHost": "localhost",
|
"dockerHost": "localhost",
|
||||||
"kubernetesApps": false,
|
"kubernetesApps": false,
|
||||||
|
@ -27,6 +27,166 @@
|
|||||||
"queries": []
|
"queries": []
|
||||||
},
|
},
|
||||||
"isJSON": true
|
"isJSON": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "themes.json",
|
||||||
|
"msg": {
|
||||||
|
"created": "Created default theme file",
|
||||||
|
"found": "Found theme file"
|
||||||
|
},
|
||||||
|
"paths": {
|
||||||
|
"src": "../../data",
|
||||||
|
"dest": "../../data"
|
||||||
|
},
|
||||||
|
"template": {
|
||||||
|
"themes": [
|
||||||
|
{
|
||||||
|
"name": "blackboard",
|
||||||
|
"colors": {
|
||||||
|
"background": "#1a1a1a",
|
||||||
|
"primary": "#FFFDEA",
|
||||||
|
"accent": "#5c5c5c"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gazette",
|
||||||
|
"colors": {
|
||||||
|
"background": "#F2F7FF",
|
||||||
|
"primary": "#000000",
|
||||||
|
"accent": "#5c5c5c"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "espresso",
|
||||||
|
"colors": {
|
||||||
|
"background": "#21211F",
|
||||||
|
"primary": "#D1B59A",
|
||||||
|
"accent": "#4E4E4E"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "cab",
|
||||||
|
"colors": {
|
||||||
|
"background": "#F6D305",
|
||||||
|
"primary": "#1F1F1F",
|
||||||
|
"accent": "#424242"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "cloud",
|
||||||
|
"colors": {
|
||||||
|
"background": "#f1f2f0",
|
||||||
|
"primary": "#35342f",
|
||||||
|
"accent": "#37bbe4"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "lime",
|
||||||
|
"colors": {
|
||||||
|
"background": "#263238",
|
||||||
|
"primary": "#AABBC3",
|
||||||
|
"accent": "#aeea00"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "white",
|
||||||
|
"colors": {
|
||||||
|
"background": "#ffffff",
|
||||||
|
"primary": "#222222",
|
||||||
|
"accent": "#dddddd"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tron",
|
||||||
|
"colors": {
|
||||||
|
"background": "#242B33",
|
||||||
|
"primary": "#EFFBFF",
|
||||||
|
"accent": "#6EE2FF"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "blues",
|
||||||
|
"colors": {
|
||||||
|
"background": "#2B2C56",
|
||||||
|
"primary": "#EFF1FC",
|
||||||
|
"accent": "#6677EB"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "passion",
|
||||||
|
"colors": {
|
||||||
|
"background": "#f5f5f5",
|
||||||
|
"primary": "#12005e",
|
||||||
|
"accent": "#8e24aa"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "chalk",
|
||||||
|
"colors": {
|
||||||
|
"background": "#263238",
|
||||||
|
"primary": "#AABBC3",
|
||||||
|
"accent": "#FF869A"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "paper",
|
||||||
|
"colors": {
|
||||||
|
"background": "#F8F6F1",
|
||||||
|
"primary": "#4C432E",
|
||||||
|
"accent": "#AA9A73"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "neon",
|
||||||
|
"colors": {
|
||||||
|
"background": "#091833",
|
||||||
|
"primary": "#EFFBFF",
|
||||||
|
"accent": "#ea00d9"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pumpkin",
|
||||||
|
"colors": {
|
||||||
|
"background": "#2d3436",
|
||||||
|
"primary": "#EFFBFF",
|
||||||
|
"accent": "#ffa500"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "onedark",
|
||||||
|
"colors": {
|
||||||
|
"background": "#282c34",
|
||||||
|
"primary": "#dfd9d6",
|
||||||
|
"accent": "#98c379"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mint",
|
||||||
|
"colors": {
|
||||||
|
"background": "#282525",
|
||||||
|
"primary": "#d9d9d9",
|
||||||
|
"accent": "#50fbc2"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isJSON": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
28
utils/init/normalizeTheme.js
Normal file
28
utils/init/normalizeTheme.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
const { readFile, writeFile } = require('fs/promises');
|
||||||
|
|
||||||
|
const normalizeTheme = async () => {
|
||||||
|
// open main config file
|
||||||
|
const configFile = await readFile('data/config.json', 'utf8');
|
||||||
|
const config = JSON.parse(configFile);
|
||||||
|
|
||||||
|
// open default themes file
|
||||||
|
const themesFile = await readFile('utils/init/themes.json', 'utf8');
|
||||||
|
const { themes } = JSON.parse(themesFile);
|
||||||
|
|
||||||
|
// find theme
|
||||||
|
const theme = themes.find((t) => t.name === config.defaultTheme);
|
||||||
|
|
||||||
|
if (theme) {
|
||||||
|
// save theme in new format
|
||||||
|
// PAB - primary;accent;background
|
||||||
|
const { primary: p, accent: a, background: b } = theme.colors;
|
||||||
|
const normalizedTheme = `${p};${a};${b}`;
|
||||||
|
|
||||||
|
await writeFile(
|
||||||
|
'data/config.json',
|
||||||
|
JSON.stringify({ ...config, defaultTheme: normalizedTheme })
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = normalizeTheme;
|
@ -6,7 +6,8 @@
|
|||||||
"background": "#1a1a1a",
|
"background": "#1a1a1a",
|
||||||
"primary": "#FFFDEA",
|
"primary": "#FFFDEA",
|
||||||
"accent": "#5c5c5c"
|
"accent": "#5c5c5c"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gazette",
|
"name": "gazette",
|
||||||
@ -14,7 +15,8 @@
|
|||||||
"background": "#F2F7FF",
|
"background": "#F2F7FF",
|
||||||
"primary": "#000000",
|
"primary": "#000000",
|
||||||
"accent": "#5c5c5c"
|
"accent": "#5c5c5c"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "espresso",
|
"name": "espresso",
|
||||||
@ -22,7 +24,8 @@
|
|||||||
"background": "#21211F",
|
"background": "#21211F",
|
||||||
"primary": "#D1B59A",
|
"primary": "#D1B59A",
|
||||||
"accent": "#4E4E4E"
|
"accent": "#4E4E4E"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "cab",
|
"name": "cab",
|
||||||
@ -30,7 +33,8 @@
|
|||||||
"background": "#F6D305",
|
"background": "#F6D305",
|
||||||
"primary": "#1F1F1F",
|
"primary": "#1F1F1F",
|
||||||
"accent": "#424242"
|
"accent": "#424242"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "cloud",
|
"name": "cloud",
|
||||||
@ -38,7 +42,8 @@
|
|||||||
"background": "#f1f2f0",
|
"background": "#f1f2f0",
|
||||||
"primary": "#35342f",
|
"primary": "#35342f",
|
||||||
"accent": "#37bbe4"
|
"accent": "#37bbe4"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "lime",
|
"name": "lime",
|
||||||
@ -46,7 +51,8 @@
|
|||||||
"background": "#263238",
|
"background": "#263238",
|
||||||
"primary": "#AABBC3",
|
"primary": "#AABBC3",
|
||||||
"accent": "#aeea00"
|
"accent": "#aeea00"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "white",
|
"name": "white",
|
||||||
@ -54,7 +60,8 @@
|
|||||||
"background": "#ffffff",
|
"background": "#ffffff",
|
||||||
"primary": "#222222",
|
"primary": "#222222",
|
||||||
"accent": "#dddddd"
|
"accent": "#dddddd"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tron",
|
"name": "tron",
|
||||||
@ -62,7 +69,8 @@
|
|||||||
"background": "#242B33",
|
"background": "#242B33",
|
||||||
"primary": "#EFFBFF",
|
"primary": "#EFFBFF",
|
||||||
"accent": "#6EE2FF"
|
"accent": "#6EE2FF"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "blues",
|
"name": "blues",
|
||||||
@ -70,7 +78,8 @@
|
|||||||
"background": "#2B2C56",
|
"background": "#2B2C56",
|
||||||
"primary": "#EFF1FC",
|
"primary": "#EFF1FC",
|
||||||
"accent": "#6677EB"
|
"accent": "#6677EB"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "passion",
|
"name": "passion",
|
||||||
@ -78,7 +87,8 @@
|
|||||||
"background": "#f5f5f5",
|
"background": "#f5f5f5",
|
||||||
"primary": "#12005e",
|
"primary": "#12005e",
|
||||||
"accent": "#8e24aa"
|
"accent": "#8e24aa"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "chalk",
|
"name": "chalk",
|
||||||
@ -86,7 +96,8 @@
|
|||||||
"background": "#263238",
|
"background": "#263238",
|
||||||
"primary": "#AABBC3",
|
"primary": "#AABBC3",
|
||||||
"accent": "#FF869A"
|
"accent": "#FF869A"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "paper",
|
"name": "paper",
|
||||||
@ -94,7 +105,8 @@
|
|||||||
"background": "#F8F6F1",
|
"background": "#F8F6F1",
|
||||||
"primary": "#4C432E",
|
"primary": "#4C432E",
|
||||||
"accent": "#AA9A73"
|
"accent": "#AA9A73"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "neon",
|
"name": "neon",
|
||||||
@ -102,7 +114,8 @@
|
|||||||
"background": "#091833",
|
"background": "#091833",
|
||||||
"primary": "#EFFBFF",
|
"primary": "#EFFBFF",
|
||||||
"accent": "#ea00d9"
|
"accent": "#ea00d9"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pumpkin",
|
"name": "pumpkin",
|
||||||
@ -110,7 +123,8 @@
|
|||||||
"background": "#2d3436",
|
"background": "#2d3436",
|
||||||
"primary": "#EFFBFF",
|
"primary": "#EFFBFF",
|
||||||
"accent": "#ffa500"
|
"accent": "#ffa500"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "onedark",
|
"name": "onedark",
|
||||||
@ -118,7 +132,17 @@
|
|||||||
"background": "#282c34",
|
"background": "#282c34",
|
||||||
"primary": "#dfd9d6",
|
"primary": "#dfd9d6",
|
||||||
"accent": "#98c379"
|
"accent": "#98c379"
|
||||||
}
|
},
|
||||||
|
"isCustom": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mint",
|
||||||
|
"colors": {
|
||||||
|
"background": "#282525",
|
||||||
|
"primary": "#d9d9d9",
|
||||||
|
"accent": "#50fbc2"
|
||||||
|
},
|
||||||
|
"isCustom": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user