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

BaseコンポーネントのStorybookファイルを作成 #2227

Merged
merged 10 commits into from
Aug 21, 2024

Conversation

takusea
Copy link
Contributor

@takusea takusea commented Aug 16, 2024

内容

今までに作成したBaseコンポーネントのStorybookファイルを作成します。また、それに付随して以下を行います。

  • 色変数の使用とテーマ切り替えのため、storybook/addon-themesを導入
  • onLabelがその命名のせいでStorybook上でprops判定されなかった(し、人間から見てもイベント関数で頻用されるon〇〇の形とこんがらがりそう)ため、onLabel/offLabelをcheckedLabel/uncheckedLabelに改名

@takusea takusea requested a review from a team as a code owner August 16, 2024 14:37
@takusea takusea requested review from Hiroshiba and removed request for a team August 16, 2024 14:37
Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

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

おー!!!良いですね!!!!!!

まだ見てないのですがテストが落ちてそうだったのでそれだけ報告まで・・・!

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

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

ほぼLGTMです!!!

非常に見やすかったです!!!

Comment on lines 18 to 27

render: (args) => ({
components: { BaseButton },

setup() {
return { args };
},

template: '<BaseButton v-bind="args" />',
}),
Copy link
Member

Choose a reason for hiding this comment

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

Storybook、書式がコロコロ変わってよくわからないんですけど、多分この形(Metaで指定したComponentにargsを直接渡し、特に表示物も変更しない場合)はこの関数がまるまるいらないはずです!
https://storybook.js.org/docs/api/csf#args-story-inputs

めちゃめちゃスリムになると思います 🙏

Suggested change
render: (args) => ({
components: { BaseButton },
setup() {
return { args };
},
template: '<BaseButton v-bind="args" />',
}),

src/components/Base/BaseDocumentView.vue Show resolved Hide resolved
src/components/Base/BaseListItem.stories.ts Outdated Show resolved Hide resolved
src/components/Base/BaseListItem.stories.ts Outdated Show resolved Hide resolved
src/components/Base/BaseRowCard.stories.ts Outdated Show resolved Hide resolved
src/components/Base/BaseScrollArea.stories.ts Outdated Show resolved Hide resolved
src/components/Base/BaseSwitch.stories.ts Outdated Show resolved Hide resolved
@takusea
Copy link
Contributor Author

takusea commented Aug 21, 2024

指摘いただいた冗長だった各箇所の記述を修正しました!

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

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

LGTM!!!

作ってくださってありがとうございます!!!
Storybook、展覧会みたいでやっぱ楽しいですね!!

ちなみにchromaticも一応アカウント作ってたりします。
とりあえず動かしてみてるだけですが、多分ここにコンポーネントのリストが追加されるはず。
https://www.chromatic.com/builds?appId=667d9c007418420dbb5b0f75

確かmainブランチにpushされたら更新されるようにはなっていて、storyごとにVRT(Visual Regression Testi)もしてくれるので何か変更があったら教えてくれるかもです。

本当はレビュープロセスにもVTR含めたいのですが、確か無料枠だと月5000スクリーンショットまでで、pushのたびにテストが走ってたら足りなくなりそうだなと思って省いています。
でも多分更新されたところだけVRTするって設定があったはずなので、試してみたいなと思ってたりします。

この辺りもし興味あれば・・・!

@Hiroshiba Hiroshiba merged commit 7aa6e86 into VOICEVOX:main Aug 21, 2024
9 checks passed
@takusea takusea deleted the create-storybook-base-components branch August 22, 2024 00:27
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.

2 participants