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

index.js « form « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65bc14dd80781c51b46145bae8e798c678c8050c (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import Vue from 'vue';
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
import InputCopyToggleVisibility from './input_copy_toggle_visibility.vue';

export function initInputCopyToggleVisibility() {
  const els = document.getElementsByClassName('js-input-copy-visibility');

  Array.from(els).forEach((el) => {
    const {
      name,
      value,
      initialVisibility,
      showToggleVisibilityButton,
      showCopyButton,
      copyButtonTitle,
      readonly,
      formInputGroupProps,
      formGroupAttributes,
    } = el.dataset;

    const parsedFormInputGroupProps = convertObjectPropsToCamelCase(
      JSON.parse(formInputGroupProps || '{}'),
    );
    const parsedFormGroupAttributes = convertObjectPropsToCamelCase(
      JSON.parse(formGroupAttributes || '{}'),
    );

    return new Vue({
      el,
      data() {
        return {
          value,
        };
      },
      render(createElement) {
        return createElement(InputCopyToggleVisibility, {
          props: {
            value: this.value,
            initialVisibility,
            showToggleVisibilityButton,
            showCopyButton,
            copyButtonTitle,
            readonly,
            formInputGroupProps: {
              name,
              ...parsedFormInputGroupProps,
            },
          },
          attrs: parsedFormGroupAttributes,
          on: {
            input: (newValue) => {
              this.value = newValue;
            },
          },
        });
      },
    });
  });
}