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

v0.3.0

Published

The last modal you need

Downloads

2

Readme

vue-flawless-modal

The last modal you need

Playground

Go to codesandbox

Installation

  1. Install via NPM
npm install vue-flawless-modal
  1. Use Vue.use:
import VueFlawlessModal from 'vue-flawless-modal'

Vue.use(VueFlawlessModal)
  1. Add <modal-root /> somewhere (e.g. App.vue):
<template>
  <div id="app">
    <modal-root />
  </div>
</template>

Documentation

Basic usage

Create modal

Use <modal-window> with name property:

<modal-window name="myModal">...</modal-window>

Programmatic controls

Then, you can control your modal anywhere using $modal methods

/* In components */
this.$modal.open('myModal')
this.$modal.close('myModal')
/* Outside vue */
import { modal } from 'vue-flawless-modal'

modal.open('myModal')
modal.close('myModal')

Control using v-model

Set property to true to open modal
Set property to false to close modal

<template>
  <modal-window name="myModal" v-model="isOpened">...</modal-window>
</template>

<script>
export default {
  data: () => ({ isOpened: false })
}
</script>

NOTE: If you toggle modal with another way, prop will be changed too

Properties

Overlay

By default, overlay is set to true. To remove it, use:

<modal-window name="myModal" :overlay="false">...</modal-window>

Close methods

By default, all props are set to true

<modal-window
  name="myModal"
  :close-button="false"
  :close-on-esc="false"
  :close-on-overlay="false"
>
  <div>Some info</div>
</modal-window>

Change position

If overlay is disabled, you can change modal position

<modal-window
  name="myModal"
  :position="{ x: 'right', y: 'top' }"
>
  <div>Some info</div>
</modal-window>
  • x: left | center | right
  • y: top | center | bottom

Animating modal

Modal is wrapper into default <transition> component with alias modal-

<modal-window
  name="myModal"
  animation="fade"
  :animationDuration="{ open: 250, close: 250 }"
>
  <div>Some info</div>
</modal-window>
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.25s ease-in-out;
  will-change: opacity;
}

.modal-fade-enter,
.modal-fade-leave-to {
  opacity: 0;
}

Animations out of box: fade | top | flip

Sending context to modal

If you have some form and you need to fill it with data from another part of application, you can do it in two ways:

export default {
  data() {
    return {
      form: {
        title: '',
        text: ''
      }
    }
  },
  methods: {
    openModal() {
      /* With modal open */
      this.$modal.open('myModal', this.form)
      /* Or just with send */
      this.$modal.send('myModal', this.form)
    }
  }
}

And then, you can use it with slot-scope

<modal-window name="myModal">
  <template slot-scope="form">
    <input v-model="form.title" />
    <textarea v-model="form.text" />
  </template>
</modal-window>

TODO

  • [ ] Fix mobile issues
  • [ ] 2+ modals of a single type on the screen
  • [ ] Manually passed modal position
  • [ ] Popover-style

Author

My name is Anton, I'm frontend developer and I do little but useful things for JavaScript and especially for Vue
Check out my GitHub: click here
Follow me on Twitter: click here

License

MIT