mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:41:08 +08:00
ADD giphy support in notes addon
This commit is contained in:
parent
f98edcbcfc
commit
85c081aaca
@ -47,3 +47,14 @@ import notes from './someMarkdownText.md';
|
||||
storiesOf('Component', module)
|
||||
.add('With Markdown', () => <Component />, { notes });
|
||||
```
|
||||
|
||||
### Giphy
|
||||
|
||||
When using markdown, you can also embed gifs from Giphy into your markdown. Currently, the value `gif` of the gif prop is used to search and return the first result returned by Giphy.
|
||||
|
||||
```md
|
||||
# Title
|
||||
|
||||
<Giphy gif='cheese' />
|
||||
```
|
||||
|
||||
|
@ -4,6 +4,7 @@ import { styled } from '@storybook/theming';
|
||||
import { STORY_CHANGED } from '@storybook/core-events';
|
||||
|
||||
import { SyntaxHighlighter as SyntaxHighlighterBase, Placeholder } from '@storybook/components';
|
||||
import Giphy from './giphy';
|
||||
import Markdown from 'markdown-to-jsx';
|
||||
|
||||
import { PARAM_KEY, API, Parameters } from './shared';
|
||||
@ -59,7 +60,14 @@ export default class NotesPanel extends React.Component<Props, NotesPanelState>
|
||||
|
||||
// use our SyntaxHighlighter component in place of a <code> element when
|
||||
// converting markdown to react elements
|
||||
options = { overrides: { code: SyntaxHighlighter } };
|
||||
options = {
|
||||
overrides: {
|
||||
code: SyntaxHighlighter,
|
||||
Giphy: {
|
||||
component: Giphy
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
const { api } = this.props;
|
||||
@ -77,7 +85,7 @@ export default class NotesPanel extends React.Component<Props, NotesPanelState>
|
||||
|
||||
const value = read(params);
|
||||
if (value) {
|
||||
this.setState({ value });
|
||||
this.setState({ value });
|
||||
} else {
|
||||
this.setState({ value: undefined });
|
||||
}
|
||||
|
34
addons/notes/src/giphy.tsx
Normal file
34
addons/notes/src/giphy.tsx
Normal file
@ -0,0 +1,34 @@
|
||||
import React from 'react'
|
||||
import * as PropTypes from 'prop-types';
|
||||
|
||||
interface Props{
|
||||
gif: String
|
||||
}
|
||||
interface GiphyState {
|
||||
src?: string;
|
||||
}
|
||||
export default class Giphy extends React.Component<Props, GiphyState> {
|
||||
static propTypes = {
|
||||
gif: PropTypes.string.isRequired,
|
||||
}
|
||||
constructor(props: any){
|
||||
super(props)
|
||||
this.state = {
|
||||
src: null
|
||||
}
|
||||
fetch(`http://api.giphy.com/v1/gifs/search?limit=1&api_key=dc6zaTOxFJmzC&q=${props.gif}`)
|
||||
.then(response => {
|
||||
if(response.ok){
|
||||
return response.json()
|
||||
}
|
||||
})
|
||||
.then(data => {
|
||||
this.setState({ src: data.data[0].images.original.url})
|
||||
})
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
<img src={this.state.src} />
|
||||
)
|
||||
}
|
||||
}
|
@ -24,6 +24,14 @@ exports[`Storyshots Addons|Notes addon notes rendering inline, github-flavored m
|
||||
</button>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Addons|Notes with a markdown giphy 1`] = `
|
||||
<button
|
||||
type="button"
|
||||
>
|
||||
Button with notes - check the notes panel for details
|
||||
</button>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Addons|Notes with a markdown table 1`] = `
|
||||
<button
|
||||
type="button"
|
||||
|
@ -41,6 +41,12 @@ const markdownTable = `
|
||||
| Row4.1 | Row4.2 | Row4.3 |
|
||||
`;
|
||||
|
||||
const giphyMarkdown = `
|
||||
# Giphy
|
||||
|
||||
<Giphy gif='cheese' />
|
||||
`;
|
||||
|
||||
storiesOf('Addons|Notes', module)
|
||||
.add('addon notes', baseStory, {
|
||||
notes:
|
||||
@ -54,4 +60,7 @@ storiesOf('Addons|Notes', module)
|
||||
})
|
||||
.add('with a markdown table', baseStory, {
|
||||
notes: { markdown: markdownTable },
|
||||
})
|
||||
.add('with a markdown giphy', baseStory, {
|
||||
notes: { markdown: giphyMarkdown },
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user