1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 04:19:37 +02:00
flame/client/src/components/Settings/UISettings/UISettings.tsx

298 lines
8.5 KiB
TypeScript
Raw Normal View History

import { useState, useEffect, ChangeEvent, FormEvent } from 'react';
// Redux
import { useDispatch, useSelector } from 'react-redux';
2021-11-10 16:45:30 +01:00
import { State } from '../../../store/reducers';
import { bindActionCreators } from 'redux';
import { actionCreators } from '../../../store';
// Typescript
import { OtherSettingsForm } from '../../../interfaces';
// UI
import { InputGroup, Button, SettingsHeadline } from '../../UI';
// Utils
2021-10-22 13:31:02 +02:00
import { otherSettingsTemplate, inputHandler } from '../../../utility';
2021-11-10 16:45:30 +01:00
export const UISettings = (): JSX.Element => {
const { loading, config } = useSelector((state: State) => state.config);
const dispatch = useDispatch();
const { updateConfig, sortApps, sortCategories } = bindActionCreators(
actionCreators,
dispatch
);
2021-10-22 13:31:02 +02:00
// Initial state
2021-10-22 13:31:02 +02:00
const [formData, setFormData] = useState<OtherSettingsForm>(
otherSettingsTemplate
);
// Get config
useEffect(() => {
setFormData({
2021-10-22 13:31:02 +02:00
...config,
});
}, [loading]);
// Form handler
const formSubmitHandler = async (e: FormEvent) => {
e.preventDefault();
// Save settings
await updateConfig(formData);
// Update local page title
document.title = formData.customTitle;
// Sort apps and categories with new settings
sortApps();
sortCategories();
};
// Input handler
const inputChangeHandler = (
e: ChangeEvent<HTMLInputElement | HTMLSelectElement>,
2021-10-22 13:31:02 +02:00
options?: { isNumber?: boolean; isBool?: boolean }
) => {
2021-10-22 13:31:02 +02:00
inputHandler<OtherSettingsForm>({
e,
options,
setStateHandler: setFormData,
state: formData,
});
};
return (
2021-09-06 12:24:01 +02:00
<form onSubmit={(e) => formSubmitHandler(e)}>
{/* === OTHER OPTIONS === */}
<SettingsHeadline text="Miscellaneous" />
{/* PAGE TITLE */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="customTitle">Custom page title</label>
<input
2021-09-06 12:24:01 +02:00
type="text"
id="customTitle"
name="customTitle"
placeholder="Flame"
value={formData.customTitle}
2021-09-06 12:24:01 +02:00
onChange={(e) => inputChangeHandler(e)}
/>
</InputGroup>
{/* === HEADER OPTIONS === */}
<SettingsHeadline text="Header" />
{/* HIDE HEADER */}
<InputGroup>
<label htmlFor="hideHeader">Hide greetings</label>
<select
id="hideHeader"
name="hideHeader"
value={formData.hideHeader ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* HIDE DATE */}
<InputGroup>
<label htmlFor="hideDate">Hide date</label>
<select
id="hideDate"
name="hideDate"
value={formData.hideDate ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* HIDE TIME */}
<InputGroup>
<label htmlFor="showTime">Hide time</label>
<select
id="showTime"
name="showTime"
value={formData.showTime ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={0}>True</option>
<option value={1}>False</option>
</select>
</InputGroup>
{/* DATE FORMAT */}
<InputGroup>
<label htmlFor="useAmericanDate">Date formatting</label>
<select
id="useAmericanDate"
name="useAmericanDate"
value={formData.useAmericanDate ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>Friday, October 22 2021</option>
<option value={0}>Friday, 22 October 2021</option>
</select>
</InputGroup>
{/* CUSTOM GREETINGS */}
<InputGroup>
<label htmlFor="greetingsSchema">Custom greetings</label>
<input
type="text"
id="greetingsSchema"
name="greetingsSchema"
placeholder="Good day;Hi;Bye!"
value={formData.greetingsSchema}
onChange={(e) => inputChangeHandler(e)}
/>
<span>
Greetings must be separated with semicolon. Only 4 messages can be
used
</span>
</InputGroup>
{/* CUSTOM DAYS */}
<InputGroup>
<label htmlFor="daySchema">Custom weekday names</label>
<input
type="text"
id="daySchema"
name="daySchema"
placeholder="Sunday;Monday;Tuesday"
value={formData.daySchema}
onChange={(e) => inputChangeHandler(e)}
/>
<span>Names must be separated with semicolon</span>
</InputGroup>
{/* CUSTOM MONTHS */}
<InputGroup>
<label htmlFor="monthSchema">Custom month names</label>
<input
type="text"
id="monthSchema"
name="monthSchema"
placeholder="January;February;March"
value={formData.monthSchema}
onChange={(e) => inputChangeHandler(e)}
/>
<span>Names must be separated with semicolon</span>
</InputGroup>
{/* === BEAHVIOR OPTIONS === */}
<SettingsHeadline text="App Behavior" />
{/* PIN APPS */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="pinAppsByDefault">
Pin new applications by default
</label>
<select
2021-09-06 12:24:01 +02:00
id="pinAppsByDefault"
name="pinAppsByDefault"
2021-10-22 13:31:02 +02:00
value={formData.pinAppsByDefault ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* PIN CATEGORIES */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="pinCategoriesByDefault">
Pin new categories by default
</label>
<select
2021-09-06 12:24:01 +02:00
id="pinCategoriesByDefault"
name="pinCategoriesByDefault"
2021-10-22 13:31:02 +02:00
value={formData.pinCategoriesByDefault ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* SORT TYPE */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="useOrdering">Sorting type</label>
<select
2021-09-06 12:24:01 +02:00
id="useOrdering"
name="useOrdering"
value={formData.useOrdering}
2021-09-06 12:24:01 +02:00
onChange={(e) => inputChangeHandler(e)}
>
2021-09-06 12:24:01 +02:00
<option value="createdAt">By creation date</option>
<option value="name">Alphabetical order</option>
<option value="orderId">Custom order</option>
</select>
</InputGroup>
{/* APPS OPPENING */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="appsSameTab">Open applications in the same tab</label>
<select
2021-09-06 12:24:01 +02:00
id="appsSameTab"
name="appsSameTab"
2021-10-22 13:31:02 +02:00
value={formData.appsSameTab ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* BOOKMARKS OPPENING */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="bookmarksSameTab">Open bookmarks in the same tab</label>
<select
2021-09-06 12:24:01 +02:00
id="bookmarksSameTab"
name="bookmarksSameTab"
2021-10-22 13:31:02 +02:00
value={formData.bookmarksSameTab ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* === MODULES OPTIONS === */}
2021-11-10 14:19:41 +01:00
<SettingsHeadline text="Modules" />
{/* HIDE APPS */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="hideApps">Hide applications</label>
<select
2021-09-06 12:24:01 +02:00
id="hideApps"
name="hideApps"
2021-10-22 13:31:02 +02:00
value={formData.hideApps ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
{/* HIDE CATEGORIES */}
<InputGroup>
2021-09-06 12:24:01 +02:00
<label htmlFor="hideCategories">Hide categories</label>
<select
2021-09-06 12:24:01 +02:00
id="hideCategories"
name="hideCategories"
2021-10-22 13:31:02 +02:00
value={formData.hideCategories ? 1 : 0}
onChange={(e) => inputChangeHandler(e, { isBool: true })}
>
<option value={1}>True</option>
<option value={0}>False</option>
</select>
</InputGroup>
<Button>Save changes</Button>
</form>
);
};