summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/content_editor.stories.js
blob: 9329bbcb2c77cf45e96f4da472c0e0c09f544ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { ContentEditor } from './index';

export default {
  component: ContentEditor,
  title: 'content_editor/components/content_editor',
};

const Template = (_, { argTypes }) => ({
  components: { ContentEditor },
  props: Object.keys(argTypes),
  template: '<content-editor v-bind="$props" @initialized="loadContent" />',
  methods: {
    loadContent(contentEditor) {
      // eslint-disable-next-line @gitlab/require-i18n-strings
      contentEditor.setSerializedContent('Hello content editor');
    },
  },
});

export const Default = Template.bind({});

Default.args = {
  renderMarkdown: () => '<p>Hello content editor</p>',
  uploadsPath: '/uploads/',
  serializerConfig: {},
  extensions: [],
};