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

mount_shared_runners_toggle.js « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ace5fd5c6e48f71c244c98d96125eacdc86c2b22 (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
28
29
30
31
32
33
34
35
36
37
38
39
import Vue from 'vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import SharedRunnersToggle from '~/projects/settings/components/shared_runners_toggle.vue';

export default (containerId = 'toggle-shared-runners-form') => {
  const containerEl = document.getElementById(containerId);
  if (!containerEl) {
    return null;
  }

  const {
    // required
    isDisabledAndUnoverridable,
    isEnabled,
    updatePath,
    isCreditCardValidationRequired,

    // optional
    groupName,
    groupSettingsPath,
  } = containerEl.dataset;

  return new Vue({
    el: containerEl,
    render(createElement) {
      return createElement(SharedRunnersToggle, {
        props: {
          isDisabledAndUnoverridable: parseBoolean(isDisabledAndUnoverridable),
          isEnabled: parseBoolean(isEnabled),
          isCreditCardValidationRequired: parseBoolean(isCreditCardValidationRequired),
          updatePath,

          groupName,
          groupSettingsPath,
        },
      });
    },
  });
};