1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Make sure dynamicIds are added when using function as importer (#5308)

This commit is contained in:
Tim Neutkens 2018-09-27 16:40:54 +02:00 committed by GitHub
parent f0f8229009
commit 1c328a8450
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -62,15 +62,16 @@ export default function ({ types: t, template }) {
return
}
if (args[0].isCallExpression()) {
if (args[0].isObjectExpression()) {
options = args[0]
} else {
if (!args[1]) {
callExpression.pushContainer('arguments', t.objectExpression([]))
}
// This is needed as the code is modified above
args = callExpression.get('arguments')
loader = args[0]
options = args[1]
} else {
options = args[0]
}
if (!options.isObjectExpression()) return

View file

@ -12,11 +12,15 @@ export default (context, render) => {
describe('default behavior', () => {
it('should render dynamic import components', async () => {
const $ = await get$('/dynamic/ssr')
// Make sure the client side knows it has to wait for the bundle
expect($('body').html()).toContain('"dynamicIds":["./components/hello1.js"]')
expect($('body').text()).toMatch(/Hello World 1/)
})
it('should render dynamic import components using a function as first parameter', async () => {
const $ = await get$('/dynamic/function')
// Make sure the client side knows it has to wait for the bundle
expect($('body').html()).toContain('"dynamicIds":["./components/hello1.js"]')
expect($('body').text()).toMatch(/Hello World 1/)
})
@ -52,6 +56,7 @@ export default (context, render) => {
describe('ssr:false option', () => {
it('Should render loading on the server side', async () => {
const $ = await get$('/dynamic/no-ssr')
expect($('body').html()).not.toContain('"dynamicIds"')
expect($('p').text()).toBe('loading...')
})