Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Documentation/Developer Guide/User interface services"

(orion.page.selection: fix selection example)
(remove 'line' attr from <source> because of WikiText not handling it)
 
(3 intermediate revisions by the same user not shown)
Line 10: Line 10:
  
 
Here is an example of a selection consumer adding a listener to track selection changes:
 
Here is an example of a selection consumer adding a listener to track selection changes:
<source lang="javascript" enclose="div" line>
+
<source lang="javascript" enclose="div">
 
   serviceRegistry.getService("orion.page.selection").addEventListener("selectionChanged", function(event) {
 
   serviceRegistry.getService("orion.page.selection").addEventListener("selectionChanged", function(event) {
 
       // Do something with the selection.  Consumers must know what type of object is stored.
 
       // Do something with the selection.  Consumers must know what type of object is stored.
Line 22: Line 22:
  
 
The command service is responsible for managing and rendering commands such as tool bar and menu items. A command represents a single clickable action for a user, such as a toolbar button or menu item. Commands can typically be defined in common code, independent of any particular UI presentation of the commands or associated items. Here is an example of a simple command definition:
 
The command service is responsible for managing and rendering commands such as tool bar and menu items. A command represents a single clickable action for a user, such as a toolbar button or menu item. Commands can typically be defined in common code, independent of any particular UI presentation of the commands or associated items. Here is an example of a simple command definition:
<source lang="javascript" enclose="div" line>
+
<source lang="javascript" enclose="div">
 
   define(['orion/commands'], function(mCommands) {
 
   define(['orion/commands'], function(mCommands) {
 
     var editCommand = new mCommands.Command({
 
     var editCommand = new mCommands.Command({
Line 40: Line 40:
  
 
The command's callback is executed when the user clicks on the command.  The callback implementation may do the work directly, or it may need to collect some parameters from the user first.  If the latter, it is useful to determine which parameters are required in order for the command to accomplish its work, and which are optional.  Required parameters may be specified in the command.  If they are specified, then the command service will generate a UI for collecting the parameters before the callback is ever called.  For example, the following command specifies that a "name" parameter should be collected before calling the callback:
 
The command's callback is executed when the user clicks on the command.  The callback implementation may do the work directly, or it may need to collect some parameters from the user first.  If the latter, it is useful to determine which parameters are required in order for the command to accomplish its work, and which are optional.  Required parameters may be specified in the command.  If they are specified, then the command service will generate a UI for collecting the parameters before the callback is ever called.  For example, the following command specifies that a "name" parameter should be collected before calling the callback:
<source lang="javascript" enclose="div" line >
+
<source lang="javascript" enclose="div" >
 
   var newArtifactCommand = new mCommands.Command({
 
   var newArtifactCommand = new mCommands.Command({
 
     name: "New Artifact",
 
     name: "New Artifact",
Line 63: Line 63:
  
 
The snippet below registers a command for items that appear in a list on the page.
 
The snippet below registers a command for items that appear in a list on the page.
<blockquote><source lang="javascript" enclose="div" >
+
<source lang="javascript" enclose="div" >
serviceRegistry.getService("orion.page.command").registerCommandContribution("itemLevelCommands", "my.command.id", 1);
+
serviceRegistry.getService("orion.page.command").registerCommandContribution("itemLevelCommands", "my.command.id", 1);
</source><blockquote>
+
</source>
 
In its simplest form, a command contribution describes the id of the scope in which the command appears, the command id itself, and a number that positions the command relative to other commands in that scope.  Additional parameters allow the page to specify any nested groups it should be grouped with, and any key bindings or url bindings that should be registered in order to trigger the command.   
 
In its simplest form, a command contribution describes the id of the scope in which the command appears, the command id itself, and a number that positions the command relative to other commands in that scope.  Additional parameters allow the page to specify any nested groups it should be grouped with, and any key bindings or url bindings that should be registered in order to trigger the command.   
  
 
After all commands and UI contributions are defined, some code must tell the command service to render the commands. For most Orion pages, the rendering is handled by the various page components. For example, any "global" commands are rendered by the banner code. The toolbar renders commands that are scoped with the "pageActions" or "pageNavigationActions" scope ids.  The rendering code also determines which items should be passed to the handler, using the selection service or page-specific code.   
 
After all commands and UI contributions are defined, some code must tell the command service to render the commands. For most Orion pages, the rendering is handled by the various page components. For example, any "global" commands are rendered by the banner code. The toolbar renders commands that are scoped with the "pageActions" or "pageNavigationActions" scope ids.  The rendering code also determines which items should be passed to the handler, using the selection service or page-specific code.   
  
Pages can define their own dom elements for rendering commands in order to control precise layout, or to handle commands that are scoped to different items on different parts of the page. In this case, the page must not only contribute the commands, but must also render the commands into some DOM element.  The code that is rendering commands is responsible for determining which object is used as "this" for the command callbacks (the handler) and what item or items are passed into the callback.
+
Pages can define their own DOM elements for rendering commands in order to control precise layout, or to handle commands that are scoped to different items on different parts of the page. In this case, the page must not only contribute the commands, but must also render the commands into some DOM element.  The code that is rendering commands is responsible for determining which object is used as <code>this</code> for the command callbacks (the handler) and what item or items are passed into the callback.
  
 
For example, in the navigator, there are actions that apply to each item in the navigator list.  The navigator renders them in a column for each item in the list.  As it renders the command, it specifies the handler (the explorer code) and the individual item to which that rendering applies.
 
For example, in the navigator, there are actions that apply to each item in the navigator list.  The navigator renders them in a column for each item in the list.  As it renders the command, it specifies the handler (the explorer code) and the individual item to which that rendering applies.
  
 
In some cases, a page organizes commands according to visual "panes" that appear inside the page.  For example, a side by side compare editor might want to render different commands for the left and right compare panes. It must define dom elements where these command contributions are shown, and it must render commands into this dom element. The following snippet shows an example of custom dom-based contributions, including a key binding for the "copyToLeft" command:
 
In some cases, a page organizes commands according to visual "panes" that appear inside the page.  For example, a side by side compare editor might want to render different commands for the left and right compare panes. It must define dom elements where these command contributions are shown, and it must render commands into this dom element. The following snippet shows an example of custom dom-based contributions, including a key binding for the "copyToLeft" command:
<source lang="javascript" enclose="div" >
+
<source lang="javascript" enclose="div">
 
  var commandService = serviceRegistry.getService("orion.page.command");
 
  var commandService = serviceRegistry.getService("orion.page.command");
 
  commandService.registerCommandContribution("rightContainerCommands", "orion.compare.copyToLeft", 1,  
 
  commandService.registerCommandContribution("rightContainerCommands", "orion.compare.copyToLeft", 1,  

Latest revision as of 16:36, 30 October 2013

Overview of user interface services

Orion provides a number of utility services that can be used by scripts on Orion pages. These are not services that would be implemented or used by a plugin. Rather, they provide ways for scripts on each page to contribute links, messages, and commands to the title area, and to display dialogs to the end user. A service is also provided for broadcasting or listening to selection changes, which allows synchronization between multiple widgets on a page. For example, the selection service is used to enable the editor to react to selection changes in the outline panel, and to enable the command service to validate toolbar commands against selections in a list.

orion.page.selection

The selection service tracks the selection in the current page. The page is the provider of the selection, using service API to set the selection. The page determines how selections are shown and made by the user, and whether single or multiple selections are allowed. Typically selections are managed in a list, table, or tree. The page also determines what kind of objects are stored to represent selections, such as a string, URI, or json object with certain properties.

Consumers of the selection service use API to get the current selection, or to register a listener that will be notified when the selection changes.

Here is an example of a selection consumer adding a listener to track selection changes:

  serviceRegistry.getService("orion.page.selection").addEventListener("selectionChanged", function(event) {
      // Do something with the selection.  Consumers must know what type of object is stored.
      // event.selection - A single selected item.
      // event.selections - Array of selected items.
  });

See orion.selection.Selection in the client API reference for a complete list of functions available on the selection service.

orion.page.command

The command service is responsible for managing and rendering commands such as tool bar and menu items. A command represents a single clickable action for a user, such as a toolbar button or menu item. Commands can typically be defined in common code, independent of any particular UI presentation of the commands or associated items. Here is an example of a simple command definition:

  define(['orion/commands'], function(mCommands) {
    var editCommand = new mCommands.Command({
      name: "Make Favorite",
      imageClass: "core-sprite-favorite",
      id: "my.command.id",
      visibleWhen: function(item) {
        //return true if this command should be visible for 'item'
      },
      callback: function(commandInvocation) {
        //get the items, etc. from the commandInvocation and execute the command
      })
    });
  });

The image associated with a command can be defined as a single downloadable image, or as a CSS class to be used as the background for the image (so that CSS data URI's and image sprites can be used.)

The command's callback is executed when the user clicks on the command. The callback implementation may do the work directly, or it may need to collect some parameters from the user first. If the latter, it is useful to determine which parameters are required in order for the command to accomplish its work, and which are optional. Required parameters may be specified in the command. If they are specified, then the command service will generate a UI for collecting the parameters before the callback is ever called. For example, the following command specifies that a "name" parameter should be collected before calling the callback:

  var newArtifactCommand = new mCommands.Command({
    name: "New Artifact",
    tooltip: "Create a new artifact",
    imageClass: "sprite-new_artifact",
    id: "my.newArtifact",
    parameters: new mCommands.ParametersDescription[
      new mCommands.CommandParameter('name', 'text', 'Name:', 'New Artifact'], false);
    callback: function(data) {
      var name = data.parameters.valueFor('name');
      if (name) {
        // do some work
      }
    },
    visibleWhen: function(item) {
      return item.artifactHolder;
    }});

At this point, we've defined a generic edit command and its behavior. Nothing will appear in the UI until we decide to show it on a particular page. To add a command to a page, the page must register a command contribution in the UI. The contributions are made separately so that, for example, an application could define all the commands that apply to its objects in common code, leaving the individual pages to decide how those commands might be shown.

When contributing a command, the page defines a scope id for the command. This id describes when the command is shown. When the page code renders commands in a toolbar or list, the corresponding scope id is specified, so that the command service can determine which commands should be shown. The id can be any arbitrary String value, but by convention the DOM ids of some well known, common DOM elements, such as the main toolbar, are used for contribution ids. Commands that are intended to be shown for individual objects (items) that appear in tables, lists, or trees are typically contributed with a descriptive scope id, such as "fileLevelCommands".

The snippet below registers a command for items that appear in a list on the page.

serviceRegistry.getService("orion.page.command").registerCommandContribution("itemLevelCommands", "my.command.id", 1);

In its simplest form, a command contribution describes the id of the scope in which the command appears, the command id itself, and a number that positions the command relative to other commands in that scope. Additional parameters allow the page to specify any nested groups it should be grouped with, and any key bindings or url bindings that should be registered in order to trigger the command.

After all commands and UI contributions are defined, some code must tell the command service to render the commands. For most Orion pages, the rendering is handled by the various page components. For example, any "global" commands are rendered by the banner code. The toolbar renders commands that are scoped with the "pageActions" or "pageNavigationActions" scope ids. The rendering code also determines which items should be passed to the handler, using the selection service or page-specific code.

Pages can define their own DOM elements for rendering commands in order to control precise layout, or to handle commands that are scoped to different items on different parts of the page. In this case, the page must not only contribute the commands, but must also render the commands into some DOM element. The code that is rendering commands is responsible for determining which object is used as this for the command callbacks (the handler) and what item or items are passed into the callback.

For example, in the navigator, there are actions that apply to each item in the navigator list. The navigator renders them in a column for each item in the list. As it renders the command, it specifies the handler (the explorer code) and the individual item to which that rendering applies.

In some cases, a page organizes commands according to visual "panes" that appear inside the page. For example, a side by side compare editor might want to render different commands for the left and right compare panes. It must define dom elements where these command contributions are shown, and it must render commands into this dom element. The following snippet shows an example of custom dom-based contributions, including a key binding for the "copyToLeft" command:

 var commandService = serviceRegistry.getService("orion.page.command");
 commandService.registerCommandContribution("rightContainerCommands", "orion.compare.copyToLeft", 1,
 /* no parent path */ null, new mKeyBinding.KeyBinding("A", true, true));
 commandService.registerCommandContribution("rightContainerCommands", "orion.compare.nextDiff", 2);
 commandService.registerCommandContribution("rightContainerCommands", "orion.compare.prevDiff", 3);
 // now render the commands into the dom node using "tool" style.  There are no items to pass to the handler.
 commandService.renderCommands("rightContainerCommands", rightContainerDOMNode, /* no items */ null, myCompareHandler, "tool");

See orion.commands.CommandService in the client API reference for documentation about commands, parameters, URL bindings, contributions, and rendering.

orion.page.dialog

The dialog service provides functions for obtaining simple confirmations for prompts from the user. Use of the dialog service allows clients to perform these simple interactions without choosing a specific implementation (dialog, browser prompts) and instead delegates that responsibility to the service.

See orion.dialogs.DialogService in the client API reference for a complete list of functions available on the dialog service.


orion.page.message

The message service provides functions for reporting status messages, error messages, or information about long running operations. Using the message service allows clients to report information to the user without choosing a specific implementation or UI. The service determines how these messages are reported.vice.

See orion.status.StatusReportingService in the client API reference for a complete list of functions available on the message service.

Back to the top