-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTabbedDemo.java
More file actions
405 lines (349 loc) · 13.6 KB
/
TabbedDemo.java
File metadata and controls
405 lines (349 loc) · 13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*-
* #%L
* Commons Demo
* %%
* Copyright (C) 2020 - 2025 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.demo;
import com.flowingcode.vaadin.addons.GithubBranch;
import com.vaadin.flow.component.AttachEvent;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.ComponentEventListener;
import com.vaadin.flow.component.ComponentUtil;
import com.vaadin.flow.component.HasElement;
import com.vaadin.flow.component.button.Button;
import com.vaadin.flow.component.button.ButtonVariant;
import com.vaadin.flow.component.checkbox.Checkbox;
import com.vaadin.flow.component.dependency.StyleSheet;
import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.component.splitlayout.SplitLayout.Orientation;
import com.vaadin.flow.dom.Element;
import com.vaadin.flow.router.PageTitle;
import com.vaadin.flow.router.Route;
import com.vaadin.flow.router.RouterLayout;
import com.vaadin.flow.server.VaadinSession;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Stream;
import lombok.NonNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@StyleSheet("context://frontend/styles/commons-demo/shared-styles.css")
@SuppressWarnings("serial")
public class TabbedDemo extends VerticalLayout implements RouterLayout {
private static final Logger logger = LoggerFactory.getLogger(TabbedDemo.class);
private static final int MOBILE_DEVICE_BREAKPOINT_WIDTH = 768;
private boolean autoVisibility;
private EnhancedRouteTabs tabs;
private HorizontalLayout footer;
private SplitLayoutDemo currentLayout;
private Checkbox orientationCB;
private Checkbox codeCB;
private Checkbox codePositionCB;
private Checkbox themeCB;
private Orientation splitOrientation;
private Button helperButton;
private DemoHelperViewer demoHelperViewer;
public TabbedDemo() {
demoHelperViewer = new DialogDemoHelperViewer();
tabs = new EnhancedRouteTabs();
// Footer
orientationCB = new Checkbox("Toggle Orientation");
orientationCB.setValue(true);
orientationCB.addClassName("smallcheckbox");
orientationCB.addValueChangeListener(ev -> {
if (ev.isFromClient()) {
toggleSplitterOrientation();
}
});
codeCB = new Checkbox("Show Source Code");
codeCB.setValue(true);
codeCB.addClassName("smallcheckbox");
codeCB.addValueChangeListener(ev -> updateSplitterPosition());
codePositionCB = new Checkbox("Toggle Code Position");
codePositionCB.setValue(true);
codePositionCB.addClassName("smallcheckbox");
codePositionCB.addValueChangeListener(ev -> toggleSourcePosition());
themeCB = new Checkbox("Dark Theme");
themeCB.setValue(false);
themeCB.addClassName("smallcheckbox");
themeCB.addValueChangeListener(cb -> {
boolean useDarkTheme = themeCB.getValue();
String theme = useDarkTheme ? "dark" : "";
applyThemeAttribute(getElement(), theme);
});
footer = new HorizontalLayout();
footer.setWidthFull();
footer.setJustifyContentMode(JustifyContentMode.END);
footer.add(codeCB, codePositionCB, orientationCB, themeCB);
footer.setClassName("demo-footer");
Package pkg = this.getClass().getPackage();
String title = pkg.getImplementationTitle();
String version = pkg.getImplementationVersion();
if (title != null && version != null) {
Div footerLeft = new Div();
footer.setFlexGrow(1, footerLeft);
footer.addComponentAsFirst(footerLeft);
footerLeft.add(new Span(title + " " + version));
}
this.add(tabs);
this.add(new Div());
this.add(footer);
setSizeFull();
}
/**
* Add a tab with a demo component.
*
* @param clazz the class of routed demo view component
* @param label the demo name (tab label)
*/
public void addDemo(Class<? extends Component> clazz, String label) {
if (!clazz.isAnnotationPresent(Route.class)) {
throw new IllegalArgumentException(clazz + " must be annotated as Route");
}
tabs.add(label, clazz);
updateVisibility();
}
private void updateVisibility() {
if (autoVisibility) {
tabs.setVisible(tabs.getContent().getTabCount() > 1);
}
}
/**
* Sets the autovisibility mode. When autovisibility is enabled, the tabs component is hidden
* unless it contains two or more tabs.
*/
public void setAutoVisibility(boolean autoVisibility) {
this.autoVisibility = autoVisibility;
updateVisibility();
}
/**
* Add a tab with a {@code demo} component. The tab label is retrieved from the {@link PageTitle}
* annotations in the demo class.
*
* @param clazz the class of routed demo view component
*/
public void addDemo(Class<? extends Component> clazz) {
String label = Optional.ofNullable(clazz.getAnnotation(PageTitle.class)).map(PageTitle::value)
.orElse(clazz.getSimpleName());
addDemo(clazz, label);
}
@Override
public void showRouterLayoutContent(HasElement content) {
Component demo = (Component) content;
if (!demo.getId().isPresent()) {
demo.setId("content");
}
if (helperButton != null) {
remove(helperButton);
helperButton = null;
}
DemoSource[] demoSources = demo.getClass().getAnnotationsByType(DemoSource.class);
List<SourceCodeTab> sourceTabs = new ArrayList<>(demoSources.length);
for (DemoSource demoSource : demoSources) {
createSourceCodeTab(demo.getClass(), demoSource).ifPresent(sourceTabs::add);
}
if (!sourceTabs.isEmpty()) {
content = new SplitLayoutDemo(demo, sourceTabs);
currentLayout = (SplitLayoutDemo) content;
if (splitOrientation != null) {
setOrientation(splitOrientation);
updateSplitterPosition();
}
if (currentLayout != null) {
setupDemoHelperButton(currentLayout.getContent().getPrimaryComponent().getClass());
}
} else {
currentLayout = null;
demo.getElement().getStyle().set("height", "100%");
setupDemoHelperButton(content.getClass());
}
updateFooterButtonsVisibility();
getElement().insertChild(1, content.getElement());
applyThemeAttribute(getElement(), getThemeAttribute());
}
private static SourceUrlResolver resolver = null;
/**
* Configures the {@code SourceUrlResolver} for resolving source URLs. This method can only be
* called once; subsequent calls will result in an exception.
*
* @param resolver The {@code SourceUrlResolver} to be used. Must not be {@code null}.
* @throws IllegalStateException if a resolver has already been set.
* @throws NullPointerException if the provided {@code resolver} is {@code null}.
*/
public static void configureSourceUrlResolver(@NonNull SourceUrlResolver resolver) {
if (TabbedDemo.resolver != null) {
throw new IllegalStateException();
}
TabbedDemo.resolver = resolver;
}
private static SourceUrlResolver getResolver() {
if (resolver == null) {
resolver = new DefaultSourceUrlResolver();
}
return resolver;
}
private Optional<SourceCodeTab> createSourceCodeTab(Class<?> annotatedClass, DemoSource annotation) {
String url = getResolver().resolveURL(this, annotatedClass, annotation).orElse(null);
if (url==null) {
return Optional.empty();
}
SourceCodeTab.SourceCodeTabBuilder builder = SourceCodeTab.builder();
builder.url(url);
if (!annotation.caption().equals(DemoSource.DEFAULT_VALUE)) {
builder.caption(annotation.caption());
}
if (!annotation.language().equals(DemoSource.DEFAULT_VALUE)) {
builder.language(annotation.language());
}
builder.sourcePosition(annotation.sourcePosition());
return Optional.of(builder.build());
}
public static String lookupGithubBranch(Class<? extends TabbedDemo> clazz) {
GithubBranch branch = clazz.getAnnotation(GithubBranch.class);
if (branch == null) {
Package pkg = clazz.getPackage();
if (pkg!=null) {
branch = pkg.getAnnotation(GithubBranch.class);
}
}
return Optional.ofNullable(branch).map(GithubBranch::value).orElse("master");
}
@Override
public void removeRouterLayoutContent(HasElement oldContent) {
getElement().removeChild(1);
}
private void updateSplitterPosition() {
if (currentLayout != null) {
if (codeCB.getValue()) {
currentLayout.showSourceCode();
} else {
currentLayout.hideSourceCode();
}
orientationCB.setEnabled(codeCB.getValue());
codePositionCB.setEnabled(codeCB.getValue());
}
}
public void setSourceVisible(boolean visible) {
codeCB.setValue(visible);
codePositionCB.setVisible(visible);
}
public void toggleSourcePosition() {
if (currentLayout != null) {
currentLayout.toggleSourcePosition();
}
}
private void toggleSplitterOrientation() {
if (currentLayout == null) {
return;
}
if (Orientation.HORIZONTAL.equals(splitOrientation)) {
splitOrientation = Orientation.VERTICAL;
} else {
splitOrientation = Orientation.HORIZONTAL;
}
setOrientation(splitOrientation);
}
public Orientation getOrientation() {
return currentLayout.getOrientation();
}
public void setOrientation(Orientation orientation) {
splitOrientation = orientation;
if (currentLayout != null) {
currentLayout.setOrientation(orientation);
currentLayout.setSplitterPosition(50);
}
orientationCB.setValue(Orientation.HORIZONTAL.equals(orientation));
}
private static final String THEME_NAME = TabbedDemo.class.getName() + "#THEME_NAME";
public static String getThemeAttribute() {
return (String) Optional.ofNullable(VaadinSession.getCurrent().getAttribute(THEME_NAME))
.orElse("");
}
public static void applyThemeAttribute(Element element, String theme) {
VaadinSession.getCurrent().setAttribute(THEME_NAME, theme);
String script;
if (element.getTag().equalsIgnoreCase("iframe")) {
script = "this.contentWindow.document.documentElement.setAttribute('theme', $0)";
} else {
script = "document.documentElement.setAttribute('theme', $0);";
}
element.executeJs(script, theme);
Component c = element.getComponent().get();
collectThemeChangeObservers(c).forEach(observer -> observer.onThemeChange(theme));
}
private static Stream<ThemeChangeObserver> collectThemeChangeObservers(Component c) {
Stream<ThemeChangeObserver> children =
c.getChildren().flatMap(child -> collectThemeChangeObservers(child));
return c instanceof ThemeChangeObserver o ? Stream.concat(Stream.of(o), children) : children;
}
private void updateFooterButtonsVisibility() {
boolean hasSourceCode = currentLayout != null;
ComponentUtil.fireEvent(this, new TabbedDemoSourceEvent(this, hasSourceCode));
orientationCB.setVisible(hasSourceCode);
codeCB.setVisible(hasSourceCode);
codePositionCB.setVisible(hasSourceCode);
}
public void addTabbedDemoSourceListener(ComponentEventListener<TabbedDemoSourceEvent> listener) {
ComponentUtil.addListener(this, TabbedDemoSourceEvent.class, listener);
listener.onComponentEvent(new TabbedDemoSourceEvent(this, currentLayout != null));
}
@Override
protected void onAttach(AttachEvent attachEvent) {
super.onAttach(attachEvent);
getUI().ifPresent(ui -> ui.getPage().retrieveExtendedClientDetails(receiver -> {
boolean mobile = receiver.getBodyClientWidth() <= MOBILE_DEVICE_BREAKPOINT_WIDTH;
codeCB.setValue(codeCB.getValue() && !mobile);
codePositionCB.setValue(codeCB.getValue() && !mobile);
boolean portraitOrientation = receiver.getBodyClientHeight() > receiver.getBodyClientWidth();
adjustSplitOrientation(portraitOrientation);
}));
}
private void adjustSplitOrientation(boolean portraitOrientation) {
if (portraitOrientation) {
splitOrientation = Orientation.VERTICAL;
} else {
splitOrientation = Orientation.HORIZONTAL;
}
setOrientation(splitOrientation);
}
public void setDemoHelperViewer(DemoHelperViewer demoHelperViewer) {
this.demoHelperViewer =
Objects.requireNonNull(demoHelperViewer, "Demo helper viewer cannot be null");
}
private void setupDemoHelperButton(Class<?> helperClass) {
if (helperClass.isAnnotationPresent(DemoHelper.class)) {
DemoHelper demoHelper = helperClass.getAnnotation(DemoHelper.class);
try {
final DemoHelperRenderer demoHelperRenderer = demoHelper.renderer().newInstance();
helperButton = new Button(demoHelper.icon().create());
helperButton.getElement().setAttribute("title", demoHelper.tooltipText());
helperButton.addClassName("helper-button");
helperButton.addThemeVariants(ButtonVariant.LUMO_ICON, ButtonVariant.LUMO_TERTIARY);
helperButton
.addClickListener(e -> demoHelperViewer.show(demoHelperRenderer.helperContent()));
add(helperButton);
} catch (Exception e) {
logger.error("Error creating an instance",e);
}
}
}
}