summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/InputPasswordToggle.vue
blob: be4fdc6ce9bfa0b9396b8cdcbe9df72b8fd8249f (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<template>
  <div class="input-password-toggle-container">
    <slot></slot>
    <b-button
      :title="togglePasswordLabel"
      variant="link"
      class="input-action-btn btn-icon-only"
      :class="{ isVisible: isVisible }"
      @click="toggleVisibility"
    >
      <icon-view-off v-if="isVisible" />
      <icon-view v-else />
      <span class="sr-only">{{ togglePasswordLabel }}</span>
    </b-button>
  </div>
</template>

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

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

      this.isVisible = !this.isVisible;

      if (inputEl && inputEl.nodeName === 'INPUT') {
        inputEl.type = this.isVisible ? 'text' : 'password';
      }

      this.isVisible
        ? (this.togglePasswordLabel = this.$t('global.ariaLabel.hidePassword'))
        : (this.togglePasswordLabel = this.$t('global.ariaLabel.showPassword'));
    },
  },
};
</script>

<style lang="scss" scoped>
.input-action-btn,
.btn-icon-only {
  margin: auto;
  padding: 10px;
  &:hover {
    border-radius: 8px;
    background-color: transparent;
  }
  &:focus {
    box-shadow: none;
    color: none;
  }
  &:active {
    background-color: transparent;
  }
}

.btn-icon-only svg {
  width: 30px;
  height: 20px;
}

.input-password-toggle-container {
  position: relative;
}
</style>