mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
|
|
@Component({
|
|
// Needs to be a different name to the CLI template button
|
|
selector: 'storybook-framework-button',
|
|
template: ` <button
|
|
type="button"
|
|
(click)="onClick.emit($event)"
|
|
[ngClass]="classes"
|
|
[ngStyle]="{ 'background-color': backgroundColor }"
|
|
>
|
|
{{ label }}
|
|
</button>`,
|
|
styleUrls: ['./button.css'],
|
|
})
|
|
export default class FrameworkButtonComponent {
|
|
/**
|
|
* Is this the principal call to action on the page?
|
|
*/
|
|
@Input()
|
|
primary = false;
|
|
|
|
/**
|
|
* What background color to use
|
|
*/
|
|
@Input()
|
|
backgroundColor?: string;
|
|
|
|
/**
|
|
* How large should the button be?
|
|
*/
|
|
@Input()
|
|
size: 'small' | 'medium' | 'large' = 'medium';
|
|
|
|
/**
|
|
* Button contents
|
|
*
|
|
* @required
|
|
*/
|
|
@Input()
|
|
label = 'Button';
|
|
|
|
/**
|
|
* Optional click handler
|
|
*/
|
|
@Output()
|
|
onClick = new EventEmitter<Event>();
|
|
|
|
public get classes(): string[] {
|
|
const mode = this.primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
|
|
return ['storybook-button', `storybook-button--${this.size}`, mode];
|
|
}
|
|
}
|