about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/packs/admin.js
blob: b26df932cabc2729a65afcec259062922f252ec9 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import 'packs/public-path';
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
import ready from 'flavours/glitch/util/ready';
import loadKeyboardExtensions from 'flavours/glitch/util/load_keyboard_extensions';

function main() {
  const { delegate } = require('@rails/ujs');

  ready(() => {
    const React    = require('react');
    const ReactDOM = require('react-dom');

    [].forEach.call(document.querySelectorAll('[data-admin-component]'), element => {
      const componentName  = element.getAttribute('data-admin-component');
      const { locale, ...componentProps } = JSON.parse(element.getAttribute('data-props'));

      import('flavours/glitch/containers/admin_component').then(({ default: AdminComponent }) => {
        return import('flavours/glitch/components/admin/' + componentName).then(({ default: Component }) => {
          ReactDOM.render((
            <AdminComponent locale={locale}>
              <Component {...componentProps} />
            </AdminComponent>
          ), element);
        });
      }).catch(error => {
        console.error(error);
      });
    });
  });

  delegate(document, '.sidebar__toggle__icon', 'click', () => {
    const target = document.querySelector('.sidebar ul');

    if (target.style.display === 'block') {
      target.style.display = 'none';
    } else {
      target.style.display = 'block';
    }
  });
}

loadPolyfills()
  .then(main)
  .then(loadKeyboardExtensions)
  .catch(error => {
    console.error(error);

  });