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-winbox-no-types

v0.0.3

Published

A wrapper component for WinBox.js with the ability to mount Vue components.

Downloads

1

Readme

vue-winbox

A wrapper component for WinBox.js with the ability to mount Vue components.

Demo: https://wobsoriano.github.io/vue-winbox/

Install

yarn add vue-winbox

Usage (Vue 3)

VueWinBox works out-of-the-box using the native teleport component.

<template>
  <VueWinBox ref="winboxRef" :options="options" @onmove="onMove">
    <div>Window 1: {{ count }}</div>
  </VueWinBox>
  <VueWinBox ref="winboxRef2" :options="options" @onmove="onMove">
    <div>Window 2: {{ count }}</div>
  </VueWinBox>
</template>

<script>
import { defineComponent, ref } from 'vue'
import VueWinBox from 'vue-winbox'

export default defineComponent({
  components: { VueWinBox },
  setup() {
    const count = ref(0)
    const options = {
      title: 'Current count: 0',
      class: 'modern',
    }
    const winboxRef = ref()
    const winboxRef2 = ref()

    setInterval(() => {
      count.value++
      winboxRef.value?.winbox?.setTitle('Current count: ' + count.value)
      winboxRef2.value?.winbox?.setTitle('Current count: ' + count.value)
    }, 500)

    return {
      count,
      options,
      winboxRef,
      winboxRef2,
      onMove({ id }) {
          // id is the unique id of the window
      }
    }
  }
})
</script>

Usage (Vue 2)

For Vue 2, vue-simple-portal is recommended. Just install it globally and it should work out-of-the-box without setting any additional props.

First, install the component together with the composition-api plugin.

yarn add @vue/composition-api vue-simple-portal

Then import it in your main.js file.

// main.js
import Vue from 'vue'
import VueCompositionAPI from '@vue/composition-api'
import VuePortal from '@linusborg/vue-simple-portal'

Vue.use(VueCompositionAPI)
Vue.use(VuePortal, {
  name: 'portal', // optional, use to rename component
})
<template>
  <VueWinBox ref="winboxRef" :options="options">
    <div>{{ count }}</div>
  </VueWinBox>
</template>
  
<script>
import { defineComponent } from 'vue'
import VueWinBox from 'vue-winbox'

export default {
  components: { VueWinBox },
  data: () => ({
      count: 0,
      options: {
          title: 'Current count: 0',
          class: 'modern'
      }
  }),
  mounted() {
    setInterval(() => {
      this.count++
      this.$refs?.winboxRef?.winbox?.setTitle('Current count: ' + this.count)
    }, 500)
  }
}
</script>

Props

Name | Type | Default | Description | ------ | ------ | ------ | ------ | options | Object | Reference | WinBox options. Applied only on mount. | portalComponent | String | portal | Portal component name. Vue 2 only. | portalSelector | String | selector | Portal component selector attribute. Vue 2 only. | portalAttributes | Object | {} | Other attributes. Vue 2 only. |

Methods

To update props and access methods/controls, just add a ref to the VueWinBox component and use it like how you would with WinBox.js:

// Set the window title
this.$refs.winboxRef.winbox.setTitle('New title')

// Custom Position / Size
this.$refs.winboxRef.winbox.resize('50%', '50%').move('center', 'center')

// Add class
this.$refs.winboxRef.winbox.addClass('modern')

// Focus a window (bring up to front)
this.$refs.winboxRef.winbox.focus()

// Chaining Methods
this.$refs.winboxRef.winbox
    .setTitle('Title')
    .resize('50%', '50%')
    .move('center', 'center')
    .focus()

To reinitialize a closed window:

this.$refs.winboxRef.initialize()

Events

Name | Type | Default | Description | ------ | ------ | ------ | ------ | onresize | Function | - | Fired when the window resizes. | onclose | Function | - | Fired when the window is closing. | onfocus | Function | - | Fired when the window is in focus. | onblur | Function | - | - | onmove | Function | - | Fired when the window moves. |

Vanilla WinBox.js

Vue 3 users can create a new vanilla WinBox.js window using a composable.

import { useWinBox } from 'vue-winbox'

export default defineComponent({
    setup() {
        const createWindow = useWinBox()

        const generate = () => {
            const winbox = createWindow({
                title: 'Window title',
                ...
            })
            winbox.fullscreen()
        }

        return {
            generate
        }
    }
})

Vue 2 users can create via $WinBox global variable.

export default {
    methods: {
        generate() {
            const winbox = this.$WinBox({
                title: 'Window title',
                ...
            })   
            winbox.fullscreen()         
        }
    }
}

Credits

  • WinBox.js - Modern HTML5 window manager for the web.
  • vue-demi - Creates Universal Library for Vue 2 & 3

License

MIT - Copyright (c) 2021 Robert Soriano