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

@ophiuchus/dialog

v1.0.2

Published

### 介绍

Downloads

1

Readme

Dialog 弹出框

介绍

弹出模态框,常用于消息提示、消息确认,或在当前页面内完成特定的交互操作。

弹出框组件支持函数调用和组件调用两种方式。

函数调用

Dialog 是一个函数,调用后会直接在页面中弹出相应的模态框。

import Dialog from '@ophiuchus/dialog';

Dialog({ message: '提示' });

组件调用

通过组件调用 Dialog 时,可以通过下面的方式进行注册:

import Vue from 'vue';
import Dialog from '@ophiuchus/dialog';

// 全局注册
Vue.use(Dialog);

// 局部注册
export default {
  components: {
    [Dialog.Component.name]: Dialog.Component,
  },
};

代码演示

消息提示

用于提示一些消息,只包含一个确认按钮。

Dialog.alert({
  title: '标题',
  message: '弹窗内容',
}).then(() => {
  // on close
});

Dialog.alert({
  message: '弹窗内容',
}).then(() => {
  // on close
});

消息确认

用于确认消息,包含取消和确认按钮。

Dialog.confirm({
  title: '标题',
  message: '弹窗内容',
})
  .then(() => {
    // on confirm
  })
  .catch(() => {
    // on cancel
  });

圆角按钮风格

将 theme 选项设置为 round-button 可以展示圆角按钮风格的弹窗。

Dialog.alert({
  title: '标题',
  message: '弹窗内容',
  theme: 'round-button',
}).then(() => {
  // on close
});

Dialog.alert({
  message: '弹窗内容',
  theme: 'round-button',
}).then(() => {
  // on close
});

异步关闭

通过 beforeClose 属性可以传入一个回调函数,在弹窗关闭前进行特定操作。

function beforeClose(action, done) {
  if (action === 'confirm') {
    setTimeout(done, 1000);
  } else {
    done();
  }
}

Dialog.confirm({
  title: '标题',
  message: '弹窗内容',
  beforeClose,
});

全局方法

引入 Dialog 组件后,会自动在 Vue 的 prototype 上挂载 $dialog 方法,在所有组件内部都可以直接调用此方法。

export default {
  mounted() {
    this.$dialog.alert({
      message: '弹窗内容',
    });
  },
};

组件调用

如果需要在弹窗内嵌入组件或其他自定义内容,可以使用组件调用的方式。

<sf-dialog v-model="show" title="标题" show-cancel-button>
  <img src="https://img01.yzcdn.cn/vant/apple-3.jpg" />
</sf-dialog>
export default {
  data() {
    return {
      show: false,
    };
  },
};

API

方法

| 方法名 | 说明 | 参数 | 返回值 | | --- | --- | --- | --- | | Dialog | 展示弹窗 | options | Promise | | Dialog.alert | 展示消息提示弹窗 | options | Promise | | Dialog.confirm | 展示消息确认弹窗 | options | Promise | | Dialog.setDefaultOptions | 修改默认配置,对所有 Dialog 生效 | options | void | | Dialog.resetDefaultOptions | 重置默认配置,对所有 Dialog 生效 | - | void | | Dialog.close | 关闭弹窗 | - | void |

Options

通过函数调用 Dialog 时,支持传入以下选项:

| 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | title | 标题 | string | - | | width | 弹窗宽度,默认单位为px | number | string | 320px | | message | 文本内容,支持通过\n换行 | string | - | | messageAlign | 内容对齐方式,可选值为left right | string | center | | theme | 样式风格,可选值为round | string | default | | className | 自定义类名 | any | - | | showConfirmButton | 是否展示确认按钮 | boolean | true | | showCancelButton | 是否展示取消按钮 | boolean | false | | confirmButtonText | 确认按钮文案 | string | 确认 | | confirmButtonColor | 确认按钮颜色 | string | #ee0a24 | | cancelButtonText | 取消按钮文案 | string | 取消 | | cancelButtonColor | 取消按钮颜色 | string | black | | overlay | 是否展示遮罩层 | boolean | true | | overlayClass | 自定义遮罩层类名 | string | - | | overlayStyle | 自定义遮罩层样式 | object | - | | closeOnPopstate | 是否在页面回退时自动关闭 | boolean | true | | closeOnClickOverlay | 是否在点击遮罩层后关闭弹窗 | boolean | false | | lockScroll | 是否锁定背景滚动 | boolean | true | | allowHtml | 是否允许 message 内容中渲染 HTML | boolean | true | | beforeClose | 关闭前的回调函数,调用 done() 后关闭弹窗,调用 done(false) 阻止弹窗关闭 | (action, done) => void | - | | transition | 动画类名,等价于 transtionname属性 | string | - | | getContainer | 指定挂载的节点,用法示例 | string | () => Element | body |

Props

通过组件调用 Dialog 时,支持以下 Props:

| 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | v-model | 是否显示弹窗 | boolean | - | | title | 标题 | string | - | | width | 弹窗宽度,默认单位为 px | number | string | 320px | | message | 文本内容,支持通过 \n 换行 | string | - | | message-align | 内容对齐方式,可选值为 left right | string | center | | theme | 样式风格,可选值为 round-button | string | default | | show-confirm-button | 是否展示确认按钮 | boolean | true | | show-cancel-button | 是否展示取消按钮 | boolean | false | | confirm-button-text | 确认按钮文案 | string | 确认 | | confirm-button-color | 确认按钮颜色 | string | #ee0a24 | | cancel-button-text | 取消按钮文案 | string | 取消 | | cancel-button-color | 取消按钮颜色 | string | black | | overlay | 是否展示遮罩层 | boolean | true | | overlay-class | 自定义遮罩层类名 | string | - | | overlay-style | 自定义遮罩层样式 | object | - | | close-on-popstate | 是否在页面回退时自动关闭 | boolean | true | | close-on-click-overlay | 是否在点击遮罩层后关闭弹窗 | boolean | false | | lazy-render | 是否在显示弹层时才渲染节点 | boolean | true | | lock-scroll | 是否锁定背景滚动 | boolean | true | | allow-html | 是否允许 message 内容中渲染 HTML | boolean | true | | before-close | 关闭前的回调函数,调用 done() 后关闭弹窗,调用 done(false) 阻止弹窗关闭 | (action, done) => void | - | | transition | 动画类名,等价于 transtionname 属性 | string | - | | get-container | 指定挂载的节点,用法示例 | string | () => Element | - |

Events

通过组件调用 Dialog 时,支持以下事件:

| 事件 | 说明 | 回调参数 | | ------- | ------------------------ | -------- | | confirm | 点击确认按钮时触发 | - | | cancel | 点击取消按钮时触发 | - | | open | 打开弹窗时触发 | - | | close | 关闭弹窗时触发 | - | | opened | 打开弹窗且动画结束后触发 | - | | closed | 关闭弹窗且动画结束后触发 | - |

Slots

通过组件调用 Dialog 时,支持以下插槽:

| 名称 | 说明 | | ------- | ---------- | | default | 自定义内容 | | title | 自定义标题 |

样式变量

组件提供了下列 Less 变量,可用于自定义样式,使用方法请参考主题定制

| 名称 | 默认值 | 描述 | | ------------------------------------- | -------------------------- | ---- | | @dialog-width | 320px | - | | @dialog-small-screen-width | 90% | - | | @dialog-font-size | @font-size-lg | - | | @dialog-transition | @animation-duration-base | - | | @dialog-border-radius | 16px | - | | @dialog-background-color | @white | - | | @dialog-header-font-weight | @font-weight-bold | - | | @dialog-header-line-height | 24px | - | | @dialog-header-padding-top | 26px | - | | @dialog-header-isolated-padding | @padding-lg 0 | - | | @dialog-message-padding | @padding-lg | - | | @dialog-message-font-size | @font-size-md | - | | @dialog-message-line-height | @line-height-md | - | | @dialog-message-max-height | 60vh | - | | @dialog-has-title-message-text-color | @gray-7 | - | | @dialog-has-title-message-padding-top | @padding-xs | - | | @dialog-button-height | 48px | - | | @dialog-round-button-height | 36px | - | | @dialog-confirm-button-text-color | @red | - |