From bf3e3101fc1933a7be753d2f2c084b437ec37896 Mon Sep 17 00:00:00 2001 From: oniwawa Date: Tue, 26 May 2026 12:47:55 +0900 Subject: [PATCH 01/18] =?UTF-8?q?[feat]Mapframe=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(frontend)/(dev)/dev/common/page.tsx | 6 ++++ src/components/ui/MapFrame.tsx | 37 ++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 src/components/ui/MapFrame.tsx diff --git a/src/app/(frontend)/(dev)/dev/common/page.tsx b/src/app/(frontend)/(dev)/dev/common/page.tsx index aeeda2b..10dedd4 100644 --- a/src/app/(frontend)/(dev)/dev/common/page.tsx +++ b/src/app/(frontend)/(dev)/dev/common/page.tsx @@ -30,6 +30,7 @@ import { DevSection } from "../_components/DevSection"; import ButtonMain from "@/components/ui/ButtonMain"; import SectionTitle from "@/components/ui/SectionTitle"; import { sampleNewsItems } from "../_data/sampleNews"; +import MapFrame from "@/components/ui/MapFrame"; const previewSlides = ["Slide 1", "Slide 2", "Slide 3"]; const noImportantNewsMessage = "現在、重要なお知らせはありません。"; @@ -147,6 +148,11 @@ export default function DevCommonComponentsPage() { + + + + + ); diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx new file mode 100644 index 0000000..c0015b2 --- /dev/null +++ b/src/components/ui/MapFrame.tsx @@ -0,0 +1,37 @@ +import Image from "next/image"; + +type MapFrameProps = { + imageSrc?: string; + alt?: string; + title?: string; +}; + +export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) { + return ( +
+ +
+
+
+ {title} +
+
+ +
+
+ {imageSrc ? ( + {alt + ) : ( +
+

MAP

+

NO IMAGE

+
+ )} +
+
+ +
+ + ); +} + From ef0415bafbd3c291ecab20842f6fc8b8bacc1c86 Mon Sep 17 00:00:00 2001 From: oniwawa <173151966+oniwawa@users.noreply.github.com> Date: Tue, 26 May 2026 03:49:07 +0000 Subject: [PATCH 02/18] style: auto format by oxfmt --- src/app/(frontend)/(dev)/dev/common/page.tsx | 9 +++-- src/components/ui/MapFrame.tsx | 40 +++++++++----------- 2 files changed, 24 insertions(+), 25 deletions(-) diff --git a/src/app/(frontend)/(dev)/dev/common/page.tsx b/src/app/(frontend)/(dev)/dev/common/page.tsx index 10dedd4..2c8c832 100644 --- a/src/app/(frontend)/(dev)/dev/common/page.tsx +++ b/src/app/(frontend)/(dev)/dev/common/page.tsx @@ -149,9 +149,12 @@ export default function DevCommonComponentsPage() { - - - + + diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx index c0015b2..45b4b9f 100644 --- a/src/components/ui/MapFrame.tsx +++ b/src/components/ui/MapFrame.tsx @@ -8,30 +8,26 @@ type MapFrameProps = { export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) { return ( -
- -
-
-
- {title} -
-
- -
-
- {imageSrc ? ( - {alt - ) : ( -
-

MAP

-

NO IMAGE

-
- )} +
+
+
+
{title}
+
+
+
+ {imageSrc ? ( + {alt + ) : ( +
+

MAP

+

NO IMAGE

+ )}
- +
- ); } - From a5be1caef2af3dcaa36c035c9aa2af599b77c9f5 Mon Sep 17 00:00:00 2001 From: oniwawa Date: Wed, 27 May 2026 11:22:42 +0900 Subject: [PATCH 03/18] =?UTF-8?q?[feat]noImage=E3=81=AB=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E8=89=B2=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/MapFrame.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx index 45b4b9f..b9584c5 100644 --- a/src/components/ui/MapFrame.tsx +++ b/src/components/ui/MapFrame.tsx @@ -21,7 +21,7 @@ export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) { {imageSrc ? ( {alt ) : ( -
+

MAP

NO IMAGE

From 0e2fd6a9b99bd530f438646ea11bafd1f82978dc Mon Sep 17 00:00:00 2001 From: oniwawa <173151966+oniwawa@users.noreply.github.com> Date: Wed, 27 May 2026 02:23:20 +0000 Subject: [PATCH 04/18] style: auto format by oxfmt --- src/components/ui/MapFrame.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx index b9584c5..ecbcaeb 100644 --- a/src/components/ui/MapFrame.tsx +++ b/src/components/ui/MapFrame.tsx @@ -21,7 +21,7 @@ export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) { {imageSrc ? ( {alt ) : ( -
+

MAP

NO IMAGE

From 2514b1434412abdf7210cce8460741ec07c3ecd3 Mon Sep 17 00:00:00 2001 From: oniwawa Date: Wed, 27 May 2026 11:34:30 +0900 Subject: [PATCH 05/18] =?UTF-8?q?[fix]=E3=82=BF=E3=82=A4=E3=83=88=E3=83=AB?= =?UTF-8?q?=E9=83=A8=E5=88=86=E3=81=AE=E3=82=B3=E3=83=BC=E3=83=89=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/MapFrame.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx index ecbcaeb..10c2d41 100644 --- a/src/components/ui/MapFrame.tsx +++ b/src/components/ui/MapFrame.tsx @@ -11,11 +11,11 @@ export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) {
-
{title}
+
{title}
{imageSrc ? ( From 2384eaaf38ee17d7ad840b2187c62a15766acb4c Mon Sep 17 00:00:00 2001 From: oniwawa <173151966+oniwawa@users.noreply.github.com> Date: Wed, 27 May 2026 02:39:14 +0000 Subject: [PATCH 06/18] style: auto format by oxfmt --- src/components/ui/MapFrame.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/MapFrame.tsx b/src/components/ui/MapFrame.tsx index 10c2d41..3c549a9 100644 --- a/src/components/ui/MapFrame.tsx +++ b/src/components/ui/MapFrame.tsx @@ -11,7 +11,7 @@ export default function MapFrame({ imageSrc, alt, title }: MapFrameProps) {
-
{title}
+
{title}
Date: Wed, 27 May 2026 18:23:54 +0900 Subject: [PATCH 07/18] =?UTF-8?q?[fix]=E3=82=BF=E3=82=A4=E3=83=88=E3=83=AB?= =?UTF-8?q?=E3=81=AE=E5=B9=85=E3=81=AE=E4=BB=95=E6=A7=98=E3=82=92=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(frontend)/(dev)/dev/common/page.tsx | 7 ++----- src/components/aria/DateRangePicker.tsx | 2 +- src/components/layout/HeaderMenuButton.tsx | 2 +- src/components/ui/MapFrame.tsx | 9 +++++++-- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/app/(frontend)/(dev)/dev/common/page.tsx b/src/app/(frontend)/(dev)/dev/common/page.tsx index 2c8c832..353287f 100644 --- a/src/app/(frontend)/(dev)/dev/common/page.tsx +++ b/src/app/(frontend)/(dev)/dev/common/page.tsx @@ -149,11 +149,8 @@ export default function DevCommonComponentsPage() {
- + + diff --git a/src/components/aria/DateRangePicker.tsx b/src/components/aria/DateRangePicker.tsx index 5fbc284..48e9b6a 100644 --- a/src/components/aria/DateRangePicker.tsx +++ b/src/components/aria/DateRangePicker.tsx @@ -36,7 +36,7 @@ export function DateRangePicker({ > {label && } -
+