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-progressbar-xeonpowder

v0.8.1

Published

A lightweight progress bar for vue

Downloads

4

Readme

vue-progressbar

Table of Contents

Demo

Requirements

Installation

# npm
$ npm install vue-progressbar-xeonpowder

# yarn
$ yarn add vue-progressbar-xeonpowder

Build from source

# git
cd /directory/to/clone/to
git clone https://github.com/XeonPowder/vue-progressbar.git

cd /directory/cloned/to

# npm or yarn
npm install | yarn install

# build with npm or yarn
[npm|yarn] run build

Usage

main.js

import Vue from 'vue'
import VueProgressBar from 'vue-progressbar'
import App from './App'

const options = {
  debug: true,
  color: '#bffaf3',
  failedColor: '#874b4b',
  thickness: '5px',
  transition: {
    time: '0.7s',
    opacity: '1.6s'
  },
  trail: '-1px',
  autoRevert: true,
  location: 'top',
  inverse: false,
  gradient: {
    use: true,
    gradient: 'predefined'
  },
  init: true,
  bounce: true
}

Vue.use(VueProgressBar, options)

new Vue({
  ...App
}).$mount('#app')

Constructor Options

|key|description|defualt|options| |:---|---|---|---| |autoRevert|will temporary color changes automatically revert upon completion or fail|true|true, false| |color|color of the progress bar|'rgb(19, 91, 55)'|RGB, HEX| |debug|output console errors|false|true, false| |failedColor|color of the progress bar upon load fail|'red'|RGB, HEX| |inverse|inverse the direction of the progress bar|false|true, false| |location|change the location of the progress bar|top|left, right, top, bottom| |thickness|thickness of the progress bar|'2px'|px, em, pt, %, vh, vw| |transition|transition speed/opacity of the progress bar|{time: '0.2s', opacity: '0.6s'}|s, ms| |trail|change the type of progress bar, trailing or not|'-1px'|px| |bounce|change the bounce type of the progress bar|false|true, false| |gradient|should the progress bar use a gradient|{use: false, gradient: 'predefined'}|use: [true, false], gradient: ['predefined', '-linear-gradient(to [top, left], [RGB, HEX], [RGB, HEX]']| |init|when a progress bar is created should it be initialized with data|true|true, false|

Implementation

App.vue

<template>
    <div id="app">
        <!-- for example router view -->
        <router-view></router-view>
        <!-- setup progressbar -->
        <!-- automatically added to $pb -->
        <!-- required: show - should the progress bar be able to be displayed -->
        <!-- required: reference - name of this specific progress bar -->
        <!-- optional: options - can be passed custom constructor options -->
        <vue-progress-bar :options="options" :show="true" reference="router"></vue-progress-bar>
    </div>
</template>

<script>
export default {
  mounted () {
    //  [App.vue specific] Start the bar and finish it on first load
    this.$pb.start('router')
    let this2 = this
    setTimeout(() => {
      this2.$pb.finish('router')
    }, 400) // 400 is a good number, anything less and the bars will not work nicely.
  },
  created () {
    //  using vue-router before each page change
    this.$router.beforeEach((to, from, next) => {
      this.startReroute(to, from, next)
    })
    //  hook the progress bar to finish after we've finished moving router-view
    this.$router.afterEach((to, from) => {
      //  finish the `router` progress bar
      let this2 = this
      setTimeout(() => {
        this2.$pb.finish('router')
      }, 400) // 400 is a good number, anything less and the bars will not work nicely.
    })
  }
  methods: {
    startReroute (to, from, next) {
      //  vue-router meta style
      this.$pb.start('router', to.meta.progress, 'meta')
      //
      //  randomize style
      let random = {
        color: { r: {min: 0, max: 255}, g: {min: 0, max: 255}, b: {min: 0, max: 255} },
        fail: { r: {min: 250, max: 255}, g: {min: 0, max: 0}, b: {min: 100, max: 150} },
        thickness: { min: 10, max: 20, suffix: 'px' },
        trail: { min: 20, max: 50, suffix: 'px' },
        transition: {
          time: { min: 0.5, max: 1.75 },
          opacity: { min: 0.7, max: 1.4 }
        },
        location: ['top', 'bottom', 'left'],
        inverse: [true, false],
        bounce: [true, false],
        gradient: { 
          use: [true, false],
          gradient: {
            from: { r: {min: 0, max: 255}, g: {min: 0, max: 255}, b: {min: 0, max: 255} },
            to: { r: {min: 0, max: 255}, g: {min: 0, max: 255}, b: {min: 0, max: 255} }
          }
        }
      }
      this.$pb.start('router', random, 'randomize')
      //// or
      this.$pb.randomize('router', random)
      this.$pb.start('router')
      //// or
      this.$pb.start('router', {trail: {min: -1, max: -1}}, 'randomize')      
      //
      //  modify style
      this.$pb.modify('router', {call: 'inverse', modifier: 'set', argument: true})
      this.$pb.start('router')
      //// or 
      this.$pb.modify('router', [{call: 'inverse', modifier: 'set', argument: true}, {call...}])
      this.$pb.start('router')
      //
      // continue to next page
      next()
    }
  }
}
</script>

vue-router

export default [
  {
    path: '/achievement',
    name: 'achievement',
    component: './components/Achievement.vue'
    meta: {
      progress: {
        func: [
          {call: 'color', modifier: 'temp', argument: '#7000ff'},
          {call: 'fail', modifier: 'temp', argument: '#6e0000'},
          {call: 'location', modifier: 'temp', argument: 'top'},
          {call: 'transition', modifier: 'temp', argument: {time: '2.0s', opacity: '0.6s'}},
          {call: 'inverse', modifier: 'temp', argument: true},
          {call: 'thickness', modifier: 'temp', argument: '10px'},
          {call: 'trail', modifier: 'temp', argument: '50px'},
          {call: 'bounce', modifier: 'temp', argument: false },
          {call: 'gradient', modifier: 'temp', argument: {use: true, gradient: 'predefined'}}
        ]
      }
    }
  }
]

vue-router meta/modify options

|call|modifier|argument|example| |:---|---|---|---| |color|set, temp|string|{call: 'color', modifier: 'temp', argument: '#ffb000'}| |fail|set, temp|string|{call: 'fail', modifier: 'temp', argument: '#ffb000'}| |inverse|set, temp|boolean|{call: 'inverse', modifier: 'temp', argument: true}| |location|set, temp|string|{call: 'location', modifier: 'temp', argument: 'top'}| |thickness|set, temp|string|{call: 'thickness', modifier: 'temp', argument: '10px'}| |transition|set, temp|object|{call: 'transition', modifier: 'temp', argument: {time: '0.6s', opacity: '0.6s'}}| |trail|set, temp|string|{call: 'trail', modifier: 'temp', argument: '100px'}| |bounce|set, temp|boolean|{call: 'bounce', modifier: 'temp', argument: false }| |gradient|set, temp|object|{call: 'gradient', modifier: 'temp', argument: {use: true, gradient: 'linear-gradient(to left, #ffffff, #000000)'}}|

Methods

|function|description|parameters|example|return| |:---|---|---|---|---| |init|link bar with data (automaticallly in $pb.create() if init = true in constructor options)|name|this.$pb.init('router')|N/A| |start|start a progress bar|name, (options), (modifier)|this.$pb.start('router')|N/A| |finish|finish a progress bar|name|this.$pb.finish('router')|N/A| |fail|fail a progress bar|name|this.$pb.fail('router')|N/A| |create|craete a progress bar|(name), (options)|this.$pb.create('test')|N/A| |quickHide|quickly hide a progress bar (automatically in $pb.start())|name|let bQuicklyHidden = this.$pb.quickHide('router')|boolean| |randomize|randomize a progress bar|name, (meta)|this.$pb.randomize('router')|N/A| |destroy|remove a progress bar from memory|name|let bDestroyed = this.$pb.destroy('test')|boolean| |progress|increase the progression # of a progress bar (automatically called in $pb.start())|name, (options)|this.$pb.progress('test')|N/A| |modify|modify a property/properties of a progress bar|name, meta|this.$pb.modify('router', {call: 'color', modifier: 'temp', argument: '#f0f0f0'})|N/A`|

Examples

vue-resource

<template>
  <div>
    <vue-progress-bar reference="loading"></vue-progress-bar>
  </div>
</template>

<script>
export default {
  methods: {
    test () {
      this.$pb.start('loading')
      this.$http.jsonp('http://api.rottentomatoes.com/api/public/v1.0/lists/movies/in_theaters.json?apikey=7waqfqbprs7pajbz28mqf6vz')
      .then((response) => {
        this.$pb.finish('loading')
      }, (response) => {
        this.$pb.fail('loading')
      })
    }
  }
}
</script>

License

This project uses an open-source MIT License