0.5.5 • Published 5 years ago

@mauromadeit/vue-commons v0.5.5

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

commons-vue

Reusable components, store, etc.

Install

yarn add https://github.com/maurop123/vue-commons.git

Then import

import { components } from '@mauromadeit/vue-commons'

Examples

Table Editor

Based on https://vuetifyjs.com/en/components/data-tables#example-crud

table-editor(
  v-bind="{ headers, items }"
  @save="save" @delete="delete"
)
methods: {
  save(item) { ... },
  delete(item) { ... },
}

For model of headers and items... https://vuetifyjs.com/en/components/data-tables

Masonry Component

masonry(:items="pages")
  v-card(slot-scope="page" class="mb-3")
    v-card-title(v-if="page.title") {{page.title}}

Bus

import { bus } from '@mauromadeit/vue-commons'

Reusing firebase db

// src/database.js
import { Database } from '@mauromadeit/vue-commons'
export default new Database({ ref: 'money-reports' })

// import and use anywhere
import db from '@/database'
db.get('items').subscribe(data => ...) // [{ id: 1, name: Al}, { id: 2, name: Bo }]
db.push('items', payload).subscribe()

State Model and Texts

text-state-model(
  :stateProp="`enrollment.owners.${i}.city`"
  label="City"
  :rules="[required()]"
)

// which is equivalent to...

state-model(stateProp="enrollment.companyName")
  v-text-field(
    slot-scope="{ value, input }"
    :value="value" @input="input"
    label="Company Legal Name"
    :rules="[required()]"
  )

SSL Cert

  1. https://www.aidanwoods.com/blog/lets-encrypt-the-manual-certificate/
  2. https://p3plcpnl0875.prod.phx3.secureserver.net:2083/cpsess4761954074/frontend/gl_paper_lantern/ssl/install.html
sudo ls /etc/letsencrypt/live/journal.mauromadeit.com/
# copy files below to site above
sudo cat /etc/letsencrypt/live/journal.mauromadeit.com/cert.pem
sudo cat /etc/letsencrypt/live/journal.mauromadeit.com/privkey.pem
sudo cat /etc/letsencrypt/live/journal.mauromadeit.com/chain.pem

Update PWA Icons

Gotcha

May not work in runtime only builds

Contributing

Initial setup

yarn install

Make changes and build. Don't forget to build!

yarn build

Test changes locally

rm -rf ../path/node_modules/mauromadeit-vue-commons/*
cp -r ./* ../path/node_modules/mauromadeit-vue-commons/

Bump version and push

npm version patch
git push
0.5.5

5 years ago

0.5.4

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.11

6 years ago

0.4.10

6 years ago

0.4.9

6 years ago

0.4.8

6 years ago

0.4.7

6 years ago

0.4.6

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.10

6 years ago

0.2.9

6 years ago

0.2.8

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago