mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[new feature] support addGlobalClass (#449)
This commit is contained in:
parent
e2d428d8cd
commit
db76bdeef6
@ -1,3 +1,3 @@
|
||||
.content {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
|
@ -1,6 +1,10 @@
|
||||
const BADGE_PATH = '../badge/index';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
relations: {
|
||||
|
@ -1,6 +1,10 @@
|
||||
const BADGE_GROUP_PATH = '../badge-group/index';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
relations: {
|
||||
|
@ -6,6 +6,10 @@ const observer = function() {
|
||||
};
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class', 'loading-class'],
|
||||
|
||||
behaviors: [nativeBehaviors],
|
||||
|
@ -1,6 +1,7 @@
|
||||
Component({
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: [
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -9,7 +9,8 @@ Component({
|
||||
],
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
|
@ -1,6 +1,10 @@
|
||||
const ROW_PATH = '../row/index';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
relations: {
|
||||
|
@ -6,7 +6,8 @@ Component({
|
||||
],
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -5,7 +5,8 @@ Component({
|
||||
],
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
|
@ -3,6 +3,10 @@ const FONT_COLOR = '#f60';
|
||||
const BG_COLOR = '#fff7cc';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,4 +1,10 @@
|
||||
import Notify from './notify';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
text: String,
|
||||
color: {
|
||||
@ -40,28 +46,4 @@ Component({
|
||||
}
|
||||
});
|
||||
|
||||
const defaultOptions = {
|
||||
selector: '#van-notify',
|
||||
duration: 3000
|
||||
};
|
||||
|
||||
export default function Notify(options = {}) {
|
||||
const pages = getCurrentPages();
|
||||
const ctx = pages[pages.length - 1];
|
||||
|
||||
options = Object.assign({}, defaultOptions, parseParam(options));
|
||||
|
||||
const el = ctx.selectComponent(options.selector);
|
||||
delete options.selector;
|
||||
|
||||
if (el) {
|
||||
el.setData({
|
||||
...options
|
||||
});
|
||||
el.show();
|
||||
}
|
||||
}
|
||||
|
||||
function parseParam(params = '') {
|
||||
return typeof params === 'object' ? params : { text: params };
|
||||
}
|
||||
export default Notify;
|
||||
|
25
packages/notify/notify.js
Normal file
25
packages/notify/notify.js
Normal file
@ -0,0 +1,25 @@
|
||||
const defaultOptions = {
|
||||
selector: '#van-notify',
|
||||
duration: 3000
|
||||
};
|
||||
|
||||
export default function Notify(options = {}) {
|
||||
const pages = getCurrentPages();
|
||||
const ctx = pages[pages.length - 1];
|
||||
|
||||
options = Object.assign({}, defaultOptions, parseParam(options));
|
||||
|
||||
const el = ctx.selectComponent(options.selector);
|
||||
delete options.selector;
|
||||
|
||||
if (el) {
|
||||
el.setData({
|
||||
...options
|
||||
});
|
||||
el.show();
|
||||
}
|
||||
}
|
||||
|
||||
function parseParam(params = '') {
|
||||
return typeof params === 'object' ? params : { text: params };
|
||||
}
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
|
@ -5,7 +5,8 @@ Component({
|
||||
],
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: [
|
||||
'custom-class',
|
||||
'overlay-class'
|
||||
|
@ -1,6 +1,10 @@
|
||||
const COL_PATH = '../col/index';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
relations: {
|
||||
|
@ -2,7 +2,8 @@ Component({
|
||||
externalClasses: ['custom-class', 'cancel-class'],
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
|
@ -3,6 +3,10 @@
|
||||
const MAX = 2147483647;
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: [
|
||||
'custom-class',
|
||||
'input-class',
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: [
|
||||
'custom-class'
|
||||
],
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class', 'node-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,8 +1,6 @@
|
||||
const TABBAR_PATH = '../tabbar/index';
|
||||
|
||||
Component({
|
||||
name: 'tabbar-item',
|
||||
|
||||
properties: {
|
||||
info: null,
|
||||
icon: String,
|
||||
@ -10,7 +8,8 @@ Component({
|
||||
},
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
multipleSlots: true,
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
relations: {
|
||||
|
@ -1,6 +1,10 @@
|
||||
const ITEM_PATH = '../tabbar-item/index';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,6 +1,10 @@
|
||||
import Toast from './toast';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
show: Boolean,
|
||||
mask: Boolean,
|
||||
|
@ -1,4 +1,8 @@
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
externalClasses: ['custom-class'],
|
||||
|
||||
properties: {
|
||||
|
@ -1,6 +1,10 @@
|
||||
const ITEM_HEIGHT = 44;
|
||||
|
||||
Component({
|
||||
options: {
|
||||
addGlobalClass: true
|
||||
},
|
||||
|
||||
properties: {
|
||||
items: {
|
||||
type: Array,
|
||||
|
Loading…
x
Reference in New Issue
Block a user