mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-21 22:50:59 -05:00
feat: add column element
This commit is contained in:
parent
906f15f103
commit
81bf325990
7 changed files with 140 additions and 122 deletions
|
@ -90,7 +90,7 @@
|
||||||
"@hcaptcha/react-hcaptcha": "^0.3.6",
|
"@hcaptcha/react-hcaptcha": "^0.3.6",
|
||||||
"@insertish/vite-plugin-babel-macros": "^1.0.5",
|
"@insertish/vite-plugin-babel-macros": "^1.0.5",
|
||||||
"@preact/preset-vite": "^2.0.0",
|
"@preact/preset-vite": "^2.0.0",
|
||||||
"@revoltchat/ui": "1.0.35",
|
"@revoltchat/ui": "1.0.36",
|
||||||
"@rollup/plugin-replace": "^2.4.2",
|
"@rollup/plugin-replace": "^2.4.2",
|
||||||
"@styled-icons/boxicons-logos": "^10.38.0",
|
"@styled-icons/boxicons-logos": "^10.38.0",
|
||||||
"@styled-icons/boxicons-regular": "^10.38.0",
|
"@styled-icons/boxicons-regular": "^10.38.0",
|
||||||
|
|
|
@ -3,8 +3,9 @@ import { observer } from "mobx-react-lite";
|
||||||
import styles from "./Panes.module.scss";
|
import styles from "./Panes.module.scss";
|
||||||
import { Text } from "preact-i18n";
|
import { Text } from "preact-i18n";
|
||||||
|
|
||||||
import CollapsibleSection from "../../../components/common/CollapsibleSection";
|
import { Column } from "@revoltchat/ui";
|
||||||
|
|
||||||
|
import CollapsibleSection from "../../../components/common/CollapsibleSection";
|
||||||
import {
|
import {
|
||||||
ThemeBaseSelectorShim,
|
ThemeBaseSelectorShim,
|
||||||
ThemeShopShim,
|
ThemeShopShim,
|
||||||
|
@ -37,8 +38,10 @@ export const Appearance = observer(() => {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.appearance.theme_options.title" />
|
<Text id="app.settings.pages.appearance.theme_options.title" />
|
||||||
</h3>
|
</h3>
|
||||||
|
<Column>
|
||||||
<DisplayTransparencyShim />
|
<DisplayTransparencyShim />
|
||||||
<DisplaySeasonalShim />
|
<DisplaySeasonalShim />
|
||||||
|
</Column>
|
||||||
<hr />
|
<hr />
|
||||||
<DisplayFontShim />
|
<DisplayFontShim />
|
||||||
<DisplayLigaturesShim />
|
<DisplayLigaturesShim />
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { observer } from "mobx-react-lite";
|
||||||
import styles from "./Panes.module.scss";
|
import styles from "./Panes.module.scss";
|
||||||
import { Text } from "preact-i18n";
|
import { Text } from "preact-i18n";
|
||||||
|
|
||||||
import { Checkbox } from "@revoltchat/ui";
|
import { Checkbox, Column } from "@revoltchat/ui";
|
||||||
|
|
||||||
import { useApplicationState } from "../../../mobx/State";
|
import { useApplicationState } from "../../../mobx/State";
|
||||||
import {
|
import {
|
||||||
|
@ -19,15 +19,19 @@ export const ExperimentsPage = observer(() => {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.experiments.features" />
|
<Text id="app.settings.pages.experiments.features" />
|
||||||
</h3>
|
</h3>
|
||||||
|
<Column>
|
||||||
{AVAILABLE_EXPERIMENTS.map((key) => (
|
{AVAILABLE_EXPERIMENTS.map((key) => (
|
||||||
<Checkbox
|
<Checkbox
|
||||||
key={key}
|
key={key}
|
||||||
value={experiments.isEnabled(key)}
|
value={experiments.isEnabled(key)}
|
||||||
onChange={(enabled) => experiments.setEnabled(key, enabled)}
|
onChange={(enabled) =>
|
||||||
|
experiments.setEnabled(key, enabled)
|
||||||
|
}
|
||||||
description={EXPERIMENTS[key].description}
|
description={EXPERIMENTS[key].description}
|
||||||
title={EXPERIMENTS[key].title}
|
title={EXPERIMENTS[key].title}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
</Column>
|
||||||
{AVAILABLE_EXPERIMENTS.length === 0 && (
|
{AVAILABLE_EXPERIMENTS.length === 0 && (
|
||||||
<div className={styles.empty}>
|
<div className={styles.empty}>
|
||||||
<Text id="app.settings.pages.experiments.not_available" />
|
<Text id="app.settings.pages.experiments.not_available" />
|
||||||
|
|
|
@ -4,7 +4,7 @@ import styles from "./Panes.module.scss";
|
||||||
import { Text } from "preact-i18n";
|
import { Text } from "preact-i18n";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
|
|
||||||
import { Checkbox } from "@revoltchat/ui";
|
import { Checkbox, Column } from "@revoltchat/ui";
|
||||||
|
|
||||||
import { urlBase64ToUint8Array } from "../../../lib/conversion";
|
import { urlBase64ToUint8Array } from "../../../lib/conversion";
|
||||||
|
|
||||||
|
@ -36,6 +36,7 @@ export const Notifications = observer(() => {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.notifications.push_notifications" />
|
<Text id="app.settings.pages.notifications.push_notifications" />
|
||||||
</h3>
|
</h3>
|
||||||
|
<Column>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
disabled={!("Notification" in window)}
|
disabled={!("Notification" in window)}
|
||||||
value={settings.get("notifications:desktop", false)!}
|
value={settings.get("notifications:desktop", false)!}
|
||||||
|
@ -76,12 +77,15 @@ export const Notifications = observer(() => {
|
||||||
await navigator.serviceWorker?.getRegistration();
|
await navigator.serviceWorker?.getRegistration();
|
||||||
if (reg) {
|
if (reg) {
|
||||||
if (pushEnabled) {
|
if (pushEnabled) {
|
||||||
const sub = await reg.pushManager.subscribe({
|
const sub = await reg.pushManager.subscribe(
|
||||||
|
{
|
||||||
userVisibleOnly: true,
|
userVisibleOnly: true,
|
||||||
applicationServerKey: urlBase64ToUint8Array(
|
applicationServerKey:
|
||||||
|
urlBase64ToUint8Array(
|
||||||
client.configuration!.vapid,
|
client.configuration!.vapid,
|
||||||
),
|
),
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
|
||||||
// tell the server we just subscribed
|
// tell the server we just subscribed
|
||||||
const json = sub.toJSON();
|
const json = sub.toJSON();
|
||||||
|
@ -109,9 +113,11 @@ export const Notifications = observer(() => {
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</Column>
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.notifications.sounds" />
|
<Text id="app.settings.pages.notifications.sounds" />
|
||||||
</h3>
|
</h3>
|
||||||
|
<Column>
|
||||||
{settings.sounds.getState().map(({ id, enabled }) => (
|
{settings.sounds.getState().map(({ id, enabled }) => (
|
||||||
<Checkbox
|
<Checkbox
|
||||||
key={id}
|
key={id}
|
||||||
|
@ -126,6 +132,7 @@ export const Notifications = observer(() => {
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
</Column>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
|
@ -481,6 +481,8 @@
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
||||||
|
transition: 0.1s ease background-color;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: var(--secondary-background);
|
background: var(--secondary-background);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { observer } from "mobx-react-lite";
|
||||||
import styles from "./Panes.module.scss";
|
import styles from "./Panes.module.scss";
|
||||||
import { Text } from "preact-i18n";
|
import { Text } from "preact-i18n";
|
||||||
|
|
||||||
import { Checkbox } from "@revoltchat/ui";
|
import { Checkbox, Column } from "@revoltchat/ui";
|
||||||
|
|
||||||
import { useApplicationState } from "../../../mobx/State";
|
import { useApplicationState } from "../../../mobx/State";
|
||||||
import { SyncKeys } from "../../../mobx/stores/Sync";
|
import { SyncKeys } from "../../../mobx/stores/Sync";
|
||||||
|
@ -20,6 +20,7 @@ export const Sync = observer(() => {
|
||||||
<h3>
|
<h3>
|
||||||
<Text id="app.settings.pages.sync.categories" />
|
<Text id="app.settings.pages.sync.categories" />
|
||||||
</h3>
|
</h3>
|
||||||
|
<Column>
|
||||||
{(
|
{(
|
||||||
[
|
[
|
||||||
["appearance", "appearance.title"],
|
["appearance", "appearance.title"],
|
||||||
|
@ -40,6 +41,7 @@ export const Sync = observer(() => {
|
||||||
onChange={() => sync.toggle(key)}
|
onChange={() => sync.toggle(key)}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
</Column>
|
||||||
{/*<h5 style={{ marginTop: "20px", color: "grey" }}>
|
{/*<h5 style={{ marginTop: "20px", color: "grey" }}>
|
||||||
Last sync at 12:00
|
Last sync at 12:00
|
||||||
</h5>*/}
|
</h5>*/}
|
||||||
|
|
10
yarn.lock
10
yarn.lock
|
@ -2220,9 +2220,9 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@revoltchat/ui@npm:1.0.35":
|
"@revoltchat/ui@npm:1.0.36":
|
||||||
version: 1.0.35
|
version: 1.0.36
|
||||||
resolution: "@revoltchat/ui@npm:1.0.35"
|
resolution: "@revoltchat/ui@npm:1.0.36"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@styled-icons/boxicons-logos": ^10.38.0
|
"@styled-icons/boxicons-logos": ^10.38.0
|
||||||
"@styled-icons/boxicons-regular": ^10.38.0
|
"@styled-icons/boxicons-regular": ^10.38.0
|
||||||
|
@ -2235,7 +2235,7 @@ __metadata:
|
||||||
react-device-detect: "*"
|
react-device-detect: "*"
|
||||||
react-virtuoso: "*"
|
react-virtuoso: "*"
|
||||||
revolt.js: "*"
|
revolt.js: "*"
|
||||||
checksum: 39831a463f030b1361401270b8d1d10c18b28c964b878083784544902e62682ddee0634fe087af99437963d24b585ac680d8b7c2df0d298bffb3bddc140a52ac
|
checksum: 97eee93df28f2ca826c7cb1493e3c0efe0ab83d3ef8ea3d3ec013ff3b527f2692193ef50c8e44d144f96d49457c4d290a4dc708a38ab527f3a4290e0d05b41b5
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -3521,7 +3521,7 @@ __metadata:
|
||||||
"@hcaptcha/react-hcaptcha": ^0.3.6
|
"@hcaptcha/react-hcaptcha": ^0.3.6
|
||||||
"@insertish/vite-plugin-babel-macros": ^1.0.5
|
"@insertish/vite-plugin-babel-macros": ^1.0.5
|
||||||
"@preact/preset-vite": ^2.0.0
|
"@preact/preset-vite": ^2.0.0
|
||||||
"@revoltchat/ui": 1.0.35
|
"@revoltchat/ui": 1.0.36
|
||||||
"@rollup/plugin-replace": ^2.4.2
|
"@rollup/plugin-replace": ^2.4.2
|
||||||
"@styled-icons/boxicons-logos": ^10.38.0
|
"@styled-icons/boxicons-logos": ^10.38.0
|
||||||
"@styled-icons/boxicons-regular": ^10.38.0
|
"@styled-icons/boxicons-regular": ^10.38.0
|
||||||
|
|
Loading…
Reference in a new issue