Skip to content

Commit d236bf0

Browse files
authoredMar 26, 2025··
Fix flash for site with dark default mode (#3050)
1 parent d70d566 commit d236bf0

File tree

9 files changed

+67
-41
lines changed

9 files changed

+67
-41
lines changed
 

‎.changeset/spicy-snails-learn.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"gitbook": patch
3+
---
4+
5+
Fix flash when loading sites with dark mode as default theme

‎packages/gitbook-v2/src/app/sites/dynamic/[mode]/[siteURL]/[siteData]/(content)/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default async function SiteDynamicLayout({
2020
const forcedTheme = await getThemeFromMiddleware();
2121

2222
return (
23-
<CustomizationRootLayout customization={context.customization}>
23+
<CustomizationRootLayout forcedTheme={forcedTheme} customization={context.customization}>
2424
<SiteLayout
2525
context={context}
2626
forcedTheme={forcedTheme}

‎packages/gitbook-v2/src/middleware.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,14 @@ async function serveSiteRoutes(requestURL: URL, request: NextRequest) {
199199
routeType,
200200
mode,
201201
encodeURIComponent(siteURLWithoutProtocol),
202-
encodeURIComponent(rison.encode(siteURLData)),
202+
encodeURIComponent(
203+
rison.encode({
204+
...siteURLData,
205+
// The pathname is passed as the next segment of the route and should not cause this segment to change
206+
// based on the page being visited
207+
pathname: '<DO_NOT_USE>',
208+
})
209+
),
203210
pathname,
204211
].join('/');
205212

‎packages/gitbook/src/components/PDF/PDFPage.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {
2-
type CustomizationSettings,
32
type Revision,
43
type RevisionPageDocument,
54
type RevisionPageGroup,
@@ -24,7 +23,7 @@ import { tString } from '@/intl/translate';
2423
import { getPagePDFContainerId } from '@/lib/links';
2524
import { resolvePageId } from '@/lib/pages';
2625
import { tcls } from '@/lib/tailwind';
27-
import { defaultCustomizationForSpace } from '@/lib/utils';
26+
import { defaultCustomization } from '@/lib/utils';
2827
import { type PDFSearchParams, getPDFSearchParams } from './urls';
2928

3029
import { PageControlButtons } from './PageControlButtons';
@@ -57,7 +56,7 @@ export async function PDFPage(props: {
5756
const pdfParams = getPDFSearchParams(new URLSearchParams(searchParams));
5857

5958
const customization =
60-
'customization' in baseContext ? baseContext.customization : defaultCustomizationForSpace();
59+
'customization' in baseContext ? baseContext.customization : defaultCustomization();
6160
const language = getSpaceLanguage(customization);
6261

6362
// Compute the pages to render
@@ -180,7 +179,7 @@ export async function PDFPage(props: {
180179

181180
async function PDFSpaceIntro(props: {
182181
space: Space;
183-
customization: CustomizationSettings | SiteCustomizationSettings;
182+
customization: SiteCustomizationSettings;
184183
}) {
185184
const { space, customization } = props;
186185

‎packages/gitbook/src/components/PDF/PDFRootLayout.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { CustomizationRootLayout } from '@/components/RootLayout';
2-
import { defaultCustomizationForSpace } from '@/lib/utils';
2+
import { defaultCustomization } from '@/lib/utils';
33
import type { GitBookSiteContext, GitBookSpaceContext } from '@v2/lib/context';
44

55
/**
@@ -14,7 +14,7 @@ export async function PDFRootLayout(props: {
1414
return (
1515
<CustomizationRootLayout
1616
customization={
17-
'customization' in context ? context.customization : defaultCustomizationForSpace()
17+
'customization' in context ? context.customization : defaultCustomization()
1818
}
1919
>
2020
{children}

‎packages/gitbook/src/components/RootLayout/CustomizationRootLayout.tsx

+13-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import {
22
CustomizationCorners,
33
CustomizationHeaderPreset,
44
CustomizationIconsStyle,
5-
type CustomizationSettings,
65
CustomizationSidebarBackgroundStyle,
76
CustomizationSidebarListStyle,
7+
CustomizationThemeMode,
88
type CustomizationThemedColor,
99
type CustomizationTint,
1010
type SiteCustomizationSettings,
@@ -41,10 +41,11 @@ import { AnnouncementDismissedScript } from '../Announcement';
4141
* It takes care of setting the theme and the language.
4242
*/
4343
export async function CustomizationRootLayout(props: {
44-
customization: SiteCustomizationSettings | CustomizationSettings;
44+
forcedTheme?: CustomizationThemeMode | null;
45+
customization: SiteCustomizationSettings;
4546
children: React.ReactNode;
4647
}) {
47-
const { customization, children } = props;
48+
const { customization, forcedTheme, children } = props;
4849

4950
const language = getSpaceLanguage(customization);
5051
const tintColor = getTintColor(customization);
@@ -86,7 +87,12 @@ export async function CustomizationRootLayout(props: {
8687
'links' in customization.styling && `links-${customization.styling.links}`,
8788
fontNotoColorEmoji.variable,
8889
ibmPlexMono.variable,
89-
fontData.type === 'default' ? fontData.variable : 'font-custom'
90+
fontData.type === 'default' ? fontData.variable : 'font-custom',
91+
92+
// Set the dark/light class statically to avoid flashing and make it work when JS is disabled
93+
(forcedTheme ?? customization.themes.default) === CustomizationThemeMode.Dark
94+
? 'dark'
95+
: ''
9096
)}
9197
>
9298
<head>
@@ -181,7 +187,7 @@ export async function CustomizationRootLayout(props: {
181187
* If the tint color is not set or it is a space customization, it will return the default color.
182188
*/
183189
function getTintColor(
184-
customization: CustomizationSettings | SiteCustomizationSettings
190+
customization: SiteCustomizationSettings
185191
): CustomizationTint['color'] | undefined {
186192
if ('tint' in customization.styling && customization.styling.tint) {
187193
return {
@@ -228,7 +234,7 @@ function getTintMixColor(
228234
* If it is a space customization, it will return the default styles.
229235
*/
230236
function getSidebarStyles(
231-
customization: CustomizationSettings | SiteCustomizationSettings
237+
customization: SiteCustomizationSettings
232238
): SiteCustomizationSettings['styling']['sidebar'] {
233239
if ('sidebar' in customization.styling) {
234240
return {
@@ -248,7 +254,7 @@ function getSidebarStyles(
248254
* If it is a space customization, it will return the default styles.
249255
*/
250256
function getSemanticColors(
251-
customization: CustomizationSettings | SiteCustomizationSettings
257+
customization: SiteCustomizationSettings
252258
): Pick<
253259
SiteCustomizationSettings['styling'],
254260
'infoColor' | 'successColor' | 'warningColor' | 'dangerColor'

‎packages/gitbook/src/components/TableOfContents/Trademark.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type {
2-
CustomizationSettings,
32
SiteCustomizationSettings,
43
SiteInsightsTrademarkPlacement,
54
Space,
@@ -16,7 +15,7 @@ import { Link } from '../primitives';
1615
*/
1716
export function Trademark(props: {
1817
space: Space;
19-
customization: CustomizationSettings | SiteCustomizationSettings;
18+
customization: SiteCustomizationSettings;
2019
placement: SiteInsightsTrademarkPlacement;
2120
}) {
2221
return (
@@ -69,7 +68,7 @@ export function Trademark(props: {
6968
*/
7069
export function TrademarkLink(props: {
7170
space: Space;
72-
customization: CustomizationSettings | SiteCustomizationSettings;
71+
customization: SiteCustomizationSettings;
7372
placement: SiteInsightsTrademarkPlacement;
7473
}) {
7574
const { space, customization, placement } = props;

‎packages/gitbook/src/intl/server.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomizationSettings, SiteCustomizationSettings } from '@gitbook/api';
1+
import type { SiteCustomizationSettings } from '@gitbook/api';
22

33
import { type TranslationLanguage, languages } from './translations';
44

@@ -7,9 +7,7 @@ export * from './translate';
77
/**
88
* Create the translation context for a space to use in the server components.
99
*/
10-
export function getSpaceLanguage(
11-
customization: CustomizationSettings | SiteCustomizationSettings
12-
): TranslationLanguage {
10+
export function getSpaceLanguage(customization: SiteCustomizationSettings): TranslationLanguage {
1311
const fallback = languages.en;
1412

1513
const { locale } = customization.internationalization;

‎packages/gitbook/src/lib/utils.ts

+31-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
import * as api from '@gitbook/api';
22

33
/**
4-
* Return the customizations with the default values for a space.
4+
* Return the default customization settings for a site.
55
*/
6-
export function defaultCustomizationForSpace(): api.CustomizationSettings {
6+
export function defaultCustomization(): api.SiteCustomizationSettings {
77
return {
8-
internationalization: {
9-
inherit: false,
10-
locale: api.CustomizationLocale.En,
11-
},
128
styling: {
13-
primaryColor: {
14-
dark: '#346DDB',
15-
light: '#346DDB',
16-
},
9+
theme: api.CustomizationTheme.Clean,
10+
primaryColor: { light: '#346DDB', dark: '#346DDB' },
11+
infoColor: { light: '#787878', dark: '#787878' },
12+
warningColor: { light: '#FE9A00', dark: '#FE9A00' },
13+
dangerColor: { light: '#FB2C36', dark: '#FB2C36' },
14+
successColor: { light: '#00C950', dark: '#00C950' },
1715
corners: api.CustomizationCorners.Rounded,
1816
font: api.CustomizationDefaultFont.Inter,
1917
background: api.CustomizationBackground.Plain,
18+
icons: api.CustomizationIconsStyle.Regular,
19+
links: api.CustomizationLinksStyle.Default,
20+
sidebar: {
21+
background: api.CustomizationSidebarBackgroundStyle.Default,
22+
list: api.CustomizationSidebarListStyle.Default,
23+
},
24+
search: api.CustomizationSearchStyle.Subtle,
25+
},
26+
internationalization: {
27+
locale: api.CustomizationLocale.En,
2028
},
2129
favicon: {},
2230
header: {
@@ -28,28 +36,32 @@ export function defaultCustomizationForSpace(): api.CustomizationSettings {
2836
},
2937
themes: {
3038
default: api.CustomizationThemeMode.Light,
31-
toggeable: false,
39+
toggeable: true,
3240
},
33-
trademark: {
41+
pdf: {
3442
enabled: true,
3543
},
3644
feedback: {
3745
enabled: false,
3846
},
39-
pdf: {
40-
enabled: true,
41-
},
4247
aiSearch: {
4348
enabled: true,
4449
},
45-
pagination: {
50+
advancedCustomization: {
4651
enabled: true,
4752
},
48-
privacyPolicy: {},
49-
socialPreview: {},
5053
git: {
5154
showEditLink: false,
5255
},
53-
inherit: false,
56+
pagination: {
57+
enabled: true,
58+
},
59+
trademark: {
60+
enabled: true,
61+
},
62+
privacyPolicy: {
63+
url: 'https://www.gitbook.com/privacy',
64+
},
65+
socialPreview: {},
5466
};
5567
}

0 commit comments

Comments
 (0)
Please sign in to comment.