Git Product home page Git Product logo

Comments (3)

hardrese7 avatar hardrese7 commented on June 27, 2024 1

Hey there,
you can easily implement that feature by yourself.

maskedInput.vue

<template>
  <input-el
    :value="value"
    @input="$emit('input', $event)"
    @blur="clearIncompletedField()"
    @paste.prevent
    v-mask="mask"
    v-bind="$attrs"
  />
</template>

<script>
import { mask } from 'vue-the-mask';

export default {
  inheritAttrs: false,
  directives: { mask },
  props: {
    value: String,
    mask: String,
  },
  methods: {
    clearIncompletedField() {
      if (this.value.length < this.mask.length) {
        this.$emit('input', '');
      }
    },
  },
};
</script>

input-el is just my wrapper of the native html input

from vue-the-mask.

hardrese7 avatar hardrese7 commented on June 27, 2024 1

updated example:

<template>
  <input-el
    v-mask="mask"
    :value="value"
    v-bind="$attrs"
    @input="$emit('input', $event)"
    @blur="clearIncompletedField()"
    @paste.prevent
  />
</template>

<script>
import { mask } from 'vue-the-mask';

export default {
  directives: { mask },
  inheritAttrs: false,
  props: {
    value: {
      type: String,
      required: true,
    },
    mask: {
      type: [String, Array],
      required: true,
    },
  },
  methods: {
    clearIncompletedField() {
      if (this.mask) {
        if (Array.isArray(this.mask)) {
          const valueMatchesMask = this.mask.some(m => this.value.length === m.length);
          if (valueMatchesMask) {
            return;
          }
          this.$emit('input', '');
        } else if (this.value.length < this.mask.length) {
          this.$emit('input', '');
        }
      }
    },
  },
};
</script>

from vue-the-mask.

rfranchi avatar rfranchi commented on June 27, 2024

updated example:

<template>
  <input-el
    v-mask="mask"
    :value="value"
    v-bind="$attrs"
    @input="$emit('input', $event)"
    @blur="clearIncompletedField()"
    @paste.prevent
  />
</template>

<script>
import { mask } from 'vue-the-mask';

export default {
  directives: { mask },
  inheritAttrs: false,
  props: {
    value: {
      type: String,
      required: true,
    },
    mask: {
      type: [String, Array],
      required: true,
    },
  },
  methods: {
    clearIncompletedField() {
      if (this.mask) {
        if (Array.isArray(this.mask)) {
          const valueMatchesMask = this.mask.some(m => this.value.length === m.length);
          if (valueMatchesMask) {
            return;
          }
          this.$emit('input', '');
        } else if (this.value.length < this.mask.length) {
          this.$emit('input', '');
        }
      }
    },
  },
};
</script>

Thank you for the example, i had to adjust the @input="$emit('input', $event)" to @input="$emit('input', $event.target.value)" because was freezing the browser. After that worked perfectly.

from vue-the-mask.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.