mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Dialog): add allow-html prop (#6568)
This commit is contained in:
parent
95313ef459
commit
9b0f23e2da
@ -37,6 +37,10 @@ export default createComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
allowHtml: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
@ -124,6 +128,31 @@ export default createComponent({
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
genContent(hasTitle, messageSlot) {
|
||||||
|
if (messageSlot) {
|
||||||
|
return <div class={bem('content')}>{messageSlot}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { message, messageAlign } = this;
|
||||||
|
if (message) {
|
||||||
|
const data = {
|
||||||
|
class: bem('message', {
|
||||||
|
'has-title': hasTitle,
|
||||||
|
[messageAlign]: messageAlign,
|
||||||
|
}),
|
||||||
|
domProps: {
|
||||||
|
[this.allowHtml ? 'innerHTML' : 'textContent']: message,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div class={bem('content')}>
|
||||||
|
<div {...data} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
@ -131,30 +160,15 @@ export default createComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { message, messageAlign } = this;
|
const { message } = this;
|
||||||
const messageSlot = this.slots();
|
const messageSlot = this.slots();
|
||||||
const title = this.slots('title') || this.title;
|
const title = this.slots('title') || this.title;
|
||||||
|
|
||||||
const Title = title && (
|
const Title = title && (
|
||||||
<div class={bem('header', { isolated: !message && !messageSlot })}>
|
<div class={bem('header', { isolated: !message && !messageSlot })}>
|
||||||
{title}
|
{title}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
const Content = (messageSlot || message) && (
|
|
||||||
<div class={bem('content')}>
|
|
||||||
{messageSlot || (
|
|
||||||
<div
|
|
||||||
domPropsInnerHTML={message}
|
|
||||||
class={bem('message', {
|
|
||||||
'has-title': title,
|
|
||||||
[messageAlign]: messageAlign,
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<transition
|
<transition
|
||||||
name={this.transition}
|
name={this.transition}
|
||||||
@ -169,7 +183,7 @@ export default createComponent({
|
|||||||
style={{ width: addUnit(this.width) }}
|
style={{ width: addUnit(this.width) }}
|
||||||
>
|
>
|
||||||
{Title}
|
{Title}
|
||||||
{Content}
|
{this.genContent(title, messageSlot)}
|
||||||
{this.genButtons()}
|
{this.genButtons()}
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
|
@ -51,6 +51,7 @@ Dialog.defaultOptions = {
|
|||||||
message: '',
|
message: '',
|
||||||
overlay: true,
|
overlay: true,
|
||||||
className: '',
|
className: '',
|
||||||
|
allowHtml: true,
|
||||||
lockScroll: true,
|
lockScroll: true,
|
||||||
transition: 'van-dialog-bounce',
|
transition: 'van-dialog-bounce',
|
||||||
beforeClose: null,
|
beforeClose: null,
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`allow-html prop 1`] = `<div class="van-dialog__message"><span>text</span></div>`;
|
||||||
|
|
||||||
exports[`button color 1`] = `
|
exports[`button color 1`] = `
|
||||||
<div role="dialog" class="van-dialog" name="van-dialog-bounce">
|
<div role="dialog" class="van-dialog" name="van-dialog-bounce">
|
||||||
<div class="van-hairline--top van-dialog__footer van-dialog__footer--buttons"><button class="van-button van-button--default van-button--large van-dialog__cancel" style="color: white;">
|
<div class="van-hairline--top van-dialog__footer van-dialog__footer--buttons"><button class="van-button van-button--default van-button--large van-dialog__cancel" style="color: white;">
|
||||||
|
@ -127,6 +127,17 @@ test('title slot', () => {
|
|||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('allow-html prop', () => {
|
||||||
|
const wrapper = mount(DialogComponent, {
|
||||||
|
propsData: {
|
||||||
|
value: true,
|
||||||
|
message: '<span>text</span>',
|
||||||
|
allowHtml: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(wrapper.find('.van-dialog__message')).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
test('open & close event', () => {
|
test('open & close event', () => {
|
||||||
const wrapper = mount(DialogComponent);
|
const wrapper = mount(DialogComponent);
|
||||||
wrapper.vm.value = true;
|
wrapper.vm.value = true;
|
||||||
|
1
types/dialog.d.ts
vendored
1
types/dialog.d.ts
vendored
@ -9,6 +9,7 @@ export type DialogOptions = {
|
|||||||
message?: string;
|
message?: string;
|
||||||
overlay?: boolean;
|
overlay?: boolean;
|
||||||
className?: any;
|
className?: any;
|
||||||
|
allowHtml?: boolean;
|
||||||
lockScroll?: boolean;
|
lockScroll?: boolean;
|
||||||
transition?: string;
|
transition?: string;
|
||||||
messageAlign?: string;
|
messageAlign?: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user