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

@imagina/qcrud

v2.2.60

Published

Package to use CRUD in Base Quasar 1.0.0

Downloads

145

Readme

QCRUD | 2.1.4

This package has a components to make a CRUD in the best and fast way

Installation

npm i @imagina/[email protected]

Usage

You must create a file .vue with a computed method, than will content all params to config your CRUD. with next format:

<template></template>
<script>
  export default {
    data (){ return {crudId : this.$uid()} },
    computed: {
      //Config To create CRUD
      crudData() {
        return {
          crudId : this.crudId,//Required
          modalId : 'modal-id',//Set custom id to crud modal 
          apiRoute: 'api-route-name',//Required
          permission: 'prefix-permissions (ejm: iblog.posts)',
          create: {
            icon : 'icon-name',
            title: 'title',
            to : {name : '<route-name>', params : {}, query : {}} // optional, if you wan create custom form in other page
          },
          read: {
            search : Boolean, // Define if activate search field. Default it's true
            columns: ['array of object with columns to component qtable'],
            requestParams : {'standard-params-to-request'},
            actions : [//Add action buttons by record
              {
                icon : '',
                color : '',
                route : 'name.route', //redirect to route, and set all data row as route params
                action : (rowData) => {} //Get row data as param
              }
            ],
            filters : {'... Object with format fields'}, //Field to filter data
            filterName : 'filter-name'//Load master filter from app.filters
          },
          update: {
            title: 'title'
            requestParams : {'standard-params-to-request'},
            to : '<route-name>' // optional, if you wan create custom form in other page
          },
          delete: Boolean, //Permit delete record, if it's true same validate permission to delete
          formLeft: {{},{},'... Object with format fields'}, //If just set form left. field has 100% width
          formRight: {{},{},'... Object with format fields'}, //Optional. create form with secodn columnd right
        }
      },
      //Get information from CRUD form
      crudInfo(){
        return this.$store.state.qcrudComponent.component[this.crudId] || {}
      }
    },
  }
</script>

Note: the computed crudInfo has all form fields values. this is available to can validate prop vIf or rules. too has a additional field named typeForm to validate if form is "create" or "update"

  • Format to fields

    With this format can create fields to use in filters, fomrLeft and formRight

      let configField = {
        value: 'value',//Default Value to field
        name: '',//Set field name [options, by default set name of field]
        type: `[crud,input,search,date,hour,select,html,multiSelect,checkbox,image,media,permissions,settings]`,
        isTranslatable : Booblean, //Set field as translatable
        isFakeField: true,//Define if field is a fake field
        noCrud: true,//If is true, this field will no send as form
        props : {//All props accepted to field
          label: `${this.$tr('isite.cms.label.role')}`,
          rules : [], //rules to validate field
          vIf : true,//to load or no this field
          options: [ //Options to load only in type [select, multiSelect]
            {label: this.$tr('isite.cms.label.all'), id: '0'}
          ],
          crudType : [select, button-create, full], //type of load crud, default it's select
          crudData : import('path-crud'),
          crudProps : {},//Props to crud component
          //To load media type
          zone : 'name', //Filed only to use with type [media]
          entity : 'name', //Filed only to use with type [media]
          entityId : 'name', //Filed only to use with type [media]
        },
        loadOptions: { //Async load options form request, only in types [select, multiSelect]
          apiRoute: 'apiRoutes.quser.roles', //apiRoute to request
          select: {label: 'name', id: 'id'}, //Define fields to config select
          delayed : () => {} //Load async options
        },
        validateField : {//Validate if value of field exist [tested only in `input` type]
          apiRoute: 'api-route-name',//Required
          requestParams : {},//Request params
          crudId : this.crudId//<int> Default rule to validate when is with crud
        }     
      }

    When the crud.vue file has been created, you just use the <crud> component (this component is registered globally for use) and set the necesary props.

  • API

    | Prop | type |Description | | --------- | ---------- | -------- | | type | String | Define load type to component between [select, button-create, full]. "full" type it's default | | crud-data | import('path') | Import with config to CRUD | | crud-props | Object | Object with props to component | | config | Object | Object with config to component like [requestParams, options] | | custom-data | Object | Replace information from crud.vue file |

    | Event | Description | | --------- | ---------- | | @created | Dispath when item was create | | @updated | Dispath when item was update |

    | Method | Description | | --------- | ---------- | | create({}) | You can set prop type as none to hide component, and call this method to open modal with creation form, extra you can set a Object with data to change form data | | update(itemId) | You can set prop type as none to hide component, and call this method to open modal with edition form |

Services

Using $crud can access to this predefined services to call data with standard.

| Service | Sintax | Description | | --------- | ---------- | -------- | | create | $crud.create(<apiRoute>, data) | Create new record | | index | $crud.index(<apiRoute>, params : {refresh, remember , params}) | Request data | | show | $crud.show(<apiRoute>, criteria, params : {refresh, remember , params}) | Request single record | | update | $crud.update(<apiRoute>, criteria, data, params : {params}) | Update record | | delete | $crud.delete(<apiRoute>, criteria, params : {params}) | Delete Record | | post | $crud.post(<apiRoute>, params : {data, requestParams}}) | Method post | | get | $crud.get(<apiRoute>, params}) | Method get | | put | $crud.put(<apiRoute>, data}) | Method put |

Store

To use SSR it's necessary save data in store. This actions make request with same way of services and save response in states.

| Action | Sintax | Description | | --------- | ---------- | -------- | | index | $store.dispatch('qcrudMaster/INDEX', indexName, apiRoute, requestParams : {}) | Request data and save in $store.state.qcrudMaster.index[indexName] | | show | $store.dispatch('qcrudMaster/SHOW', indexName, criteria, apiRoute, requestParams : {}) | Request single record and save in $store.state.qcrudMaster.show[indexName] |