1.2.3 • Published 3 years ago

filters-vue-plugin v1.2.3

Weekly downloads
104
License
ISC
Repository
github
Last release
3 years ago

Demo: filters-vue-plugin

Plugin do vuejs de filtros para dados em português (pt-br)

Instalação

  npm i filters-vue-plugin

Configuração

1 - Criar pasta plugns dentro da pasta src (projeto vue/src/plugins) 2 - Dentro da pasta plugins criar arquivo filters.js

/*

 src/plugins/filters.js

**/

import Vue from "vue";
import filters from "filters-vue-plugin";

Vue.use(filters);

export default filters;

3 - Aplicar filtro na instancia do Vue.

/*

 src/mais.js

**/

import Vue from "vue";
import App from "./App.vue";
import filters from "./plugins/filters";

new Vue({
  filters,
  render: (h) => h(App),
}).$mount("#app");

DEMO

Filtros

Data

function handlerStringDate(value) {
  if (moment(value).isValid()) {
    if (moment(value, "DD/MM/YYYY").isValid())
      return moment(value, "DD/MM/YYYY").format(format);
    if (moment(value, "MM/YYYY").isValid())
      return moment(value, "MM/YYYY").format(format);
    if (moment(value, "YYYY/MM").isValid())
      return moment(value, "YYYY/MM").format(format);
  }
  if (value.length === 6) {
    let date = "01/" + value.substr(0, 2) + "/" + value.substr(2);
    return moment(date, "DD/MM/YYYY").format(format);
  }
  return "--/--/----";
}

export function data(value, format = "DD/MM/YYYY") {
  if (typeof value === "number" && moment(value).isValid())
    return moment(value).format(format);

  if (typeof value === "string") return handlerStringDate(value);

  if (value instanceof Date) {
    return moment(value, "DD/MM/YYYY").format(format);
  }

  return "--/--/----";
}

cnpj

export function cnpj(value) {
  if (typeof value === "number") {
    value = `${value}`;
  }
  if (typeof value === "string" && value.length === 14) {
    return value.replace(
      /^(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/,
      "$1.$2.$3/$4-$5"
    );
  }
  return "CNPJ Inválido";
}

cpf

export function cpf(value) {
  if (typeof value === "number") {
    value = `${value}`;
  }
  if (typeof value === "string" && value.length === 11) {
    return value.replace(/^(\d{3})(\d{3})(\d{3})(\d{2})/, "$1.$2.$3-$4");
  }
  return "CPF Inválido";
}

valorReal

export function valorReal(value) {
  let valor = parseFloat(value);

  if (isNaN(valor)) valor = 0;

  return valor.toLocaleString("pt-bR", { style: "currency", currency: "BRL" });
}

simNao

export function simNao(value) {
  return value ? "Sim" : "Não";
}
1.2.3

3 years ago

1.2.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago