2021-06-09 00:59:39 +02:00
|
|
|
import { useState, useEffect, ChangeEvent, FormEvent } from 'react';
|
2021-06-13 23:21:35 +02:00
|
|
|
|
|
|
|
// Redux
|
2021-11-09 14:33:51 +01:00
|
|
|
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';
|
2021-06-13 23:21:35 +02:00
|
|
|
|
|
|
|
// Typescript
|
2021-11-09 14:33:51 +01:00
|
|
|
import { OtherSettingsForm } from '../../../interfaces';
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// UI
|
2021-11-09 14:33:51 +01:00
|
|
|
import { InputGroup, Button, SettingsHeadline } from '../../UI';
|
2021-06-24 10:54:48 +02:00
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// Utils
|
2021-10-22 13:31:02 +02:00
|
|
|
import { otherSettingsTemplate, inputHandler } from '../../../utility';
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-11-10 16:45:30 +01:00
|
|
|
export const UISettings = (): JSX.Element => {
|
2021-11-09 14:33:51 +01:00
|
|
|
const { loading, config } = useSelector((state: State) => state.config);
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-11-09 14:33:51 +01:00
|
|
|
const dispatch = useDispatch();
|
|
|
|
const { updateConfig, sortApps, sortCategories } = bindActionCreators(
|
|
|
|
actionCreators,
|
|
|
|
dispatch
|
|
|
|
);
|
2021-10-22 13:31:02 +02:00
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// Initial state
|
2021-10-22 13:31:02 +02:00
|
|
|
const [formData, setFormData] = useState<OtherSettingsForm>(
|
|
|
|
otherSettingsTemplate
|
|
|
|
);
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// Get config
|
2021-06-09 00:59:39 +02:00
|
|
|
useEffect(() => {
|
2021-06-13 23:21:35 +02:00
|
|
|
setFormData({
|
2021-10-22 13:31:02 +02:00
|
|
|
...config,
|
2021-08-06 10:36:05 +02:00
|
|
|
});
|
2021-11-09 14:33:51 +01:00
|
|
|
}, [loading]);
|
2021-06-13 23:21:35 +02:00
|
|
|
|
|
|
|
// Form handler
|
|
|
|
const formSubmitHandler = async (e: FormEvent) => {
|
2021-06-09 00:59:39 +02:00
|
|
|
e.preventDefault();
|
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// Save settings
|
2021-11-09 14:33:51 +01:00
|
|
|
await updateConfig(formData);
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-06-18 10:38:05 +02:00
|
|
|
// Update local page title
|
2021-06-09 00:59:39 +02:00
|
|
|
document.title = formData.customTitle;
|
2021-06-18 10:38:05 +02:00
|
|
|
|
2021-06-18 13:42:55 +02:00
|
|
|
// Sort apps and categories with new settings
|
2021-11-09 14:33:51 +01:00
|
|
|
sortApps();
|
|
|
|
sortCategories();
|
2021-08-06 10:36:05 +02:00
|
|
|
};
|
2021-06-09 00:59:39 +02:00
|
|
|
|
2021-06-13 23:21:35 +02:00
|
|
|
// Input handler
|
2021-08-06 10:36:05 +02:00
|
|
|
const inputChangeHandler = (
|
|
|
|
e: ChangeEvent<HTMLInputElement | HTMLSelectElement>,
|
2021-10-22 13:31:02 +02:00
|
|
|
options?: { isNumber?: boolean; isBool?: boolean }
|
2021-08-06 10:36:05 +02:00
|
|
|
) => {
|
2021-10-22 13:31:02 +02:00
|
|
|
inputHandler<OtherSettingsForm>({
|
|
|
|
e,
|
|
|
|
options,
|
|
|
|
setStateHandler: setFormData,
|
|
|
|
state: formData,
|
2021-08-06 10:36:05 +02:00
|
|
|
});
|
|
|
|
};
|
2021-06-09 00:59:39 +02:00
|
|
|
|
|
|
|
return (
|
2021-09-06 12:24:01 +02:00
|
|
|
<form onSubmit={(e) => formSubmitHandler(e)}>
|
2021-11-18 16:03:44 +01:00
|
|
|
{/* === OTHER OPTIONS === */}
|
2021-10-11 13:03:31 +02:00
|
|
|
<SettingsHeadline text="Miscellaneous" />
|
2021-11-05 17:16:19 +01:00
|
|
|
{/* PAGE TITLE */}
|
2021-06-09 00:59:39 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="customTitle">Custom page title</label>
|
2021-06-09 00:59:39 +02:00
|
|
|
<input
|
2021-09-06 12:24:01 +02:00
|
|
|
type="text"
|
|
|
|
id="customTitle"
|
|
|
|
name="customTitle"
|
|
|
|
placeholder="Flame"
|
2021-06-09 00:59:39 +02:00
|
|
|
value={formData.customTitle}
|
2021-09-06 12:24:01 +02:00
|
|
|
onChange={(e) => inputChangeHandler(e)}
|
2021-06-09 00:59:39 +02:00
|
|
|
/>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
2021-11-18 16:03:44 +01:00
|
|
|
{/* === 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>
|
|
|
|
|
2021-11-05 17:16:19 +01:00
|
|
|
{/* DATE FORMAT */}
|
2021-10-22 15:51:11 +02:00
|
|
|
<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>
|
2021-06-24 10:54:48 +02:00
|
|
|
|
2021-11-18 16:03:44 +01:00
|
|
|
{/* 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 === */}
|
2021-10-11 13:03:31 +02:00
|
|
|
<SettingsHeadline text="App Behavior" />
|
2021-11-05 17:16:19 +01:00
|
|
|
{/* PIN APPS */}
|
2021-06-09 10:58:45 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="pinAppsByDefault">
|
2021-08-06 10:36:05 +02:00
|
|
|
Pin new applications by default
|
|
|
|
</label>
|
2021-06-09 10:58:45 +02:00
|
|
|
<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 })}
|
2021-06-09 10:58:45 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
|
|
|
{/* PIN CATEGORIES */}
|
2021-06-09 10:58:45 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="pinCategoriesByDefault">
|
2021-08-06 10:36:05 +02:00
|
|
|
Pin new categories by default
|
|
|
|
</label>
|
2021-06-09 10:58:45 +02:00
|
|
|
<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 })}
|
2021-06-09 10:58:45 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
|
|
|
{/* SORT TYPE */}
|
2021-06-18 10:38:05 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="useOrdering">Sorting type</label>
|
2021-06-18 10:38:05 +02:00
|
|
|
<select
|
2021-09-06 12:24:01 +02:00
|
|
|
id="useOrdering"
|
|
|
|
name="useOrdering"
|
2021-06-18 10:38:05 +02:00
|
|
|
value={formData.useOrdering}
|
2021-09-06 12:24:01 +02:00
|
|
|
onChange={(e) => inputChangeHandler(e)}
|
2021-06-18 10:38:05 +02:00
|
|
|
>
|
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>
|
2021-06-18 10:38:05 +02:00
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
|
|
|
{/* APPS OPPENING */}
|
2021-06-25 11:24:29 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="appsSameTab">Open applications in the same tab</label>
|
2021-06-25 11:24:29 +02:00
|
|
|
<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 })}
|
2021-06-25 11:24:29 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
|
|
|
{/* BOOKMARKS OPPENING */}
|
2021-06-25 11:24:29 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="bookmarksSameTab">Open bookmarks in the same tab</label>
|
2021-06-25 11:24:29 +02:00
|
|
|
<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 })}
|
2021-06-23 14:15:14 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-07-16 11:55:26 +02:00
|
|
|
|
2021-11-18 16:03:44 +01:00
|
|
|
{/* === MODULES OPTIONS === */}
|
2021-11-10 14:19:41 +01:00
|
|
|
<SettingsHeadline text="Modules" />
|
2021-11-05 17:16:19 +01:00
|
|
|
{/* HIDE APPS */}
|
2021-06-24 10:54:48 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="hideApps">Hide applications</label>
|
2021-06-24 10:54:48 +02:00
|
|
|
<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 })}
|
2021-06-24 10:54:48 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-11-05 17:16:19 +01:00
|
|
|
|
|
|
|
{/* HIDE CATEGORIES */}
|
2021-06-24 10:54:48 +02:00
|
|
|
<InputGroup>
|
2021-09-06 12:24:01 +02:00
|
|
|
<label htmlFor="hideCategories">Hide categories</label>
|
2021-06-24 10:54:48 +02:00
|
|
|
<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 })}
|
2021-06-24 10:54:48 +02:00
|
|
|
>
|
|
|
|
<option value={1}>True</option>
|
|
|
|
<option value={0}>False</option>
|
|
|
|
</select>
|
|
|
|
</InputGroup>
|
2021-08-06 10:36:05 +02:00
|
|
|
|
|
|
|
<Button>Save changes</Button>
|
2021-06-09 00:59:39 +02:00
|
|
|
</form>
|
2021-08-06 10:36:05 +02:00
|
|
|
);
|
|
|
|
};
|