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

vue-builder-plugin

v1.0.211

Published

Builder Template (Vue + Typescript)

Downloads

538

Readme

Template Builder

How to use plugin

Build Package (Include Store)

  1. Run Command
yarn add vue-builder-plugin
  1. Run Command
yarn dev

or

npm run dev
  1. Setup Data To Local Storage

    get storageBaseUrl() {
        return <YOUR_STORAGE_BASEURL>
    }

    get storageToken() {
        return <YOUR_PERSONALIZE_TOKEN>
    }

    [Optional]
    get personalizeBaseUrl() {
        return <YOUR_PERSONALIZE_BASEURL>
    }

    get personalizeToken() {
        return <YOUR_PERSONALIZE_TOKEN>
    }

    created() {
        if (process.client) {
            localStorage['storage-baseurl'] = this.storageBaseUrl
            localStorage['storage-token'] = this.storageToken

            [Optional]
            localStorage['personalize-baseurl'] = this.personalizeBaseUrl
            localStorage['personalize-token'] = this.personalizeToken
        }
    }

| attribute |value |type |description | |----------------------------------------|:------------------------:|:--------:| -------------------------------------------------------------------------------------------- | |storageBaseUrl |up to you |string |for get or upload image (ex. [GET] <BASEURL>/galleries, [POST] <BASEURL>/uploader/public| |storageToken |up to you |string |for access api get or upload image | |personalizeBaseUrl (optional) |up to you |string |for get personalize (ex. [GET] <BASEURL>/customers/attributes)* | |personalizeToken (optional) |up to you |string |for access api get personalize |

  1. Import Module And Create Instance Vue Component
    [Vue]
    mounted() {
        const builder: any = require('~/node_modules/vue-builder-plugin/src/plugins/Module')
        const store =  builder.default.store
        const router = builder.default.router
        const self = this
        this.builder = new Vue({
            router,
            store,
            render: (h) =>
                h(builder.default.component, {
                    props: {
                        propTemplateJson: this.propTemplateJson,
                        propMessageType: this.propMessageType
                    },
                    on: {
                        change(templateJson: any) {
                            self.$emit('change', (templateJson && !_.isEmpty(templateJson) ? templateJson : {}))
                        }
                    }
                })
        }).$mount(`#${this.id}`)
    }

    [Nuxt.js]
    mounted() {
        if (process.client) {
            const builder: any = require('~/node_modules/vue-builder-plugin/src/plugins/Module')
            const store =  builder.default.store
            const router = builder.default.router
            const self = this
            this.builder = new Vue({
                router,
                store,
                render: (h) =>
                    h(builder.default.component, {
                        props: {
                            propTemplateJson: this.propTemplateJson,
                            propMessageType: this.propMessageType
                        },
                        on: {
                            change(templateJson: any) {
                                self.$emit('change', (templateJson && !_.isEmpty(templateJson) ? templateJson : {}))
                            }
                        }
                    })
            }).$mount(`#${this.id}`)
        }
    }

| attribute |value |type |description | |----------------------------------------|:--------------------------------:|:--------:| -------------------------------------------------------------------------------------------- | |id |up to you |string |for create element (default: builder). Mutiple element should be setup difference name | |store |- |- |for use store in builder component module | |router |- |- |for use router in builder component module | |propTemplateJson |up to you |object |for setup default prop your template json (pass to builder module) | |propMessageType |EMAIL, WEB_ATTENTION, FLEX_MESSAGE|string |for setup default prop your message type (EMAIL: result mjml, WEB_ATTENTION: result html, FLEX_MESSAGE: result line flex message) | |this.builder |up to you |any |for save vue instance data (parameter in your component) | |render |- |function|for render component | |change(templateJson: any) |- |function|for pass updated data from child (module component) to parent (your component) component | |.$mount(#${this.id}) |- |- |for create instance vue |

  1. Use Component
    <div id="builder" />

| attribute |value |type |description | |----------------------------------------|:------------------------:|:--------:| -------------------------------------------------------------------------------------------- | |id |up to you |string |for create element (default: builder). Mutiple element should be setup difference name |

  1. Import Style To Component
    <style lang="scss">
        @import '~/node_modules/vue-builder-plugin/src/assets/scss/Main.scss';
        @import '~/node_modules/vue-builder-plugin/src/assets/css/quill.core.css';
        @import '~/node_modules/vue-builder-plugin/src/assets/css/quill.snow.css';
    </style>
  1. Access Builder Instance Directive From Outside
    <YOUR_PARAMETER>.$el.__vue__.<YOUR_DIRECTIVE(DATA, PROPS, METHODS, ...)>

    such as
        this.builder.$el.__vue__.onUpdateScreen({
            mobile: this.isMobileActive,
            desktop: this.isFullsceenActive,
            width: {
                type: this.propWidthScreenType,
                size: this.propWidthScreenSize
            }
        })

| attribute |value |type |description | |----------------------------------------|:-----------------------------:|:--------:| ----------------------------------------------------------------------------------------------- | |isMobileActive |true, false |boolean |for set up screen (if value is true you can view on mobile screen only) | |isFullsceenActive |true, false |boolean |for set up screen (if value is true you can view on desktop screen only) | |width |{ type: string, size: string } |object |for set up width and type screen (if you set value you still edit builder) | |propWidthScreenType |SM, MD, LG, FULL, CUSTOM |string |for set up screen type (SM: 30%, MD: 70%, LG: 50%, FULL: 100%, CUSTOM: up to you, DEFAULT: 90%)| |propWidthScreenSize |number of percent (ex. 25%) |string |for set up screen custom |

Project setup

yarn install

Compiles and hot-reloads for development

yarn dev

Compiles and minifies for production

yarn build:ts

Lints and fixes files

yarn lint

Customize configuration

See Configuration Reference.