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

vue3-pluggable-admin

v0.1.14

Published

Under construction

Downloads

45

Readme

Under construction (not stable)

  • this module can contains break changes until it is in beta version

About

Inspired on :

  • react admin: https://marmelab.com/react-admin/Admin.html
  • Md-crud angular: https://github.com/ClassHP/md-crud

Pluggable module roadmap

  • General

    • [X] Nested CRUD
    • [ ] Group package
  • Table

    • [X] Local
    • [X] Filtering
    • [X] LImit
    • [X] Sorting fields
    • [X] Delete local
    • [X] Get local
    • [X] Refresh public method
    • [X] Formkit custom input install
    • [X] Schema Sorting rows local
    • [X] Default Action permissions
    • [X] Errors alerts
    • [X] Slots (toolbar|header|footer|row actions)
      • Toolbar (toolbar-left, toolbar-center, toolbar-right)
      • header (header-scope, header-actions)
      • row (row-scope, row-actions)
      • footer (footer-scope, footer-actions)
      • pagination
    • Custom views
      • [ ] currency
      • [X] toggle
      • [X] autocomplete
      • [ ] dynamic
      • [ ] Subform
      • [ ] Grid
  • Form

    • [X] CRUD
    • [X] Formkit custom input install
    • [X] Get local
    • [X] Tabs
    • [X] Local
    • [X] Slots (alert|prefix|suffix|error)
    • [X] Errors alerts
    • [X] Object lists dynamic
    • [ ] Dynamic/select accept object loops
    • [ ] Toolbars/Custom forms
    • Custom inputs
      • [x] HasOne
      • [x] hasMany
      • [ ] Collection
      • [X] Subform
      • [X] Grid
      • [ ] Json
      • [ ] Editor
  • Auth

    • [X] Login
    • [X] Logged
    • [X] Logout
  • Events

    • [ ] Global event bus
  • BUGS

    • [ ] Filter duplicate when change page or limit
    • [ ] Filter new search add new array duplicated

Demo

https://stackblitz.com/edit/vitejs-vite-shfymz

Schema docs

  • See Github Wiki - https://github.com/minasvisual/vue-pluggable-admin/wiki

Installation

npm install vue3-pluggable-admin @formkit/vue

index.html (Tailwind CSS basic styles)

<head>
  <script src="https://cdn.tailwindcss.com?plugins=forms"></script>
  ...
</head>

Vue 3

main.ts

import 'vue3-pluggable-admin/dist/vue3-pluggable-admin.css'
import { CustomInputs, CustomPlugins, Pluggable } from 'vue3-pluggable-admin';
import { plugin, defaultConfig } from '@formkit/vue'

//After const app = createApp(App)
app.use(plugin, defaultConfig({
  inputs:{
    ...CustomInputs // Add custom pluggable inputs 
    // you can add yours: check docs https://formkit.com/guides/create-a-custom-input
  },
  plugins:[
    ...CustomPlugins, // Add custom pluggable plugins (masks, date format)
    // you can add your plugins: check docs https://formkit.com/essentials/examples#plugins
  ]
}))
app.use(Pluggable)

Nuxt 3

  • SOON

Astro + Vue

  1. Follow astro vue instructions
  2. Add app entrypoint: https://docs.astro.build/pt-br/guides/integrations-guide/vue/#appentrypoint\

_app.ts

import 'vue3-pluggable-admin/dist/vue3-pluggable-admin.css'
import type { App } from 'vue';
import { CustomInputs, Pluggable } from 'vue3-pluggable-admin';
import { plugin, defaultConfig } from '@formkit/vue'

export default (app: App) => { 
  app.use(plugin, defaultConfig({
    inputs:{
      ...CustomInputs  
    },
    plugins:[
      ...CustomPlugins
    ]
  }))
  app.use(Pluggable)
};

Basic usage

app.vue

<template> 
    <CrudFlow :schema="{
        properties:[
          {
            'name': 'name',
            'label': 'Name',
            'config': {
              'grid': true
            }
          }
        ],
        api:{
          'rootApi': 'https://jsonplaceholder.typicode.com/users',
          'pagination':{
            'local': true
          }
        }
      }" 
    /> 
</template>
 
  • Properties: Grid and form fields/columns
  • Api: Json source http config

Advanced usage

app.vue

<template>
  <main class="w-full m-auto">
    <CrudTable 
      :model="schema" 
      @create="e => setData(e.row)" 
      @edit="e => setData(e.row)" 
    />

    <div class="modal fixed w-full h-full bg-black/20 left-0 top-0" v-if="data">
      <button class="absolute right-0"
          @click="e => setData(null)"
       >
        &#10006;
      </button>
      <div class="absolute w-1/2 -translate-x-1/2 left-1/2 bg-white p-4 rounded-lg my-2 max-h-[95vh] overflow-y-auto">
        <CrudForm
          :model="schema"  
          :data="data"  
           @saved="setData(null)"
        />
      </div>
    </div>
  </main>
</template>

<script setup lang="ts">  
  import { ref, nextTick } from 'vue'  
  const data = ref()

  const schema = {
    properties:[
      {
        "name": "name",
        "label": "Name",
        "config": {
          "grid": true
        }
      }
    ],
    api:{
      "rootApi": "https://jsonplaceholder.typicode.com/users",
      "pagination":{
        "local": true
      }
    }
  }

  function setData (newVal) {
    data.value = null
    nextTick(() => {
      data.value = newVal
    })
  }
</script>

Auth usage

app.vue Login test (https://fakestoreapi.com/docs):

  • username: mor_2314
  • password: 83r5^_
<template>
  <CrudAuth 
    v-model:schema="schema" 
    :config="schema"
    #default="{ methods:{logout}, session:{user, logged} }"
  >     
    <button v-if="logged" @click="logout">{{ user.name }} - Logout</button>

    <CrudFlow :schema="schema" /> 
  </CrudAuth>    
</template>

<script setup lang="ts">  
import { ref } from 'vue'   
 const schema = ref({  
    "auth":{ 
      "url_login": "https://fakestoreapi.com/auth/login", 
      "field_username": "username",
      "field_secret": "password",  
      "response_token": "token",                              // {"token":"xyz"}
      "request_mode": "header",                               // logged requests method
      "request_token": "Authorization",                       // header field
      "request_token_expression": "Bearer {token}",           // header value
      "logged_url": "https://fakestoreapi.com/users/1",       // get user data
      "logged_model": {                                       // user response data map { id:1, username:'', email:'' }
        "id": "id",
        "name": "username",
        "username": "email",
        "role": "level"
      }
    },
    "properties":[
      { "name":"id", "config":{ "grid":true } }, 
      { "name":"email", "config":{ "grid":true } }, 
      { "name":"username", "config":{ "grid":true } }, 
    ],
    "api":{
      "rootApi": "https://fakestoreapi.com/users",
      "pagination":{
        "local": true
      }
    }
  })
</script>