mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
* Update Figma links updated existing Figma links to point to the new file and added Figma links to components missing them * Added last missing Figma links
104 lines
2.7 KiB
TypeScript
104 lines
2.7 KiB
TypeScript
import { DIALOG_DATA, DialogModule, DialogRef } from "@angular/cdk/dialog";
|
|
import { Component, Inject } from "@angular/core";
|
|
import { Meta, StoryObj, moduleMetadata } from "@storybook/angular";
|
|
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
|
|
import { ButtonModule } from "../button";
|
|
import { IconButtonModule } from "../icon-button";
|
|
import { SharedModule } from "../shared";
|
|
import { I18nMockService } from "../utils/i18n-mock.service";
|
|
|
|
import { DialogComponent } from "./dialog/dialog.component";
|
|
import { DialogService } from "./dialog.service";
|
|
import { DialogCloseDirective } from "./directives/dialog-close.directive";
|
|
import { DialogTitleContainerDirective } from "./directives/dialog-title-container.directive";
|
|
|
|
interface Animal {
|
|
animal: string;
|
|
}
|
|
|
|
@Component({
|
|
template: `<button bitButton type="button" (click)="openDialog()">Open Dialog</button>`,
|
|
})
|
|
class StoryDialogComponent {
|
|
constructor(public dialogService: DialogService) {}
|
|
|
|
openDialog() {
|
|
this.dialogService.open(StoryDialogContentComponent, {
|
|
data: {
|
|
animal: "panda",
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
@Component({
|
|
template: `
|
|
<bit-dialog title="Dialog Title" dialogSize="large">
|
|
<span bitDialogContent>
|
|
Dialog body text goes here.
|
|
<br />
|
|
Animal: {{ animal }}
|
|
</span>
|
|
<ng-container bitDialogFooter>
|
|
<button type="button" bitButton buttonType="primary" (click)="dialogRef.close()">
|
|
Save
|
|
</button>
|
|
<button type="button" bitButton buttonType="secondary" bitDialogClose>Cancel</button>
|
|
</ng-container>
|
|
</bit-dialog>
|
|
`,
|
|
})
|
|
class StoryDialogContentComponent {
|
|
constructor(
|
|
public dialogRef: DialogRef,
|
|
@Inject(DIALOG_DATA) private data: Animal,
|
|
) {}
|
|
|
|
get animal() {
|
|
return this.data?.animal;
|
|
}
|
|
}
|
|
|
|
export default {
|
|
title: "Component Library/Dialogs/Service",
|
|
component: StoryDialogComponent,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [StoryDialogContentComponent],
|
|
imports: [
|
|
SharedModule,
|
|
ButtonModule,
|
|
DialogModule,
|
|
IconButtonModule,
|
|
DialogCloseDirective,
|
|
DialogComponent,
|
|
DialogTitleContainerDirective,
|
|
],
|
|
providers: [
|
|
DialogService,
|
|
{
|
|
provide: I18nService,
|
|
useFactory: () => {
|
|
return new I18nMockService({
|
|
close: "Close",
|
|
loading: "Loading",
|
|
});
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
parameters: {
|
|
design: {
|
|
type: "figma",
|
|
url: "https://www.figma.com/design/Zt3YSeb6E6lebAffrNLa0h/Tailwind-Component-Library?node-id=16329-30495&t=b5tDKylm5sWm2yKo-4",
|
|
},
|
|
},
|
|
} as Meta;
|
|
|
|
type Story = StoryObj<StoryDialogComponent>;
|
|
|
|
export const Default: Story = {};
|