Skip to content

[fix]開発中の機能を一番下に集約#2002

Merged
hikahana merged 2 commits intogm3/developfrom
fix/riririn/2000-Menu-grouping-under-development
Mar 17, 2026
Merged

[fix]開発中の機能を一番下に集約#2002
hikahana merged 2 commits intogm3/developfrom
fix/riririn/2000-Menu-grouping-under-development

Conversation

@riririn180904
Copy link
Copy Markdown
Collaborator

対応Issue

resolve #2000

概要

  • 開発中の機能の集約

実装詳細

  • 管理者画面のメニューバーの一番下に「開発中」の項目をアコーディオンメニューとして追加
  • 「物品申請数調整」「物品貸出 時間・人数調整」「物品移動計画」「会場割り当て」「ステージ割り当て」を開発中の機能として移動

画面スクリーンショット等

スクリーンショット 2026-02-09 182104

テスト項目

  • 変更が反映されているか
  • 動作に問題がないか
  • 移動した機能に漏れがないか

備考

Copy link
Copy Markdown
Contributor

@hikahana hikahana left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

コメントdone

display: flex;
letter-spacing: 1px;
}
.dev-header {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[must]
ここ間に一行改行して欲しい!
のと、dev-headerだとちょっと命名が悪いかも。開発中っていうのを示したいのは分かるけどdevだけだと開発用、本番用で分けているのかな?とかになりそう。で、おそらくこの命名ってヘッダーではなくてアコーディオンメニューであることを明記した方が良い気がするので↓みたいな命名とか??これは一例だから何でも~
.sidebar-accordion

{ title: "会場割り当て", icon: "event_seat", click: "/assign_places" },
{ title: "ステージ割り当て", icon: "stadium", click: "/assign_stages" },
],
devOpen: false
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

devOpenあまり好ましくないかも
フラグとしての管理を明記したいからisOpenedとか?devっていう単語はできるだけ避けたい開発用なのかと混合しちゃいそうだから!

</li>
</ul>
</nav>
<!-- 開発中メニュー -->
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

これは下と重複しているから消して良さそう。

Comment on lines +51 to +66
<nav class="menu">
<ul>
<!-- 開発中メニュー(子) -->
<li
v-for="item in development_items"
:key="item.title"
v-show="devOpen"
class="dev-child"
>
<nuxt-link :to="item.click">
<span class="material-icons">{{ item.icon }}</span>
{{ item.title }}
</nuxt-link>
</li>
</ul>
</nav>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この辺インデントを対応して欲しい

Copy link
Copy Markdown
Contributor

@hikahana hikahana Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ちなみにvscodeでctrl + sの保存の際にlintかける設定とかしてる?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

してあります!

@batcho0428 batcho0428 requested a review from hikahana March 17, 2026 10:53
Copy link
Copy Markdown
Contributor

@hikahana hikahana left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

良さそうLGTM

@hikahana hikahana merged commit 72dac39 into gm3/develop Mar 17, 2026
1 check passed
@hikahana hikahana deleted the fix/riririn/2000-Menu-grouping-under-development branch March 17, 2026 11:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[admin] 開発中機能のメニューバー集約

2 participants