mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +00:00
Fix data-bs-theme (#1810)
* Fix data-bs-theme * Add other dark themes * Add vaporwave-dark to dark theme list
This commit is contained in:
parent
4a0368bd5b
commit
322a44bf24
4 changed files with 21 additions and 14 deletions
|
@ -2,7 +2,7 @@ import { initializeSite, setupDateFns } from "@utils/app";
|
||||||
import { hydrate } from "inferno-hydrate";
|
import { hydrate } from "inferno-hydrate";
|
||||||
import { Router } from "inferno-router";
|
import { Router } from "inferno-router";
|
||||||
import { App } from "../shared/components/app/app";
|
import { App } from "../shared/components/app/app";
|
||||||
import { HistoryService } from "../shared/services";
|
import { HistoryService, UserService } from "../shared/services";
|
||||||
|
|
||||||
import "bootstrap/js/dist/collapse";
|
import "bootstrap/js/dist/collapse";
|
||||||
import "bootstrap/js/dist/dropdown";
|
import "bootstrap/js/dist/dropdown";
|
||||||
|
@ -14,7 +14,7 @@ async function startClient() {
|
||||||
|
|
||||||
const wrapper = (
|
const wrapper = (
|
||||||
<Router history={HistoryService.history}>
|
<Router history={HistoryService.history}>
|
||||||
<App />
|
<App user={UserService.Instance.myUserInfo} />
|
||||||
</Router>
|
</Router>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ export default async (req: Request, res: Response) => {
|
||||||
|
|
||||||
const wrapper = (
|
const wrapper = (
|
||||||
<StaticRouter location={url} context={isoData}>
|
<StaticRouter location={url} context={isoData}>
|
||||||
<App />
|
<App user={site?.my_user} />
|
||||||
</StaticRouter>
|
</StaticRouter>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ import { dataBsTheme } from "@utils/browser";
|
||||||
import { Component, RefObject, createRef, linkEvent } from "inferno";
|
import { Component, RefObject, createRef, linkEvent } from "inferno";
|
||||||
import { Provider } from "inferno-i18next-dess";
|
import { Provider } from "inferno-i18next-dess";
|
||||||
import { Route, Switch } from "inferno-router";
|
import { Route, Switch } from "inferno-router";
|
||||||
|
import { MyUserInfo } from "lemmy-js-client";
|
||||||
import { IsoDataOptionalSite } from "../../interfaces";
|
import { IsoDataOptionalSite } from "../../interfaces";
|
||||||
import { routes } from "../../routes";
|
import { routes } from "../../routes";
|
||||||
import { FirstLoadService, I18NextService, UserService } from "../../services";
|
import { FirstLoadService, I18NextService, UserService } from "../../services";
|
||||||
|
@ -14,10 +15,14 @@ import { Navbar } from "./navbar";
|
||||||
import "./styles.scss";
|
import "./styles.scss";
|
||||||
import { Theme } from "./theme";
|
import { Theme } from "./theme";
|
||||||
|
|
||||||
export class App extends Component<any, any> {
|
interface AppProps {
|
||||||
|
user?: MyUserInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class App extends Component<AppProps, any> {
|
||||||
private isoData: IsoDataOptionalSite = setIsoData(this.context);
|
private isoData: IsoDataOptionalSite = setIsoData(this.context);
|
||||||
private readonly mainContentRef: RefObject<HTMLElement>;
|
private readonly mainContentRef: RefObject<HTMLElement>;
|
||||||
constructor(props: any, context: any) {
|
constructor(props: AppProps, context: any) {
|
||||||
super(props, context);
|
super(props, context);
|
||||||
this.mainContentRef = createRef();
|
this.mainContentRef = createRef();
|
||||||
}
|
}
|
||||||
|
@ -29,10 +34,6 @@ export class App extends Component<any, any> {
|
||||||
|
|
||||||
user = UserService.Instance.myUserInfo;
|
user = UserService.Instance.myUserInfo;
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.setState({ bsTheme: dataBsTheme(this.user) });
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const siteRes = this.isoData.site_res;
|
const siteRes = this.isoData.site_res;
|
||||||
const siteView = siteRes?.site_view;
|
const siteView = siteRes?.site_view;
|
||||||
|
@ -43,7 +44,7 @@ export class App extends Component<any, any> {
|
||||||
<div
|
<div
|
||||||
id="app"
|
id="app"
|
||||||
className="lemmy-site"
|
className="lemmy-site"
|
||||||
data-bs-theme={this.state?.bsTheme}
|
data-bs-theme={dataBsTheme(this.props.user)}
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
|
import { MyUserInfo } from "lemmy-js-client";
|
||||||
import isDark from "./is-dark";
|
import isDark from "./is-dark";
|
||||||
|
|
||||||
export default function dataBsTheme(user) {
|
export default function dataBsTheme(user?: MyUserInfo) {
|
||||||
return (isDark() && user?.local_user_view.local_user.theme === "browser") ||
|
return (isDark() && user?.local_user_view.local_user.theme === "browser") ||
|
||||||
(user &&
|
(user &&
|
||||||
["darkly", "darkly-red", "darkly-pureblack"].includes(
|
[
|
||||||
user.local_user_view.local_user.theme
|
"darkly",
|
||||||
))
|
"darkly-red",
|
||||||
|
"darkly-pureblack",
|
||||||
|
"darkly-compact",
|
||||||
|
"i386",
|
||||||
|
"vaporwave-dark",
|
||||||
|
].includes(user.local_user_view.local_user.theme))
|
||||||
? "dark"
|
? "dark"
|
||||||
: "light";
|
: "light";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue