Skip to content

Commit

Permalink
fix: passing react elements via .mixin (#153)
Browse files Browse the repository at this point in the history
* test: Demonstrate issue #152

* pass mixinParams to _main

Co-authored-by: Limon Monte <limon.monte@gmail.com>
  • Loading branch information
zenflow and limonte committed Apr 20, 2021
1 parent 146e0ff commit c2e4d76
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 35 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default function withReactContent (ParentSwal) {
}
}

_main (params) {
params = Object.assign({}, params)
_main (params, mixinParams) {
params = Object.assign({}, mixinParams, params)

mounts.forEach(({ key, getter }) => {
if (React.isValidElement(params[key])) {
Expand Down Expand Up @@ -50,7 +50,7 @@ export default function withReactContent (ParentSwal) {
}
})

return super._main(params)
return super._main(params, mixinParams)
}

update () {
Expand Down
75 changes: 43 additions & 32 deletions test/integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,50 @@ describe('integration', () => {
// jest doesn't implement `window.scrollTo` so we need to mock it
window.scrollTo = () => {} // eslint-disable-line @typescript-eslint/no-empty-function
})
it('renders React elements for each supported option', async () => {
await cleanSwalState()
const MySwal = withReactContent(SwalWithoutAnimation)
await MySwal.fire({
title: <span>title</span>,
html: <span>html</span>,
icon: 'success',
iconHtml: <span>@</span>,
confirmButtonText: <span>confirmButtonText</span>,
denyButtonText: <span>denyButtonText</span>,
cancelButtonText: <span>cancelButtonText</span>,
closeButtonHtml: <span>closeButtonHtml</span>,
footer: <span>footer</span>,
didOpen: () => {
expect(MySwal.getTitle().innerHTML).toEqual('<span>title</span>')
expect(MySwal.getHtmlContainer().innerHTML).toEqual('<span>html</span>')
expect(MySwal.getConfirmButton().innerHTML).toEqual(
'<span>confirmButtonText</span>',
)
expect(MySwal.getDenyButton().innerHTML).toEqual(
'<span>denyButtonText</span>',
)
expect(MySwal.getCancelButton().innerHTML).toEqual(
'<span>cancelButtonText</span>',
)
expect(MySwal.getIcon().innerHTML).toEqual(
'<div class="swal2-icon-content"><span>@</span></div>',
)
expect(MySwal.getFooter().innerHTML).toEqual('<span>footer</span>')
expect(MySwal.getCloseButton().innerHTML).toEqual('<span>closeButtonHtml</span>')
MySwal.clickConfirm()
},
describe('rendering React elements for each supported option', () => {
beforeEach(async () => cleanSwalState())
it('works via .fire', async () => {
const MySwal = withReactContent(SwalWithoutAnimation)
await MySwal.fire({
...getReactOptions(),
didOpen: () => {
checkReactOptions(MySwal)
MySwal.clickConfirm()
},
})
})
it('works via .mixin', async () => {
const MySwal = withReactContent(SwalWithoutAnimation)
const MyConfiguredSwal = MySwal.mixin({ ...getReactOptions() })
await MyConfiguredSwal.fire({
didOpen: () => {
checkReactOptions(MySwal)
MySwal.clickConfirm()
},
})
})
function getReactOptions () {
return {
title: <span>title</span>,
html: <span>html</span>,
iconHtml: <span>@</span>,
confirmButtonText: <span>confirmButtonText</span>,
denyButtonText: <span>denyButtonText</span>,
cancelButtonText: <span>cancelButtonText</span>,
closeButtonHtml: <span>closeButtonHtml</span>,
footer: <span>footer</span>,
}
}
function checkReactOptions (MySwal) {
expect(MySwal.getTitle().innerHTML).toEqual('<span>title</span>')
expect(MySwal.getHtmlContainer().innerHTML).toEqual('<span>html</span>')
expect(MySwal.getConfirmButton().innerHTML).toEqual('<span>confirmButtonText</span>')
expect(MySwal.getDenyButton().innerHTML).toEqual('<span>denyButtonText</span>')
expect(MySwal.getCancelButton().innerHTML).toEqual('<span>cancelButtonText</span>')
expect(MySwal.getIcon().innerHTML).toEqual('<div class="swal2-icon-content"><span>@</span></div>')
expect(MySwal.getFooter().innerHTML).toEqual('<span>footer</span>')
expect(MySwal.getCloseButton().innerHTML).toEqual('<span>closeButtonHtml</span>')
}
})
it('can mix React and non-React params', async () => {
await cleanSwalState()
Expand Down

0 comments on commit c2e4d76

Please sign in to comment.