diff --git a/README.md b/README.md
index 940cc140..55ec381e 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@ Application behavior can be changed by configuring the following environment var
- `NEXT_PUBLIC_PRO_MODE = 1` enables higher quality image storage (results in increased storage usage)
- `NEXT_PUBLIC_STATICALLY_OPTIMIZE_PAGES = 1` enables static optimization for pages, i.e., renders pages at build time (results in increased project usage)—⚠️ _Experimental_
- `NEXT_PUBLIC_STATICALLY_OPTIMIZE_OG_IMAGES = 1` enables static optimization for OG images, i.e., renders images at build time (results in increased project usage)—⚠️ _Experimental_
-- `NEXT_PUBLIC_MATTE_SETTING = light` constrains the size of each photo, and enables a surrounding border (can be set to `light` or `dark`)
+- `NEXT_PUBLIC_MATTE_PHOTOS = 1` constrains the size of each photo, and enables a surrounding border (potentially useful for photos with tall aspect ratios)
- `NEXT_PUBLIC_BLUR_DISABLED = 1` prevents image blur data being stored and displayed (potentially useful for limiting Postgres usage)
- `NEXT_PUBLIC_GEO_PRIVACY = 1` disables collection/display of location-based data
- `NEXT_PUBLIC_IGNORE_PRIORITY_ORDER = 1` prevents `priority_order` field affecting photo order
diff --git a/src/components/CommandKClient.tsx b/src/components/CommandKClient.tsx
index 0f538e3d..c57696d5 100644
--- a/src/components/CommandKClient.tsx
+++ b/src/components/CommandKClient.tsx
@@ -70,13 +70,13 @@ export default function CommandKClient({
isUserSignedIn,
setUserEmail,
isCommandKOpen: isOpen,
- matteSetting,
- setMatteSetting,
+ arePhotosMatted,
shouldShowBaselineGrid,
shouldDebugBlur,
setIsCommandKOpen: setIsOpen,
setShouldRespondToKeyboardCommands,
setShouldShowBaselineGrid,
+ setArePhotosMatted,
setShouldDebugBlur,
} = useAppState();
@@ -199,15 +199,9 @@ export default function CommandKClient({
heading: 'Debug Tools',
accessory: ,
items: [{
- label: 'Toggle Matte Setting',
- action: () => setMatteSetting?.(prev => {
- if (!prev) {
- return 'light';
- } else if (prev === 'light') {
- return 'dark';
- }
- }),
- annotation: Boolean(matteSetting) ? : undefined,
+ label: 'Toggle Photo Matting',
+ action: () => setArePhotosMatted?.(prev => !prev),
+ annotation: arePhotosMatted ? : undefined,
}, {
label: 'Toggle Blur Debug',
action: () => setShouldDebugBlur?.(prev => !prev),
diff --git a/src/components/ImageBlurFallback.tsx b/src/components/ImageBlurFallback.tsx
index 9007309c..0b922fb5 100644
--- a/src/components/ImageBlurFallback.tsx
+++ b/src/components/ImageBlurFallback.tsx
@@ -75,8 +75,9 @@ export default function ImageBlurFallback(props: ImageProps & {
{(BLUR_ENABLED && props.blurDataURL)
diff --git a/src/photo/PhotoLarge.tsx b/src/photo/PhotoLarge.tsx
index 3adb10b8..71eaf8a0 100644
--- a/src/photo/PhotoLarge.tsx
+++ b/src/photo/PhotoLarge.tsx
@@ -69,7 +69,7 @@ export default function PhotoLarge({
useOnVisible(ref, onVisible);
- const { matteSetting } = useAppState();
+ const { arePhotosMatted } = useAppState();
return (
- = 1 ? 'max-h-[80%]' : 'max-h-[90%]'
- )}
- alt={altTextForPhoto(photo)}
- src={photo.url}
- aspectRatio={photo.aspectRatio}
- blurData={photo.blurData}
- blurCompatibilityMode={doesPhotoNeedBlurCompatibility(photo)}
- priority={priority}
- />
+ = 1
+ ? 'h-[80%]'
+ : 'h-[90%]',
+ )}>
+
+
}
contentSide={
`{variable}`
@@ -135,7 +135,7 @@ export default function SiteChecklistClient({
;
const renderEnvVars = (variables: string[]) =>
-
+
{variables.map(envVar => renderEnvVar(envVar))}
;
@@ -370,26 +370,24 @@ export default function SiteChecklistClient({
{renderSubStatus(
arePagesStaticallyOptimized ? 'checked' : 'optional',
renderEnvVars(['NEXT_PUBLIC_STATICALLY_OPTIMIZE_PAGES']),
- 'translate-y-[4.5px]',
+ 'translate-y-[3.5px]',
)}
{renderSubStatus(
areOGImagesStaticallyOptimized ? 'checked' : 'optional',
renderEnvVars(['NEXT_PUBLIC_STATICALLY_OPTIMIZE_OG_IMAGES']),
- 'translate-y-[4.5px]',
+ 'translate-y-[3.5px]',
)}
- Set environment variable to {'"light"'} or {'"dark"'} to
+ Set environment variable to {'"1"'} to constrain the size
{' '}
- constrain the size of each photo, and enable a surrounding border:
- {renderEnvVars(['NEXT_PUBLIC_MATTE_SETTING'])}
+ of each photo, and enable a surrounding border:
+ {renderEnvVars(['NEXT_PUBLIC_MATTE_PHOTOS'])}
>
+ arePhotosMatted?: boolean
+ setArePhotosMatted?: Dispatch>
swrTimestamp?: number
invalidateSwr?: () => void
userEmail?: string
diff --git a/src/state/AppStateProvider.tsx b/src/state/AppStateProvider.tsx
index bb4ceebf..9e0a2701 100644
--- a/src/state/AppStateProvider.tsx
+++ b/src/state/AppStateProvider.tsx
@@ -1,12 +1,12 @@
'use client';
import { useState, useEffect, ReactNode, useCallback } from 'react';
-import { AppStateContext, MatteSetting } from './AppState';
+import { AppStateContext } from './AppState';
import { AnimationConfig } from '@/components/AnimateItems';
import usePathnames from '@/utility/usePathnames';
import { getAuthAction } from '@/auth/actions';
import useSWR from 'swr';
-import { MATTE_SETTING } from '@/site/config';
+import { MATTE_PHOTOS } from '@/site/config';
export default function AppStateProvider({
children,
@@ -17,8 +17,8 @@ export default function AppStateProvider({
const [hasLoaded, setHasLoaded] =
useState(false);
- const [matteSetting, setMatteSetting] =
- useState(MATTE_SETTING);
+ const [arePhotosMatted, setArePhotosMatted] =
+ useState(MATTE_PHOTOS);
const [swrTimestamp, setSwrTimestamp] =
useState(Date.now());
const [userEmail, setUserEmail] =
@@ -53,8 +53,8 @@ export default function AppStateProvider({
value={{
previousPathname,
hasLoaded,
- matteSetting,
- setMatteSetting,
+ arePhotosMatted,
+ setArePhotosMatted,
swrTimestamp,
invalidateSwr,
setHasLoaded,