Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content_editor.stories.js « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d4226ccd33dc45c4a8a22f7930b19ce97009a8a (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/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: [],
};