0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AngularでStorybookを導入する

Last updated at Posted at 2020-03-08

はじめに

storybookが良いと聞く今日このごろ。
Angularでも使えることを知ったので、今回はそれを試してみる。

TL;DR.

ソースコード

Angularプロジェクト作成

CLIでサクッと作成する。

$ ng new ng-component

Storybook導入

公式サイトに手順があるので、それを参考に進める。
これだけでセットアップが完了する。

$ npx -p @storybook/cli sb init --type angular

サンプルプログラムも作ってくれるが、
パッケージがなくうまく動かなかったりしたのでstoryを作っていく。

Storyを作成する

src/stories配下にbutton.component.stories.ts(任意)を作成する。
ButtonComponentの中身は後述

import { ButtonComponent } from '../app/component/button/button.component';

export default {
  title: 'button component',
};

export const ButtonDefault = () => ({
  component: ButtonComponent,
  props: {
    text: 'default'
  }
});

作成したcomponent

button.component.ts

import { Component, OnInit, Input } from '@angular/core';

@Component({
  selector: 'app-button',
  templateUrl: './button.component.html',
  styleUrls: ['./button.component.scss']
})
export class ButtonComponent implements OnInit {
  @Input() text: string;

  buttonClasses: string[] = ['button'];

  ngOnInit() {
  }

}

button.component.scss

.button {
  width: 150px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #000;
  color: #333;
  font-size: 16px; 
}

button.component.html

<button [ngClass]="buttonClasses">{{text}}</button>

実行してみる

自動で追加されたnpm scriptがあるので、それを実行すればOK。

$ npm run storybook
> ブラウザが勝手に立ち上がり表示される
スクリーンショット 2020-03-08 18.47.47.png 画像の様に出てくれば完了。

まとめ

今回は前々からやろうと思ってたstorybookの導入をやった。
component単位で見れるものがあるのは、やっぱり楽だと思うので今後は作っていきたいところ。
+github pagesで見れると楽なのでいつか対応したい。

参考リンク

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?