This commit is contained in:
hupeng
2023-10-11 11:27:47 +08:00
commit d0b337c596
659 changed files with 67106 additions and 0 deletions

View File

@ -0,0 +1,7 @@
## 1.0.22023-07-02
uv-notify 由于弹出层uv-popup的修改打开和关闭方法更改详情参考文档https://www.uvui.cn/components/notify.html
## 1.0.12023-05-16
1. 优化组件依赖,修改后无需全局引入,组件导入即可使用
2. 优化部分功能
## 1.0.02023-05-10
uv-notify 消息提示

View File

@ -0,0 +1,45 @@
export default {
props: {
// 到顶部的距离
top: {
type: [String, Number],
default: 0
},
// type主题primarysuccesswarningerror
type: {
type: String,
default: 'primary'
},
// 字体颜色
color: {
type: String,
default: '#ffffff'
},
// 背景颜色
bgColor: {
type: String,
default: ''
},
// 展示的文字内容
message: {
type: String,
default: ''
},
// 展示时长为0时不消失单位ms
duration: {
type: [String, Number],
default: 3000
},
// 字体大小
fontSize: {
type: [String, Number],
default: 15
},
// 是否留出顶部安全距离(状态栏高度)
safeAreaInsetTop: {
type: Boolean,
default: false
},
...uni.$uv?.props?.notify
}
}

View File

@ -0,0 +1,213 @@
<template>
<uv-transition
mode="slide-top"
:customStyle="containerStyle"
:show="open"
>
<view
class="uv-notify"
:class="[`uv-notify--${tmpConfig.type}`]"
:style="[backgroundColor, $uv.addStyle(customStyle)]"
>
<uv-status-bar v-if="tmpConfig.safeAreaInsetTop"></uv-status-bar>
<view class="uv-notify__warpper">
<slot name="icon">
<uv-icon
v-if="['success', 'warning', 'error'].includes(tmpConfig.type)"
:name="tmpConfig.icon"
:color="tmpConfig.color"
:size="1.3 * tmpConfig.fontSize"
:customStyle="{marginRight: '4px'}"
></uv-icon>
</slot>
<text
class="uv-notify__warpper__text"
:style="{
fontSize: $uv.addUnit(tmpConfig.fontSize),
color: tmpConfig.color
}"
>{{ tmpConfig.message }}</text>
</view>
</view>
</uv-transition>
</template>
<script>
import mpMixin from '@/uni_modules/uv-ui-tools/libs/mixin/mpMixin.js'
import mixin from '@/uni_modules/uv-ui-tools/libs/mixin/mixin.js'
import props from './props.js';
/**
* notify 顶部提示
* @description 该组件一般用于页面顶部向下滑出一个提示,尔后自动收起的场景
* @tutorial
* @property {String | Number} top 到顶部的距离 ( 默认 0 )
* @property {String} type 主题primarysuccesswarningerror ( 默认 'primary' )
* @property {String} color 字体颜色 ( 默认 '#ffffff' )
* @property {String} bgColor 背景颜色
* @property {String} message 展示的文字内容
* @property {String | Number} duration 展示时长为0时不消失单位ms ( 默认 3000 )
* @property {String | Number} fontSize 字体大小 ( 默认 15 )
* @property {Boolean} safeAreaInsetTop 是否留出顶部安全距离(状态栏高度) ( 默认 false )
* @property {Object} customStyle 组件的样式,对象形式
* @event {Function} open 开启组件时调用的函数
* @event {Function} close 关闭组件式调用的函数
* @example <uv-notify message="Hi uvui"></uv-notify>
*/
export default {
name: 'uv-notify',
mixins: [mpMixin, mixin, props],
data() {
return {
// 是否展示组件
open: false,
timer: null,
config: {
// 到顶部的距离
top: this.top,
// type主题primarysuccesswarningerror
type: this.type,
// 字体颜色
color: this.color,
// 背景颜色
bgColor: this.bgColor,
// 展示的文字内容
message: this.message,
// 展示时长为0时不消失单位ms
duration: this.duration,
// 字体大小
fontSize: this.fontSize,
// 是否留出顶部安全距离(状态栏高度)
safeAreaInsetTop: this.safeAreaInsetTop
},
// 合并后的配置,避免多次调用组件后,可能会复用之前使用的配置参数
tmpConfig: {}
}
},
computed: {
containerStyle() {
let top = 0
if (this.tmpConfig.top === 0) {
// #ifdef H5
// H5端导航栏为普通元素需要将组件移动到导航栏的下边沿
// H5的导航栏高度为44px
top = 44
// #endif
}
const style = {
top: this.$uv.addUnit(this.tmpConfig.top === 0 ? top : this.tmpConfig.top),
// 因为组件底层为uv-transition组件必须将其设置为fixed定位
// 让其出现在导航栏底部
position: 'fixed',
left: 0,
right: 0,
zIndex: 10076
}
return style
},
// 组件背景颜色
backgroundColor() {
const style = {}
if (this.tmpConfig.bgColor) {
style.backgroundColor = this.tmpConfig.bgColor
}
return style
},
// 默认主题下的图标
icon() {
let icon
if (this.tmpConfig.type === 'success') {
icon = 'checkmark-circle'
} else if (this.tmpConfig.type === 'error') {
icon = 'close-circle'
} else if (this.tmpConfig.type === 'warning') {
icon = 'error-circle'
}
return icon
}
},
created() {
// 通过主题的形式调用toast批量生成方法函数
['primary', 'success', 'error', 'warning'].map(item => {
this[item] = message => this.show({
type: item,
message
})
})
},
methods: {
show(options) {
// 不将结果合并到this.config变量避免多次调用uv-toast前后的配置造成混乱
this.tmpConfig = this.$uv.deepMerge(this.config, options)
// 任何定时器初始化之前,都要执行清除操作,否则可能会造成混乱
this.clearTimer()
this.open = true
if (this.tmpConfig.duration > 0) {
this.timer = setTimeout(() => {
this.open = false
// 倒计时结束清除定时器隐藏toast组件
this.clearTimer()
// 判断是否存在callback方法如果存在就执行
typeof(this.tmpConfig.complete) === 'function' && this.tmpConfig.complete()
}, this.tmpConfig.duration)
}
},
// 关闭notify
close() {
this.clearTimer()
},
clearTimer() {
this.open = false
// 清除定时器
clearTimeout(this.timer)
this.timer = null
}
},
beforeDestroy() {
this.clearTimer()
}
}
</script>
<style lang="scss" scoped>
@import '@/uni_modules/uv-ui-tools/libs/css/components.scss';
@import '@/uni_modules/uv-ui-tools/libs/css/color.scss';
$uv-notify-padding: 8px 10px !default;
$uv-notify-text-font-size: 15px !default;
$uv-notify-primary-bgColor: $uv-primary !default;
$uv-notify-success-bgColor: $uv-success !default;
$uv-notify-error-bgColor: $uv-error !default;
$uv-notify-warning-bgColor: $uv-warning !default;
.uv-notify {
padding: $uv-notify-padding;
&__warpper {
@include flex;
align-items: center;
text-align: center;
justify-content: center;
&__text {
font-size: $uv-notify-text-font-size;
text-align: center;
}
}
&--primary {
background-color: $uv-notify-primary-bgColor;
}
&--success {
background-color: $uv-notify-success-bgColor;
}
&--error {
background-color: $uv-notify-error-bgColor;
}
&--warning {
background-color: $uv-notify-warning-bgColor;
}
}
</style>

View File

@ -0,0 +1,90 @@
{
"id": "uv-notify",
"displayName": "uv-notify 消息提示 全面兼容小程序、nvue、vue2、vue3等多端",
"version": "1.0.2",
"description": "uv-notify 该组件一般用于页面顶部向下滑出一个提示,后自动收起的场景。",
"keywords": [
"uv-notify",
"uvui",
"uv-ui",
"notify",
"消息提示"
],
"repository": "",
"engines": {
"HBuilderX": "^3.1.0"
},
"dcloudext": {
"type": "component-vue",
"sale": {
"regular": {
"price": "0.00"
},
"sourcecode": {
"price": "0.00"
}
},
"contact": {
"qq": ""
},
"declaration": {
"ads": "无",
"data": "插件不采集任何数据",
"permissions": "无"
},
"npmurl": ""
},
"uni_modules": {
"dependencies": [
"uv-ui-tools",
"uv-status-bar",
"uv-overlay",
"uv-transition"
],
"encrypt": [],
"platforms": {
"cloud": {
"tcb": "y",
"aliyun": "y"
},
"client": {
"Vue": {
"vue2": "y",
"vue3": "y"
},
"App": {
"app-vue": "y",
"app-nvue": "y"
},
"H5-mobile": {
"Safari": "y",
"Android Browser": "y",
"微信浏览器(Android)": "y",
"QQ浏览器(Android)": "y"
},
"H5-pc": {
"Chrome": "y",
"IE": "y",
"Edge": "y",
"Firefox": "y",
"Safari": "y"
},
"小程序": {
"微信": "y",
"阿里": "y",
"百度": "y",
"字节跳动": "y",
"QQ": "y",
"钉钉": "u",
"快手": "u",
"飞书": "u",
"京东": "u"
},
"快应用": {
"华为": "u",
"联盟": "u"
}
}
}
}
}

View File

@ -0,0 +1,11 @@
## Notify 消息提示
> **组件名uv-notify**
该组件一般用于页面顶部向下滑出一个提示,后自动收起的场景。
### <a href="https://www.uvui.cn/components/notify.html" target="_blank">查看文档</a>
### [完整示例项目下载 | 关注更多组件](https://ext.dcloud.net.cn/plugin?name=uv-ui)
#### 如使用过程中有任何问题或者您对uv-ui有一些好的建议欢迎加入 uv-ui 交流群:<a href="https://ext.dcloud.net.cn/plugin?id=12287" target="_blank">uv-ui</a>、<a href="https://www.uvui.cn/components/addQQGroup.html" target="_blank">官方QQ群</a>