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-last-modal

v1.3.14

Published

Minimalistic promise-based, programmatically-opening & stacking modal plugin for Vue 2

Downloads

263

Readme

Last Modal

Minimalistic promise-based, programmatically-open, stackable and responsive component modals.

Installation

Install the package

yarn add vue-last-modal

And add use it in your app's main file

import Vue from Vue
import LastModal from 'vue-last-modal'

Vue.use(LastModal, options)

Options

  • cancelLabel (String) - Used in dialogs. Cancel button label. Default: Cancel
  • confirmLabel (String) - Used in dialogs. Submit button label. Default: OK
  • buttonClassName (String) - Used in dialogs. Generated button style class. Default: btn btn-secondary
  • primaryButtonClassName (String) - Used in dialogs. Generated primary button style class. Default: btn btn-primary
  • backdropTransitionName (String) - Name of a transition used by a <transition> component wrapping backdrop element
  • modalTransitionName (String) - Name of a transition used by a <transition> component wrapping every open modal element.

Opening a custom modal

You can open your modal component, and provide it with custom props, by calling _vm.$modal(component[, options]) within your App context.

import ReleaseTheKrakenModal from './ReleaseTheKrakenModal.vue'

export default {
  methods: {
    async releaseTheKraken() {
      const hasKrakenBeenReleased = await this.$modal(ReleaseTheKrakenModal, {
        krakenName: 'Booboo'
      })

      if (hasKrakenBeenReleased) {
        console.log('The Kraken has been released!')
      }
    }
  }
}

Your modal component then needs to be wrapped by provided modal-layout component, that provides the basic functionality and template for your layout.

// ReleaseTheKrakenModal.vue

<template>
  <modal-layout title="Kraken releaser">
    Should the mighty Kraken, named {{ krakenName }}, be released?

    <template slot="footer">
      <button @click="cancel()">Nay!</button>
      <button @click="submit()">Aye!</button>
    </template>
  </modal-layout>
</template>

<script>
export default {
  props: {
    krakenName: String
  },
  methods: {
    cancel() {
      this.$emit('close', false)
    },
    submit() {
      this.$emit('close', true)
    }
  }
}
</script>

You can then close the modal by emitting the close event, with $event object as the return value of your modal. The default return value is undefined.

<modal-layout> component

This component provides basic functionality and template for your modals.

Props

  • title (String) - The title of the modal. Override by header slot, if specified. Default: undefined.
  • width (Number) - (Maximum) width of the the modal.
  • scroll (Boolean) - If present, the maximum height of the modal would be the height of current viewport and content would become scrollable. header (title) and footer slots are kept static.
  • hide-closer (Boolean) - If present, modal-closing cross icon won't be visible.
  • plain (Boolean) - If present, no default styles are applied for the modals content.
  • prevent-backdrop-click (Boolean) - If present, modal won't be closable by clicking on the backdrop.

Events

  • before-close - If present, this event is fired when closing. A callback method close is provided as an $event object and the modal won't be closed util it is called. This could be used for handling validations and waiting for some async events to be completed before closing, etc.
<template>
  <modal-layout @before-close="waitForSomePromise">
    ...
  </modal-layout>
</template>

<script>
export default {
  methods: {
    waitForSomePromise(close) {
      this.somePromise.then(close)
    }
  }
}
</script>

Template slots

  • default - Default content is rendered without any styling.
  • header - Custom header of the template. This overrides title prop.
  • content - Main content of the modal
  • footer - Footer of the modal, suitable for placing some buttons.

Opening a dialog

As a shorthand for opening a simple confirmation modal, you can use build-in component opened by calling _vm.$dialog(options) within your App's context. Here is an full example:

export default {
  methods:  {
    async releaseTheKraken()  {
      const hasKrakenBeenReleased = await this.$dialog({
        title: 'Kraken Releaser',
        message: 'Should the mighty Kraken, named BooBoo, be released?',
        buttons: [
          {
            label: 'Ney!',
            value: false,
            className: 'btn btn-secondary'
          },
          {
            label: 'Aye!'
            value: true,
            className: 'btn btn-primary'
          }
        ]
      })

      // ...
    }
  }
}

Options

  • title (String) - Title of the dialog. Default: undefined.
  • message (String) - Text content of the dialog. Default: undefined.
  • buttons (Array) - An array of button options, by which the dialog's buttons are rendered. Button options are:
    • label (String) - Label of the button.
    • value (Mixed) - Returning value of a dialog after clicking the button.
    • className (String) - Style class name applyed to this button.