npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cltvo-v-list-filters

v1.2.1

Published

Mixin de Vue 1.0 para filtrado de listas con varias optimizaciones

Downloads

2

Readme

cltvo-v-list-filters

Dependencias

Para reducir el tamaño del paquete compilado en dist hay ciertas dependencias que no se incluyen pero que se espera que existan en la carpeta de node_modules:

Otras versiones distintas a las especificadas posiblemente puedan funcionar sin ningún problema.

"dependencies": {
  "coral-std-library": "1.1.3",
  "lodash.debounce": "4.0.8",
  "ramda": "0.23.0",
  "vue": "1.0.28"
}

Uso

Exporta un mixin listFilters y tres funciones helpers isPath, isPathInObjArray, isStringArray.

El mixin agrega dos propiedad importantes al componente: filtered_list y filter_by.

filtered_list

Es la lista que se imprime

filter_by

Es un string que debe corresponder al nombre de la propiedad que contiene las funciones de filtrado. En el ejemplo de abajo, en data.filters este string puede ser name, state, name_or_state o ''. Cuando el estado de esta propiedad cambia, entonces se activa un filtro distinto, dependiendo del string que contenga. (El string vacío no implica ningún filtro.)

data.filters

Es un objeto que contiene objetos con los distintos filtros. Es necesario que cada objeto contenido aquí tenga un array llamado filters que contenga una serie de funciones, todas ellas deben tener el siguiente tipo String -> {*} -> Boolean. Cuando hay más de una función en este array, los resultados del proceso de filtrado se agregan.

Ejemplo

import {listFilters, isPath, isPathInObjArray} from 'cltvo-v-list-filters'

export const buddiesTable = simpleCrud('#buddies-table-template',{
  mixins: [listFilters],
  data: {
    filters:{
      name: {
        description: 'Nombre',
        filters: [isPath(['full_name'])]
      },
      state: {
        description: 'Entidad Federativa',
        filters: [isPath(['state', 'official_name'])]
      },
     name_or_state: {
        description: 'Buscar por Nombre o Entidad Federativa',
        filters: [
          isPath(['full_name']),
          isPathInObjArray(['states'], ['official_name'])
        ]
      }
    }
  }
});

Tipos de los filtros que vienen por default

FilterBy :: nombre | email | etc.
FilterType
=  isPath (ejectuado por la funcion objTextFilter) 
| isPathInObjArray  (ejectuado por la funcion objArrayTextFilter )
| isStringArray (ejectuado por la funcion stringArrayTextFilter)

Cómo hacer otros filtros

Crear una función que al pasarse al array filters, reciba un String y un Objeto y devuelva un Booleano. El objeto que recibe la función será uno de los objetos de la lista.

String search -> ListObj {*} -> Boolean

Si se necesita modificar la lista antes de filtrarla

Agregar al componente que recibe el mixin el siguiente método

// preMapper :: [{*}] -> [{*}]
preMapper(){
  return this.list.map(/*lo que se quiera hacer*/)
}