Skip to content
/ kibana Public
forked from elastic/kibana

Commit

Permalink
[APM] Storybook support
Browse files Browse the repository at this point in the history
    Add Storybook with help from changes in elastic#43529.

    We still need to do some work around having mocks for hooks and HTTP requests but the basics are there.
  • Loading branch information
smith committed Jan 15, 2020
1 parent 22369c9 commit 93bb323
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/dev/storybook/aliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*/

export const storybookAliases = {
apm: 'x-pack/legacy/plugins/apm/scripts/storybook.js',
canvas: 'x-pack/legacy/plugins/canvas/scripts/storybook_new.js',
embeddable: 'src/plugins/embeddable/scripts/storybook.js',
infra: 'x-pack/legacy/plugins/infra/scripts/storybook.js',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/

import { storiesOf } from '@storybook/react';
import React from 'react';
import { PlatinumLicensePrompt } from './PlatinumLicensePrompt';
import {
ApmPluginContext,
ApmPluginContextValue
} from '../../../context/ApmPluginContext';

storiesOf('app/ServiceMap/PlatinumLicensePrompt', module).add(
'example',
() => {
const contextMock = ({
core: { http: { basePath: { prepend: () => {} } } }
} as unknown) as ApmPluginContextValue;

return (
<ApmPluginContext.Provider value={contextMock}>
<PlatinumLicensePrompt />
</ApmPluginContext.Provider>
);
},
{
info: {
source: false
}
}
);
7 changes: 6 additions & 1 deletion x-pack/legacy/plugins/apm/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ For testing purposes APM uses 3 custom users:

**kibana_write_user** Apps: read/write. Indices: None


To create the users with the correct roles run the following script:

```sh
Expand Down Expand Up @@ -88,6 +87,12 @@ yarn prettier "./x-pack/legacy/plugins/apm/**/*.{tsx,ts,js}" --write
yarn eslint ./x-pack/legacy/plugins/apm --fix
```

#### Storybook

Start the [Storybook](https://storybook.js.org/) development environment with
`yarn storybook apm`. All files with a .stories.tsx extension will be loaded.
You can access the development environment at http://localhost:9001.

#### Further resources

- [Cypress integration tests](cypress/README.md)
Expand Down
15 changes: 15 additions & 0 deletions x-pack/legacy/plugins/apm/scripts/storybook.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/

import { join } from 'path';

// eslint-disable-next-line
require('@kbn/storybook').runStorybookCli({
name: 'apm',
storyGlobs: [
join(__dirname, '..', 'public', 'components', '**', '*.stories.tsx')
]
});

0 comments on commit 93bb323

Please sign in to comment.