Skip to content

Commit

Permalink
adding storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jun 23, 2021
1 parent 157d7a4 commit 7a5ee52
Showing 1 changed file with 49 additions and 0 deletions.
@@ -0,0 +1,49 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

/* eslint-disable react/function-component-definition */

import { Story } from '@storybook/react';
import React from 'react';
import { HttpStart } from 'kibana/public';
import TutorialFleetInstructions from '.';

interface Args {
hasFleetPolicyWithApmIntegration: boolean;
}

function Wrapper({ hasFleetPolicyWithApmIntegration }: Args) {
// TODO mock http
const http = ({
get: () => ({ hasData: hasFleetPolicyWithApmIntegration }),
} as unknown) as HttpStart;
return (
<TutorialFleetInstructions
http={http}
basePath="http://localhost:5601"
isDarkTheme={false}
/>
);
}

export default {
title: 'app/Tutorial/FleetInstructions',
component: TutorialFleetInstructions,
argTypes: {
hasFleetPolicyWithApmIntegration: {
control: { type: 'inline-radio', options: [true, false] },
},
},
};

export const WithApmIntegration: Story<Args> = (_args) => {
return <Wrapper {..._args} />;
};

WithApmIntegration.args = {
hasFleetPolicyWithApmIntegration: true,
};

0 comments on commit 7a5ee52

Please sign in to comment.