summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/abuse_reports/index.js
blob: fff4ad8daa047c552c6bfb8e489a5d89b8abeb04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Vue from 'vue';
import LinksToSpamInput from './components/links_to_spam_input.vue';

export const initLinkToSpam = () => {
  const el = document.getElementById('js-links-to-spam');

  if (!el) return false;

  const { links } = el.dataset;

  return new Vue({
    el,
    name: 'LinksToSpamRoot',
    render(createElement) {
      return createElement(LinksToSpamInput, {
        props: {
          previousLinks: JSON.parse(links),
        },
      });
    },
  });
};