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

@sygnas/vue-modal

v3.2.0

Published

Vue で簡易的なモーダルを実装(自分用)。

Downloads

3

Readme

syg-vue-modal

Vue で簡易的なモーダルを実装(自分用)。

Description

  • Vue3 でシンプルなモーダルウィンドウを使いたい人向け。
  • css も最低限のものしか指定していない。
  • Youtube 埋め込みとかまったく実装していません。
  • モーダルの開閉は useModalControl() で作成したインスタンス経由で行う。

Latest Release

  • 2023.06.20 : ver.3.2.0
    • autoAlign オプションを追加
  • 2022.11.07 : ver.3.1.0
    • TModalOption から styleBgColor を削除
    • 様々なスタイルを CSS 変数に対応
  • 2022.07.29 : ver.3.0.4
    • README.md に isOpen の説明を追加。
    • package.json に types を追加。
  • 2022.06.12 : ver.3.0.2
    • onClose() を実行する条件を修正
    • type TModalOption を export に追加。
  • 2022.06.11 : ver.3.0.0
    • useModalControl() を使う方式に刷新。
    • それ以前との互換性なし。

Usage

Install

npm install --save @sygnas/vue-modal

Vue2 は過去バージョンを使う。

npm install --save @sygnas/vue-modal@^1.1.1

html / JS

<section>
  <div id="app">
    <button @click.prevent="showModal">モーダル表示</button>

    <vue-modal id="modal-1" :option="modalOption"> モーダルの内容 </vue-modal>
  </div>
</section>
import { createApp } from "vue";
// VueModal本体とデフォルトオプション
import { VueModal, useModalControl } from "@sygnas/vue-modal";
// モーダル用CSS
import "@sygnas/vue-modal/css";

// モーダルのオプション
const modalOption = {
  closeBtnText: "CLOSE",
  styleBgColor: "rgba(0,0,0,0.9)",
};

// モーダルコントローラー
// <vue-modal> に付与した id と同じ文字列を与える
// モーダルの開閉、スクロール、開閉時イベント設定などはコントローラー経由で行う
const modalControl = useModalControl("modal-1", {
  onOpen: (id) => {
    console.log("modal open");
  },
  onClose: (id) => {
    console.log("modal close");
  },
});

const app = createApp({
  components: {
    VueModal,
  },
  data() {
    return {
      modalOption,
    };
  },
  methods: {
    showModal() {
      // モーダル開く
      modalControl.open();
      // 0.1秒後にページ先頭にスムーススクロール
      setTimeout(() => {
        modalControl.scroll(0, true);
      }, 100);
    },
  },
});
.c-modal .c-modal__content {
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  padding: 4rem;
}

Attributes

option

モーダルの外見に関する設定。

<vue-modal :option="modalOption"></vue-modal>
const modalOption = {
  closeBtnText: "CLOSE",
  styleBgColor: "rgba(0,0,0,0.9)",
};

| パラメーター | 初期値 | 説明 | | ------------------ | ---------------------- | ------------------------------------------------- | | closeBtnText | 'X' | 閉じるボタンの内容。html 可。 | | classModal | 'c-modal' | 全体の class 名 | | classBg | 'c-modal__bg' | 背景の class 名 | | classSlide | 'c-modal__slide' | 右端にスクロールバーを表示するコンテナの class 名 | | classContent | 'c-modal__content' | 内容コンテナの class 名 | | classClose | 'c-modal__close-btn' | 閉じるボタの class 名 | | styleZIndex | 10000 | モーダルの z-index | | transitionBaseName | 'syg-modal-fade' | <transition name=""> の指定 | | autoAlign | true | コンテンツの高さ < 画面の高さ の時に align-items:center を自動で行うか |

Control

useModalControl() でインスタンスを作成し、開閉などはインスタンス経由で行う。

const modalControl = useModalControl(id, option);
modalControl.open();
modalControl.scroll(1);

useModalControl(id, option)

| 引数 | 初期値 | 説明 | | ------ | --------- | -------------------------------------------------------- | | id | undefined | 【必須】<vue-modal id="モーダルID"> と同じ文字列 | | option | undefined | 開閉時に実行する関数を登録。{onOpen, opClose} |

const modalControl = useModalControl("modal-1", {
  onOpen: (id) => {
    console.log("modal open");
  },
  onClose: (id) => {
    console.log("modal close");
  },
});

isOpen

モーダルの開閉状態。

console.log(modalControl.isOpen); // true / false

open()

モーダルを開く。

modalControl.open();

close()

モーダルを閉じる。 <vue-modal> 自身で閉じるので使う機会は少ない。

modalControl.close();

scroll(posY, isSmooth = false)

指定座標 posY にスクロールする。 isSmoothtrue を指定するとスムーススクロールになる。

modalControl.scroll(0, true);

License

MIT

Release

  • 2022.04.18
    • サンプルに import "@sygnas/vue-modal/css"; 行を追加。
    • オプションの初期値を読み込んで Object.assign() する方式に変更。
  • 2022.03.15
    • css モジュールが適用されていないのを修正
  • 2022.02.16
    • Vue3 対応
  • 2021.09.16
    • モーダルを閉じるイベント v-on:close を使わず、 v-bind:closeHndl に メソッドを渡す方法に変更。
  • 2021.04.07
    • 親からスクロールさせるための関数 scroll() を追加。
  • 2021.01.16
    • とりあえず作成。