From 7729e4b1f6df54a6fdac9edf9169417a63104aaf Mon Sep 17 00:00:00 2001 From: miteruzo Date: Mon, 15 Sep 2025 02:31:25 +0900 Subject: [PATCH 1/3] =?UTF-8?q?#102=20=E3=82=B5=E3=82=A4=E3=83=89=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8A=95=E7=A8=BF=E8=A9=B3=E7=B4=B0=EF=BC=8C?= =?UTF-8?q?=E5=BD=A2=E3=81=A0=E3=81=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/TagDetailSidebar.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/TagDetailSidebar.tsx b/frontend/src/components/TagDetailSidebar.tsx index 91d7092..26e601e 100644 --- a/frontend/src/components/TagDetailSidebar.tsx +++ b/frontend/src/components/TagDetailSidebar.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react' import TagLink from '@/components/TagLink' import TagSearch from '@/components/TagSearch' +import SectionTitle from '@/components/common/SectionTitle' import SubsectionTitle from '@/components/common/SubsectionTitle' import SidebarComponent from '@/components/layout/SidebarComponent' import { CATEGORIES } from '@/consts' @@ -53,11 +54,26 @@ export default (({ post }: Props) => {
{categoryNames[cat]}
))} + {post && ( +
+ 情報 + +
)} ) }) satisfies FC -- 2.34.1 From 84ce5dcb0109696053f2c9ed0e0879e0414d0cb0 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Mon, 15 Sep 2025 02:31:25 +0900 Subject: [PATCH 2/3] =?UTF-8?q?#102=20=E3=82=B5=E3=82=A4=E3=83=89=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8A=95=E7=A8=BF=E8=A9=B3=E7=B4=B0=EF=BC=8C?= =?UTF-8?q?=E5=BD=A2=E3=81=A0=E3=81=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/TagDetailSidebar.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/TagDetailSidebar.tsx b/frontend/src/components/TagDetailSidebar.tsx index 91d7092..26e601e 100644 --- a/frontend/src/components/TagDetailSidebar.tsx +++ b/frontend/src/components/TagDetailSidebar.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react' import TagLink from '@/components/TagLink' import TagSearch from '@/components/TagSearch' +import SectionTitle from '@/components/common/SectionTitle' import SubsectionTitle from '@/components/common/SubsectionTitle' import SidebarComponent from '@/components/layout/SidebarComponent' import { CATEGORIES } from '@/consts' @@ -53,11 +54,26 @@ export default (({ post }: Props) => {
{categoryNames[cat]}
    - {tags[cat].map ((tag, i) => ( -
  • + {tags[cat].map (tag => ( +
  • ))}
))} + {post && ( +
+ 情報 +
    +
  • Id.: {post.id}
  • + {/*
  • 耕作者: {post.createdBy}
  • */} +
  • 耕作日時: {post.createdAt}
  • +
  • + リンク: + + {post.url} + +
  • +
+
)} ) }) satisfies FC -- 2.34.1 From 4dc8d071b7206b803d9ef09cecf3d8870cef33a1 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Tue, 23 Sep 2025 04:32:13 +0900 Subject: [PATCH 3/3] =?UTF-8?q?#102=20=E3=82=B5=E3=82=A4=E3=83=89=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8A=95=E7=A8=BF=E8=A9=B3=E7=B4=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/TagDetailSidebar.tsx | 36 +++++++++++++++++--- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/TagDetailSidebar.tsx b/frontend/src/components/TagDetailSidebar.tsx index 26e601e..6e2e2dd 100644 --- a/frontend/src/components/TagDetailSidebar.tsx +++ b/frontend/src/components/TagDetailSidebar.tsx @@ -65,14 +65,42 @@ export default (({ post }: Props) => { 情報 )} ) -- 2.34.1