-
Notifications
You must be signed in to change notification settings - Fork 4
Make AppLayout demos compatible with addons demo #125
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 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0f62728
chore(demo): rename route to applayout-full
mlopezFC 59bbdf1
refactor(demo): remove unused annotation
mlopezFC 88a3830
refactor(demo): rename InternalView to SampleInternalView
mlopezFC e4cc32d
refactor(demo): change DemoView location
mlopezFC 5ab63bf
refactor(demo): rename ApplayoutDemoView to AppLayoutDemoView
mlopezFC a7da267
refactor(demo): rename AbstractLayoutDemo to CustomAppLayout
mlopezFC e501068
refactor(demo): rename AbstractLayoutView to SampleView
mlopezFC 387d90c
feat(demo): add AppLayout Full Demo
mlopezFC ac85fca
feat(demo): add extending layout demo
mlopezFC d6afab3
build(demo): add commons-demo dependency
mlopezFC 1e848db
fix(demo): fix @GitHubLink value
mlopezFC 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
24 changes: 24 additions & 0 deletions
24
src/test/java/com/flowingcode/vaadin/addons/applayout/AppLayoutDemo.java
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,24 @@ | ||
package com.flowingcode.vaadin.addons.applayout; | ||
|
||
import com.flowingcode.vaadin.addons.demo.DemoSource; | ||
import com.vaadin.flow.component.html.Div; | ||
import com.vaadin.flow.component.html.IFrame; | ||
import com.vaadin.flow.router.PageTitle; | ||
import com.vaadin.flow.router.Route; | ||
|
||
@DemoSource("/src/test/java/com/flowingcode/addons/applayout/ApplayoutDemoView.java") | ||
@DemoSource("/frontend/styles/app-layout/demo-styles.css") | ||
@PageTitle("AppLayout Full Demo") | ||
@SuppressWarnings("serial") | ||
@Route(value = "applayout/applayout-demo", layout = AppLayoutDemoView.class) | ||
public class AppLayoutDemo extends Div { | ||
|
||
public AppLayoutDemo() { | ||
setClassName("wrap-iframe"); | ||
IFrame iframe = new IFrame("/applayout-full"); | ||
iframe.setClassName("frame"); | ||
iframe.setSizeFull(); | ||
iframe.getElement().setAttribute("frameBorder", "0"); | ||
add(iframe); | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/test/java/com/flowingcode/vaadin/addons/applayout/AppLayoutDemoView.java
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,40 @@ | ||
/*- | ||
* #%L | ||
* Template Add-on | ||
* %% | ||
* Copyright (C) 2023 Flowing Code | ||
* %% | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* #L% | ||
*/ | ||
package com.flowingcode.vaadin.addons.applayout; | ||
|
||
import com.flowingcode.vaadin.addons.DemoLayout; | ||
import com.flowingcode.vaadin.addons.GithubLink; | ||
import com.flowingcode.vaadin.addons.demo.TabbedDemo; | ||
import com.vaadin.flow.router.ParentLayout; | ||
import com.vaadin.flow.router.Route; | ||
|
||
@SuppressWarnings("serial") | ||
@ParentLayout(DemoLayout.class) | ||
@Route("applayout") | ||
@GithubLink("https://github.com/FlowingCode/ExtendedLoginAddon") | ||
public class AppLayoutDemoView extends TabbedDemo { | ||
mlopezFC marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
public AppLayoutDemoView() { | ||
addDemo(AppLayoutDemo.class); | ||
addDemo(ExtendingAppLayoutDemo.class); | ||
|
||
setSizeFull(); | ||
} | ||
} |
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
24 changes: 24 additions & 0 deletions
24
src/test/java/com/flowingcode/vaadin/addons/applayout/ExtendingAppLayoutDemo.java
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,24 @@ | ||
package com.flowingcode.vaadin.addons.applayout; | ||
|
||
import com.flowingcode.vaadin.addons.demo.DemoSource; | ||
import com.vaadin.flow.component.html.Div; | ||
import com.vaadin.flow.component.html.IFrame; | ||
import com.vaadin.flow.router.PageTitle; | ||
import com.vaadin.flow.router.Route; | ||
|
||
@DemoSource("/src/test/java/com/flowingcode/addons/applayout/CustomAppLayout.java") | ||
@DemoSource("/src/test/java/com/flowingcode/addons/applayout/SampleView.java") | ||
@PageTitle("Extending AppLayout Demo") | ||
@SuppressWarnings("serial") | ||
@Route(value = "applayout/extending-applayout-demo", layout = AppLayoutDemoView.class) | ||
public class ExtendingAppLayoutDemo extends Div { | ||
|
||
public ExtendingAppLayoutDemo() { | ||
setClassName("wrap-iframe"); | ||
IFrame iframe = new IFrame("/view"); | ||
iframe.setClassName("frame"); | ||
iframe.setSizeFull(); | ||
iframe.getElement().setAttribute("frameBorder", "0"); | ||
add(iframe); | ||
} | ||
} |
Oops, something went wrong.
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.