Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(web): support set photo overlay on layer inspector [VIZ-1349] #1522

Merged
merged 3 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions server/pkg/builtin/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2837,12 +2837,9 @@ extensions:
- id: enabled
type: bool
title: Enabled PhotoOverlay
# defaultValue: false
# description: xxxxxx
defaultValue: true
- id: cameraDuration
type: number
title: PhotoOverlay Camera Duration
# suffix: s
# min: 0
# defaultValue: 2
# description: xxxxxx
title: Camera Duration
defaultValue: 1
description: The duration (in seconds) it takes for the camera to fly to the captured position.
1 change: 1 addition & 0 deletions server/pkg/builtin/manifest_ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1462,3 +1462,4 @@ extensions:
title: 有効
cameraDuration:
title: カメラ移動時間
description: カメラがキャプチャされた位置へ移動するのにかかる時間(秒)
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { filterVisibleItems } from "@reearth/beta/ui/fields/utils";
import { usePhotoOverlayFetcher } from "@reearth/services/api";
import { Item, convert } from "@reearth/services/api/propertyApi/utils";
import { useCallback, useMemo } from "react";

export default ({ layerId, property }: { layerId: string; property?: any }) => {

Check warning on line 6 in web/src/beta/features/Editor/Map/InspectorPanel/LayerInspector/PhotoOverlaySettings/hooks.ts

View workflow job for this annotation

GitHub Actions / ci-web / ci

Unexpected any. Specify a different type
const { useCreateNLSPhotoOverlay } = usePhotoOverlayFetcher();

const visibleItems: Item[] | undefined = useMemo(
() => filterVisibleItems(convert(property)),
[property]
);

const handlePhotoOverlayCreate = useCallback(async () => {
if (!property) {
await useCreateNLSPhotoOverlay({ layerId });
}
}, [layerId, property, useCreateNLSPhotoOverlay]);

return {
visibleItems,
handlePhotoOverlayCreate
};
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import { SwitchField } from "@reearth/beta/ui/fields";
import PropertyItem from "@reearth/beta/ui/fields/Properties";
import { NLSPhotoOverlay } from "@reearth/services/api/layersApi/utils";
import { useT } from "@reearth/services/i18n";
import { styled } from "@reearth/services/theme";
import { FC } from "react";

import useHooks from "./hooks";

type Props = {
selectedLayerId: string;
photoOverlay?: NLSPhotoOverlay;
};

const PhotoOverlaySettings: FC<Props> = ({ selectedLayerId, photoOverlay }) => {
const t = useT();

const { visibleItems, handlePhotoOverlayCreate } = useHooks({
layerId: selectedLayerId,
property: photoOverlay?.property
});

return (
<Wrapper>
{visibleItems ? (
visibleItems.map((i) => (
<PropertyItem
key={i.id ?? ""}
propertyId={photoOverlay?.property?.id}
item={i}
/>
))
) : (
<SwitchField
title={t("Enable PhotoOverlay")}
description={t("Show photo overlay when the user clicks on a layer")}
value={false}
onChange={handlePhotoOverlayCreate}
/>
)}
</Wrapper>
);
};

const Wrapper = styled("div")(({ theme }) => ({
display: "flex",
flexDirection: "column",
gap: theme.spacing.large
}));

export default PhotoOverlaySettings;
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import {
SelectedFeature,
SelectedLayer
} from "@reearth/beta/features/Editor/hooks/useLayers";
import {
GeoJsonFeatureUpdateProps
} from "@reearth/beta/features/Editor/hooks/useSketch";
import { GeoJsonFeatureUpdateProps } from "@reearth/beta/features/Editor/hooks/useSketch";
import { TabItem, Tabs } from "@reearth/beta/lib/reearth-ui";
import { ComputedFeature, Geometry } from "@reearth/core";
import { NLSLayer, SketchFeature } from "@reearth/services/api/layersApi/utils";
Expand All @@ -18,6 +16,7 @@ import DataSource from "./DataSource";
import FeatureInspector from "./FeatureInspector";
import InfoboxSettings from "./InfoboxSettings";
import LayerStyle from "./LayerStyle";
import PhotoOverlaySettings from "./PhotoOverlaySettings";

const LAYER_INSPECTOR_TAB_STORAGE_KEY =
"reearth-visualizer-map-layer-inspector-tab";
Expand Down Expand Up @@ -53,8 +52,8 @@ const InspectorTabs: FC<Props> = ({
}) => {
const t = useT();

const tabItems: TabItem[] = useMemo(
() => [
const tabItems: TabItem[] = useMemo(() => {
const tabs: TabItem[] = [
{
id: "dataSource",
icon: "data",
Expand Down Expand Up @@ -109,20 +108,36 @@ const InspectorTabs: FC<Props> = ({
/>
)
}
],
[
t,
selectedLayer?.layer,
onLayerNameUpdate,
onLayerConfigUpdate,
selectedFeature,
selectedSketchFeature,
onGeoJsonFeatureUpdate,
layerStyles,
layers,
sceneId
]
);
];

if (selectedLayer?.layer?.isSketch) {
tabs.push({
id: "photoOverlaySettings",
icon: "image",
placement: "left",
tooltipText: t("Photo Overlay"),
children: (
<PhotoOverlaySettings
selectedLayerId={selectedLayer.layer.id}
photoOverlay={selectedLayer.layer?.photoOverlay}
/>
)
});
}

return tabs;
}, [
t,
selectedLayer?.layer,
onLayerNameUpdate,
onLayerConfigUpdate,
selectedFeature,
selectedSketchFeature,
onGeoJsonFeatureUpdate,
layerStyles,
layers,
sceneId
]);

const [currentTab, setCurrentTab] = useState(
localStorage.getItem(LAYER_INSPECTOR_TAB_STORAGE_KEY) ?? "dataSource"
Expand Down
12 changes: 5 additions & 7 deletions web/src/beta/features/Editor/Visualizer/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
sceneProperty2ViewerPropertyMapping
} from "@reearth/beta/utils/convert-object";
import { Camera } from "@reearth/beta/utils/value";
import type {
LatLng,
ComputedLayer,
ComputedFeature,
} from "@reearth/core";
import type { LatLng, ComputedLayer, ComputedFeature } from "@reearth/core";
import {
useLayersFetcher,
useSceneFetcher,
Expand All @@ -34,7 +30,10 @@

import { useCurrentCamera } from "../atoms";
import type { LayerSelectProps, SelectedLayer } from "../hooks/useLayers";
import { PhotoOverlayPreviewAtom, SketchFeatureTooltipAtom } from "../Map/state";
import {
PhotoOverlayPreviewAtom,
SketchFeatureTooltipAtom
} from "../Map/state";

import { convertWidgets, processLayers, processProperty } from "./convert";
import { convertStory } from "./convert-story";
Expand Down Expand Up @@ -193,7 +192,6 @@
visible: true
}));
}, [nlsLayers, layerStyles, infoboxBlockNames, showStoryPanel]);

const handleCoreLayerSelect = useCallback(
(
layerId?: string,
Expand Down Expand Up @@ -254,7 +252,7 @@
// Plugin
const pluginProperty = useMemo(
() =>
scene?.plugins.reduce<Record<string, any>>((a, b) => {

Check warning on line 255 in web/src/beta/features/Editor/Visualizer/hooks.ts

View workflow job for this annotation

GitHub Actions / ci-web / ci

Unexpected any. Specify a different type
a[b.pluginId] = processProperty(b.property);
return a;
}, {}),
Expand Down Expand Up @@ -341,8 +339,8 @@
schemaItemId?: string,
fieldId?: string,
itemId?: string,
vt?: any,

Check warning on line 342 in web/src/beta/features/Editor/Visualizer/hooks.ts

View workflow job for this annotation

GitHub Actions / ci-web / ci

Unexpected any. Specify a different type
v?: any

Check warning on line 343 in web/src/beta/features/Editor/Visualizer/hooks.ts

View workflow job for this annotation

GitHub Actions / ci-web / ci

Unexpected any. Specify a different type
) => {
if (!propertyId || !schemaItemId || !fieldId || !vt) return;
await useUpdatePropertyValue(
Expand Down
38 changes: 19 additions & 19 deletions web/src/beta/features/Editor/hooks/useLayers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,25 +206,25 @@ export default function ({
[nlsLayers, selectedLayer, handleLayerSelect, useRemoveNLSLayer]
);

const selectedFeature: SelectedFeature | undefined = useMemo(() => {
if (!selectedLayer?.computedFeature?.id) return;
const { id, geometry, properties } =
selectedLayer.layer?.config?.data?.type === "3dtiles" ||
selectedLayer.layer?.config?.data?.type === "osm-buildings" ||
selectedLayer.layer?.config?.data?.type === "google-photorealistic" ||
selectedLayer.layer?.config?.data?.type === "mvt"
? selectedLayer.computedFeature
: (selectedLayer.computedLayer?.features?.find(
(f) => f.id === selectedLayer.computedFeature?.id
) ?? {});

if (!id) return;
return {
id,
geometry,
properties
};
}, [selectedLayer]);
const selectedFeature: SelectedFeature | undefined = useMemo(() => {
if (!selectedLayer?.computedFeature?.id) return;
const { id, geometry, properties } =
selectedLayer.layer?.config?.data?.type === "3dtiles" ||
selectedLayer.layer?.config?.data?.type === "osm-buildings" ||
selectedLayer.layer?.config?.data?.type === "google-photorealistic" ||
selectedLayer.layer?.config?.data?.type === "mvt"
? selectedLayer.computedFeature
: (selectedLayer.computedLayer?.features?.find(
(f) => f.id === selectedLayer.computedFeature?.id
) ?? {});

if (!id) return;
return {
id,
geometry,
properties
};
}, [selectedLayer]);

const handleLayerAdd = useCallback(
async (inp: LayerAddProps) => {
Expand Down
29 changes: 29 additions & 0 deletions web/src/beta/features/Published/convert-nls-layers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { NLSLayer } from "@reearth/services/api/layersApi/utils";

import { PublishedNLSLayer } from "./types";

export const convertNLSLayers = (
layers: PublishedNLSLayer[] | undefined
): NLSLayer[] | undefined => {
if (!layers) {
return;
}

return layers.map((l) => ({
id: l.id,
title: l.title,
visible: !!l.isVisible,
layerType: l.layerType,
config: l.config,
isSketch: l.isSketch,
infobox: l.nlsInfobox,
photoOverlay: l.nlsPhotoOverlay
? {
processedProperty: {
enabled: l.nlsPhotoOverlay.property?.default?.enabled,
cameraDuration: l.nlsPhotoOverlay.property?.default?.cameraDuration
}
}
: undefined
}));
};
7 changes: 7 additions & 0 deletions web/src/beta/features/Published/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { WidgetThemeOptions } from "../Visualizer/Crust/theme";

import { processProperty } from "./convert";
import { processLayers, processNewProperty } from "./convert-new-property";
import { convertNLSLayers } from "./convert-nls-layers";
import { useGA } from "./googleAnalytics/useGA";
import type {
PublishedData,
Expand Down Expand Up @@ -256,6 +257,11 @@ export default (alias?: string) => {
}));
}, [data?.nlsLayers, data?.layerStyles, story]);

const nlsLayers = useMemo(
() => convertNLSLayers(data?.nlsLayers),
[data?.nlsLayers]
);

useEffect(() => {
const url = dataUrl(actualAlias);
(async () => {
Expand Down Expand Up @@ -308,6 +314,7 @@ export default (alias?: string) => {
viewerProperty,
pluginProperty,
layers,
nlsLayers,
widgets,
widgetThemeOptions,
story,
Expand Down
2 changes: 2 additions & 0 deletions web/src/beta/features/Published/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default function Published({ alias }: Props) {
viewerProperty,
pluginProperty,
layers,
nlsLayers,
widgets,
widgetThemeOptions,
story,
Expand All @@ -34,6 +35,7 @@ export default function Published({ alias }: Props) {
isBuilt
ready={ready}
layers={layers}
nlsLayers={nlsLayers}
widgets={widgets}
widgetThemeOptions={widgetThemeOptions}
story={story}
Expand Down
13 changes: 11 additions & 2 deletions web/src/beta/features/Published/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type PublishedData = {
publishedAt: string;
property?: SceneProperty;
plugins?: Record<string, Plugin>;
nlsLayers?: NLSLayer[];
nlsLayers?: PublishedNLSLayer[];
layerStyles?: LayerStyle[];
widgets?: Widget[];
widgetAlignSystem?: WidgetAlignSystem;
Expand Down Expand Up @@ -54,7 +54,7 @@ export type Plugin = {
property: any;
};

export type NLSLayer = {
export type PublishedNLSLayer = {
id: string;
title: string;
layerType: "simple";
Expand All @@ -71,6 +71,15 @@ export type NLSLayer = {
isSketch?: boolean;
sketchInfo?: SketchInfo;
nlsInfobox?: any;
nlsPhotoOverlay?: {
id?: string;
property?: {
default?: {
enabled?: boolean;
cameraDuration?: number;
};
};
};
};

export type SketchInfo = {
Expand Down
Loading
Loading