Skip to content

Commit

Permalink
Fix data-bs-theme (#1810)
Browse files Browse the repository at this point in the history
* Fix data-bs-theme

* Add other dark themes

* Add vaporwave-dark to dark theme list
  • Loading branch information
SleeplessOne1917 authored Jul 4, 2023
1 parent 4a0368b commit 322a44b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/client/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { initializeSite, setupDateFns } from "@utils/app";
import { hydrate } from "inferno-hydrate";
import { Router } from "inferno-router";
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/dropdown";
Expand All @@ -14,7 +14,7 @@ async function startClient() {

const wrapper = (
<Router history={HistoryService.history}>
<App />
<App user={UserService.Instance.myUserInfo} />
</Router>
);

Expand Down
2 changes: 1 addition & 1 deletion src/server/handlers/catch-all-handler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default async (req: Request, res: Response) => {

const wrapper = (
<StaticRouter location={url} context={isoData}>
<App />
<App user={site?.my_user} />
</StaticRouter>
);

Expand Down
15 changes: 8 additions & 7 deletions src/shared/components/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { dataBsTheme } from "@utils/browser";
import { Component, RefObject, createRef, linkEvent } from "inferno";
import { Provider } from "inferno-i18next-dess";
import { Route, Switch } from "inferno-router";
import { MyUserInfo } from "lemmy-js-client";
import { IsoDataOptionalSite } from "../../interfaces";
import { routes } from "../../routes";
import { FirstLoadService, I18NextService, UserService } from "../../services";
Expand All @@ -14,10 +15,14 @@ import { Navbar } from "./navbar";
import "./styles.scss";
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 readonly mainContentRef: RefObject<HTMLElement>;
constructor(props: any, context: any) {
constructor(props: AppProps, context: any) {
super(props, context);
this.mainContentRef = createRef();
}
Expand All @@ -29,10 +34,6 @@ export class App extends Component<any, any> {

user = UserService.Instance.myUserInfo;

componentDidMount() {
this.setState({ bsTheme: dataBsTheme(this.user) });
}

render() {
const siteRes = this.isoData.site_res;
const siteView = siteRes?.site_view;
Expand All @@ -43,7 +44,7 @@ export class App extends Component<any, any> {
<div
id="app"
className="lemmy-site"
data-bs-theme={this.state?.bsTheme}
data-bs-theme={dataBsTheme(this.props.user)}
>
<button
type="button"
Expand Down
14 changes: 10 additions & 4 deletions src/shared/utils/browser/data-bs-theme.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import { MyUserInfo } from "lemmy-js-client";
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") ||
(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"
: "light";
}

0 comments on commit 322a44b

Please sign in to comment.