-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
add support for custom regions, by detecting what is used in index.html #3518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2e9b0ae
add support for custom regions, by detecting what is used in index.html
sdetweil 76ba806
Merge branch 'develop' into customregions
sdetweil a7d05ca
add fix for main.js having hard coded positions, start on testcases
sdetweil c9cfb9b
Merge remote-tracking branch 'refs/remotes/origin/customregions' into…
sdetweil e579df5
fix changelog
sdetweil 7fe1f50
add testcases for custom module regions
sdetweil 4afdd25
fix race condition in testcase
sdetweil d94d84b
Merge branch 'develop' into customregions
sdetweil 8ce819e
fix CHANGELOG for interim PR merges
sdetweil 0e44d57
remove property no longer used
sdetweil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,23 @@ | ||
| let config = { | ||
| modules: | ||
| // Using exotic content. This is why don't accept go to JSON configuration file | ||
|
sdetweil marked this conversation as resolved.
|
||
| (() => { | ||
| let positions = ["row3_left", "top3_left1"]; | ||
| let modules = Array(); | ||
| for (let idx in positions) { | ||
| modules.push({ | ||
| module: "helloworld", | ||
| position: positions[idx], | ||
| config: { | ||
| text: `Text in ${positions[idx]}` | ||
| } | ||
| }); | ||
| } | ||
| return modules; | ||
| })() | ||
| }; | ||
|
|
||
| /*************** DO NOT EDIT THE LINE BELOW ***************/ | ||
| if (typeof module !== "undefined") { | ||
| module.exports = config; | ||
| } | ||
This file contains hidden or 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,30 @@ | ||
| const helpers = require("./helpers/global-setup"); | ||
|
|
||
| describe("Custom Position of modules", () => { | ||
| beforeAll(async () => { | ||
| await helpers.fixupIndex(); | ||
| await helpers.startApplication("tests/configs/customregions.js"); | ||
| await helpers.getDocument(); | ||
| }); | ||
| afterAll(async () => { | ||
| await helpers.stopApplication(); | ||
| await helpers.restoreIndex(); | ||
| }); | ||
|
|
||
| const positions = ["row3_left", "top3_left1"]; | ||
| let i = 0; | ||
| const className1 = positions[i].replace("_", "."); | ||
| let message1 = positions[i]; | ||
| it(`should show text in ${message1}`, async () => { | ||
| const elem = await helpers.waitForElement(`.${className1}`); | ||
| expect(elem).not.toBeNull(); | ||
| expect(elem.textContent).toContain(`Text in ${message1}`); | ||
| }); | ||
| i = 1; | ||
| const className2 = positions[i].replace("_", "."); | ||
| let message2 = positions[i]; | ||
| it(`should NOT show text in ${message2}`, async () => { | ||
| const elem = await helpers.waitForElement(`.${className2}`, "", 1500); | ||
| expect(elem).toBeNull(); | ||
| }, 1510); | ||
| }); |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.