appName = $appName; $this->l10n = $l; $this->eventDispatcher = $eventDispatcher; $this->manager = $manager; $this->initialStateService = $initialStateService; $this->config = $config; $this->urlGenerator = $urlGenerator; } abstract public function getScope(): int; /** * @return TemplateResponse */ public function getForm(): TemplateResponse { // @deprecated in 20.0.0: retire this one in favor of the typed event $this->eventDispatcher->dispatch( 'OCP\WorkflowEngine::loadAdditionalSettingScripts', new LoadSettingsScriptsEvent() ); $this->eventDispatcher->dispatchTyped(new LoadSettingsScriptsEvent()); $entities = $this->manager->getEntitiesList(); $this->initialStateService->provideInitialState( 'entities', $this->entitiesToArray($entities) ); $operators = $this->manager->getOperatorList(); $this->initialStateService->provideInitialState( 'operators', $this->operatorsToArray($operators) ); $checks = $this->manager->getCheckList(); $this->initialStateService->provideInitialState( 'checks', $this->checksToArray($checks) ); $this->initialStateService->provideInitialState( 'scope', $this->getScope() ); $this->initialStateService->provideInitialState( 'appstoreenabled', $this->config->getSystemValueBool('appstoreenabled', true) ); $this->initialStateService->provideInitialState( 'doc-url', $this->urlGenerator->linkToDocs('admin-workflowengine') ); return new TemplateResponse(Application::APP_ID, 'settings', [], 'blank'); } /** * @return string the section ID, e.g. 'sharing' */ public function getSection(): ?string { return 'workflow'; } /** * @return int whether the form should be rather on the top or bottom of * the admin section. The forms are arranged in ascending order of the * priority values. It is required to return a value between 0 and 100. * * E.g.: 70 */ public function getPriority(): int { return 0; } private function entitiesToArray(array $entities) { return array_map(function (IEntity $entity) { $events = array_map(function (IEntityEvent $entityEvent) { return [ 'eventName' => $entityEvent->getEventName(), 'displayName' => $entityEvent->getDisplayName() ]; }, $entity->getEvents()); return [ 'id' => get_class($entity), 'icon' => $entity->getIcon(), 'name' => $entity->getName(), 'events' => $events, ]; }, $entities); } private function operatorsToArray(array $operators) { $operators = array_filter($operators, function (IOperation $operator) { return $operator->isAvailableForScope($this->getScope()); }); return array_map(function (IOperation $operator) { return [ 'id' => get_class($operator), 'icon' => $operator->getIcon(), 'name' => $operator->getDisplayName(), 'description' => $operator->getDescription(), 'fixedEntity' => $operator instanceof ISpecificOperation ? $operator->getEntityId() : '', 'isComplex' => $operator instanceof IComplexOperation, 'triggerHint' => $operator instanceof IComplexOperation ? $operator->getTriggerHint() : '', ]; }, $operators); } private function checksToArray(array $checks) { $checks = array_filter($checks, function (ICheck $check) { return $check->isAvailableForScope($this->getScope()); }); return array_map(function (ICheck $check) { return [ 'id' => get_class($check), 'supportedEntities' => $check->supportedEntities(), ]; }, $checks); } } eature/vaadin8-book Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/articles/UsingURIFragments.asciidoc
blob: eebdf783032640d07c861b0b7ddb77947ab15b0c (plain)
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
[[using-uri-fragments]]
Using URI fragments
-------------------

[[reading-fragment-when-initializing-ui]]
Reading Fragment when Initializing UI
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

URI fragments can either be used for initializing the UI and/or read or
modified in any listener. In the UI.init method you get a "VaadinRequest
request" parameter. The UI's Page contains a information about the HTTP
request used to initialize the application and you can get the URI
fragment using

....
getPage().geUriFragment()
....

A simple init that depends on the URI fragment is thus:

[source,java]
....
public class MyUI extends UI {
  @Override
  protected void init(VaadinRequest request) {
    layout = new VerticalLayout();
    layout.setMargin(true);
    setContent(layout);

    Label label = new Label("Hello, your fragment is "
            + getPage().getUriFragment());
    layout.addComponent(label);
  }
}
....

[[reading-fragment-changes]]
Reading Fragment Changes
~~~~~~~~~~~~~~~~~~~~~~~~

The URI fragment can be changed also when the application is running,
either manually in the location bar in browser or from user code. These
changes can be caught with a **FragmentChangedListener**. Notice,
however, that there is no event fired for the initial URL fragment. The
easiest way to handle both cases in the same way is to call the same
method from the FragmentChangedListener and the init method:

[source,java]
....
public class MyUI extends UI {
  // ...

  // React to fragment changes
  getPage().addUriFragmentChangedListener(new UriFragmentChangedListener() {
    @Override
    public void uriFragmentChanged(UriFragmentChangedEvent source) {
      handleFragment(source.getUriFragment());
    }
  });

  // Handle the fragment received in the initial request
  handleFragment(getPage().getUriFragment());

  addComponent(new Button("Show and set fragment", new Button.ClickListener() {
    @Override
      public void buttonClick(ClickEvent event) {
        handleFragment(getPage().getUriFragment());
        getPage().setUriFragment("customFragment");
      }
  }));
....

[[reading-and-writing-the-fragment]]
Reading and Writing the Fragment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

To later on read the fragment you can use

....
Page.getCurrent().getUriFragment();
....

and to set the fragment

....
Page.getCurrent().setUriFragment(String fragment);
....