mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Toast: ssr error (#1910)
This commit is contained in:
parent
bcfa4ed3ac
commit
6858f4e2ea
@ -14,9 +14,9 @@ module.exports = {
|
|||||||
'!**/vant-css/**',
|
'!**/vant-css/**',
|
||||||
'!**/demo/**',
|
'!**/demo/**',
|
||||||
'!**/locale/lang/**',
|
'!**/locale/lang/**',
|
||||||
'!**/waterfall/**',
|
|
||||||
'!**/sku/**',
|
'!**/sku/**',
|
||||||
'!**/lazyload/**'
|
'!**/waterfall/**',
|
||||||
|
'!**/icon/config/**'
|
||||||
],
|
],
|
||||||
collectCoverage: true,
|
collectCoverage: true,
|
||||||
coverageReporters: ['html', 'lcov', 'text-summary'],
|
coverageReporters: ['html', 'lcov', 'text-summary'],
|
||||||
|
@ -69,7 +69,7 @@
|
|||||||
</van-button>
|
</van-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<popup v-model="showAreaPopup" position="bottom" :lazy-render="false" :get-container="getAreaContainer">
|
<popup v-model="showAreaPopup" position="bottom" :lazy-render="false" get-container="body">
|
||||||
<van-area
|
<van-area
|
||||||
ref="area"
|
ref="area"
|
||||||
:loading="!areaListLoaded"
|
:loading="!areaListLoaded"
|
||||||
@ -305,10 +305,6 @@ export default create({
|
|||||||
|
|
||||||
setAddressDetail(value) {
|
setAddressDetail(value) {
|
||||||
this.data.addressDetail = value;
|
this.data.addressDetail = value;
|
||||||
},
|
|
||||||
|
|
||||||
getAreaContainer() {
|
|
||||||
return document.body;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -35,6 +35,7 @@ const createComponent = () => {
|
|||||||
data,
|
data,
|
||||||
field,
|
field,
|
||||||
button,
|
button,
|
||||||
|
wrapper,
|
||||||
errorInfo
|
errorInfo
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -225,3 +226,15 @@ test('delete address', async() => {
|
|||||||
expect(wrapper.emitted('delete')).toBeTruthy();
|
expect(wrapper.emitted('delete')).toBeTruthy();
|
||||||
expect(wrapper.emitted('cancel-delete')).toBeTruthy();
|
expect(wrapper.emitted('cancel-delete')).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('setAddressDetail method', () => {
|
||||||
|
const { vm, data } = createComponent();
|
||||||
|
vm.setAddressDetail('test');
|
||||||
|
expect(data.addressDetail).toEqual('test');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('select area', () => {
|
||||||
|
const { wrapper, data } = createComponent();
|
||||||
|
wrapper.find('.van-picker__confirm').trigger('click');
|
||||||
|
expect(data.areaCode).toEqual('110101');
|
||||||
|
});
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import VanDialog from './Dialog';
|
import VanDialog from './Dialog';
|
||||||
|
import { isServer } from '../utils';
|
||||||
|
|
||||||
let instance;
|
let instance;
|
||||||
|
|
||||||
@ -16,6 +17,11 @@ const initInstance = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const Dialog = options => {
|
const Dialog = options => {
|
||||||
|
/* istanbul ignore if */
|
||||||
|
if (isServer) {
|
||||||
|
return Promise.resolve();
|
||||||
|
}
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
if (!instance) {
|
if (!instance) {
|
||||||
initInstance();
|
initInstance();
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import VueImagePreview from './ImagePreview';
|
import VueImagePreview from './ImagePreview';
|
||||||
|
import { isServer } from '../utils';
|
||||||
|
|
||||||
let instance;
|
let instance;
|
||||||
|
|
||||||
@ -11,6 +12,11 @@ const initInstance = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ImagePreview = (images, startPosition) => {
|
const ImagePreview = (images, startPosition) => {
|
||||||
|
/* istanbul ignore if */
|
||||||
|
if (isServer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!instance) {
|
if (!instance) {
|
||||||
initInstance();
|
initInstance();
|
||||||
}
|
}
|
||||||
|
@ -136,6 +136,11 @@ export default create({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handler(action) {
|
handler(action) {
|
||||||
|
/* istanbul ignore if */
|
||||||
|
if (this.$isServer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (action !== this.handlerStatus && this.hideOnClickOutside) {
|
if (action !== this.handlerStatus && this.hideOnClickOutside) {
|
||||||
this.handlerStatus = action;
|
this.handlerStatus = action;
|
||||||
document.body[(action ? 'add' : 'remove') + 'EventListener']('touchstart', this.onBlur);
|
document.body[(action ? 'add' : 'remove') + 'EventListener']('touchstart', this.onBlur);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import VueToast from './Toast';
|
import VueToast from './Toast';
|
||||||
import { isObj } from '../utils';
|
import { isObj, isServer } from '../utils';
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
@ -37,6 +37,11 @@ function transformer(options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Toast(options = {}) {
|
function Toast(options = {}) {
|
||||||
|
/* istanbul ignore if */
|
||||||
|
if (isServer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const toast = createInstance();
|
const toast = createInstance();
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user