-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] owl: add basic support for sub roots
In this commit, we extend the owl App class to support multiple sub roots. This is useful for situations where we want to mount sub components in non-managed DOM. This is exactly what the Knowledge app is doing, with mounting views in an html editor. Currently, this requires some difficult and fragile hacks, and still, the result is that it is very easy to mix components from the main App and a SubApp. But Knowledge does not actually care about creating a sub app. It only needs the possibility to mount sub components in dynamic places. closes #1640
- Loading branch information
Showing
3 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`subroot can mount subroot 1`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>main app</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; | ||
exports[`subroot can mount subroot 2`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>sub root</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; | ||
exports[`subroot can mount subroot inside own dom 1`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>main app</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; | ||
exports[`subroot can mount subroot inside own dom 2`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>sub root</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; | ||
exports[`subroot env is the same in sub root 1`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>main app</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; | ||
exports[`subroot env is the same in sub root 2`] = ` | ||
"function anonymous(app, bdom, helpers | ||
) { | ||
let { text, createBlock, list, multi, html, toggler, comment } = bdom; | ||
let block1 = createBlock(\`<div>sub root</div>\`); | ||
return function template(ctx, node, key = \\"\\") { | ||
return block1(); | ||
} | ||
}" | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import { App, Component, xml } from "../../src"; | ||
import { status } from "../../src/runtime/status"; | ||
import { | ||
makeTestFixture, | ||
snapshotEverything, | ||
} from "../helpers"; | ||
|
||
let fixture: HTMLElement; | ||
|
||
snapshotEverything(); | ||
|
||
beforeEach(() => { | ||
fixture = makeTestFixture(); | ||
}); | ||
|
||
class SomeComponent extends Component { | ||
static template = xml`<div>main app</div>`; | ||
} | ||
|
||
class SubComponent extends Component { | ||
static template = xml`<div>sub root</div>`; | ||
} | ||
|
||
describe("subroot", () => { | ||
test("can mount subroot", async () => { | ||
const app = new App(SomeComponent); | ||
const comp = await app.mount(fixture); | ||
expect(fixture.innerHTML).toBe("<div>main app</div>"); | ||
const subcomp = await app.mountSubRoot(SubComponent, null, fixture); | ||
expect(fixture.innerHTML).toBe("<div>main app</div><div>sub root</div>"); | ||
|
||
app.destroy(); | ||
expect(fixture.innerHTML).toBe(""); | ||
expect(status(comp)).toBe("destroyed"); | ||
expect(status(subcomp)).toBe("destroyed"); | ||
}); | ||
|
||
test("can mount subroot inside own dom", async () => { | ||
const app = new App(SomeComponent); | ||
const comp = await app.mount(fixture); | ||
expect(fixture.innerHTML).toBe("<div>main app</div>"); | ||
const subcomp = await app.mountSubRoot(SubComponent, null, fixture.querySelector("div")!); | ||
expect(fixture.innerHTML).toBe("<div>main app<div>sub root</div></div>"); | ||
|
||
app.destroy(); | ||
expect(fixture.innerHTML).toBe(""); | ||
expect(status(comp)).toBe("destroyed"); | ||
expect(status(subcomp)).toBe("destroyed"); | ||
}); | ||
|
||
test("env is the same in sub root", async () => { | ||
let env, subenv; | ||
class SC extends SomeComponent { | ||
setup() { | ||
env = this.env; | ||
} | ||
} | ||
class Sub extends SubComponent { | ||
setup() { | ||
subenv = this.env; | ||
} | ||
} | ||
|
||
const app = new App(SC); | ||
await app.mount(fixture); | ||
await app.mountSubRoot(Sub, null, fixture); | ||
|
||
expect(env).toBeDefined(); | ||
expect(subenv).toBeDefined(); | ||
expect(env).toBe(subenv); | ||
}); | ||
}); |