summaryrefslogtreecommitdiff
path: root/src/components/Global/InputPasswordToggle.vue
blob: 519a808fbbb9131d44ffa5963fe0543d61800af8 (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
<template>
  <div class="input-password-toggle-container">
    <slot></slot>
    <b-button
      :aria-label="$t('global.ariaLabel.showPassword')"
      variant="link"
      :class="{ isVisible: isVisible }"
      @click="toggleVisibility"
    >
      <icon-view-off v-if="isVisible" aria-hidden="true" />
      <icon-view v-else aria-hidden="true" />
    </b-button>
  </div>
</template>

<script>
import IconView from '@carbon/icons-vue/es/view/20';
import IconViewOff from '@carbon/icons-vue/es/view--off/20';

export default {
  name: 'InputPasswordToggle',
  components: { IconView, IconViewOff },
  data() {
    return {
      isVisible: false
    };
  },
  methods: {
    toggleVisibility() {
      const firstChild = this.$children[0];
      const inputEl = firstChild ? firstChild.$el : null;

      this.isVisible = !this.isVisible;

      if (inputEl.nodeName === 'INPUT') {
        inputEl.type = this.isVisible ? 'text' : 'password';
      }
    }
  }
};
</script>

<style lang="scss" scoped>
.input-password-toggle-container {
  position: relative;
}

.btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.4rem 1rem;
  svg {
    margin-left: 0;
    vertical-align: sub;
  }
}
</style>