3.5.6. 对话框消息

Dialogs 接口设计用来展示标准对话框窗口。其 createMessageDialog()createOptionDialog()createInputDialog() 方法是流式 API 的入口点,可以用来创建和显示对话框。

对话框的展示可以使用带 $cuba-window-modal-* 前缀的 SCSS 变量进行自定义。可以在创建一个 主题扩展 或者一个 自定义主题 之后在可视化编辑器里修改这些变量的值。

消息对话框

下面的例子中,当用户点击按钮时,会显示一个消息对话框:

  1. @Inject
  2. private Dialogs dialogs;
  3. @Subscribe("showDialogBtn")
  4. protected void onShowDialogBtnClick(Button.ClickEvent event) {
  5. dialogs.createMessageDialog().withCaption("Information").withMessage("Message").show();
  6. }

可以在消息中使用 \n 字符来换行。如果要显示 HTML,可以用 withContentMode() 方法带 ContentMode.HTML 参数。当使用 HTML 时,别忘了转移数据内容以防恶意代码注入。

使用下面的方法可以自定义消息对话框的外观和行为:

  • withModal() - 如果使用 false,对话框不以模态窗展示,此时用户可以与应用程序的其它部分交互。

  • withCloseOnClickOutside() - 如果使用 true,并且窗口是模态展示时,用户可以点击对话框之外的地方来关闭对话框。

  • withWidth(), withHeight() 可以设置需要的弹窗大小。

示例:

  1. @Inject
  2. private Dialogs dialogs;
  3. @Subscribe("showDialogBtn")
  4. protected void onShowDialogBtnClick(Button.ClickEvent event) {
  5. dialogs.createMessageDialog()
  6. .withCaption("Information")
  7. .withMessage("<i>Message<i/>")
  8. .withContentMode(ContentMode.HTML)
  9. .withCloseOnClickOutside(true)
  10. .withWidth("100px")
  11. .withHeight("300px")
  12. .show();
  13. }

选项对话框

选项对话框展示了一个消息和一组用户交互的按钮。使用 withActions() 方法可以提供操作,每个操作在对话框中以按钮的形式展示。示例:

  1. @Inject
  2. private Dialogs dialogs;
  3. @Subscribe("showDialogBtn")
  4. protected void onShowDialogBtnClick(Button.ClickEvent event) {
  5. dialogs.createOptionDialog()
  6. .withCaption("Confirm")
  7. .withMessage("Are you sure?")
  8. .withActions(
  9. new DialogAction(DialogAction.Type.YES, Action.Status.PRIMARY).withHandler(e -> {
  10. doSomething();
  11. }),
  12. new DialogAction(DialogAction.Type.NO)
  13. )
  14. .show();
  15. }

当按钮被点击时,对话框会关闭并且调用相应操作的 actionPerform() 方法。

DialogAction 基类设计用来创建带有标准名称和图标的操作。支持五种使用 DialogAction.Type 枚举定义的操作类型:OKCANCELYESNOCLOSE。对应的按钮名称通过主语言消息包获取。

DialogAction 构造器的第二个参数用来为操作的按钮设置特殊的可视化样式。c-primary-action 样式提供的 Status.PRIMARY 会高亮对应的按钮并使得它被选中。如果对话框中有多个操作使用了 Status.PRIMARY,只有第一个操作的按钮能使用正确的样式和图标。

输入对话框

输入对话框是一个多功能的工具,可以使用 API 构建输入表单,摆脱以前创建界面做数据输入。支持不同类型数据的输入、验证输入数据以及为用户提供不同的操作。

下面我们看几个例子。

  1. 带有标准类型参数和 OK/Cancel 按钮的输入对话框:

    1. @Inject
    2. private Dialogs dialogs;
    3. @Subscribe("showDialogBtn")
    4. private void onShowDialogBtnClick(Button.ClickEvent event) {
    5. dialogs.createInputDialog(this)
    6. .withCaption("Enter some values")
    7. .withParameters(
    8. InputParameter.stringParameter("name")
    9. .withCaption("Name").withRequired(true), (1)
    10. InputParameter.doubleParameter("quantity")
    11. .withCaption("Quantity").withDefaultValue(1.0), (2)
    12. InputParameter.entityParameter("customer", Customer.class)
    13. .withCaption("Customer"), (3)
    14. InputParameter.enumParameter("status", Status.class)
    15. .withCaption("Status") (4)
    16. )
    17. .withActions(DialogActions.OK_CANCEL) (5)
    18. .withCloseListener(closeEvent -> {
    19. if (closeEvent.closedWith(DialogOutcome.OK)) { (6)
    20. String name = closeEvent.getValue("name"); (7)
    21. Double quantity = closeEvent.getValue("quantity");
    22. Optional<Customer> customer = closeEvent.getOptional("customer"); (8)
    23. Status status = closeEvent.getValue("status");
    24. // process entered values...
    25. }
    26. })
    27. .show();
    28. }
    1- 指定一个必填的字符串参数。
    2- 指定一个带有默认值的双浮点参数。
    3- 指定一个实体参数。
    4- 指定一个枚举参数。
    5- 指定一组用按钮表示的操作,并放在对话框底部。
    6- 在关闭事件监听器中,我们可以检查用户使用了什么操作。
    7- 关闭事件包含了输入的值,可以通过参数标识符进行获取。
    8- 可以得到一个用 Optional 包装的值。
  2. 自定义参数的输入对话框:

    1. @Inject
    2. private Dialogs dialogs;
    3. @Inject
    4. private UiComponents uiComponents;
    5. @Subscribe("showDialogBtn")
    6. private void onShowDialogBtnClick(Button.ClickEvent event) {
    7. dialogs.createInputDialog(this)
    8. .withCaption("Enter some values")
    9. .withParameters(
    10. InputParameter.stringParameter("name").withCaption("Name"),
    11. InputParameter.parameter("customer") (1)
    12. .withField(() -> {
    13. LookupField<Customer> field = uiComponents.create(
    14. LookupField.of(Customer.class));
    15. field.setOptionsList(dataManager.load(Customer.class).list());
    16. field.setCaption("Customer"); (2)
    17. field.setWidthFull();
    18. return field;
    19. })
    20. )
    21. .withActions(DialogActions.OK_CANCEL)
    22. .withCloseListener(closeEvent -> {
    23. if (closeEvent.closedWith(DialogOutcome.OK)) {
    24. String name = closeEvent.getValue("name");
    25. Customer customer = closeEvent.getValue("customer"); (3)
    26. // process entered values...
    27. }
    28. })
    29. .show();
    30. }
    1- 指定一个自定义参数
    2- 在创建的组件中指定自定义参数的标题。
    3- 跟标准的参数一样的方法获取自定义参数的值。
  3. 使用自定义操作的输入对话框:

    1. @Inject
    2. private Dialogs dialogs;
    3. @Subscribe("showDialogBtn")
    4. private void onShowDialogBtnClick(Button.ClickEvent event) {
    5. dialogs.createInputDialog(this)
    6. .withCaption("Enter some values")
    7. .withParameters(
    8. InputParameter.stringParameter("name").withCaption("Name")
    9. )
    10. .withActions( (1)
    11. InputDialogAction.action("confirm")
    12. .withCaption("Confirm")
    13. .withPrimary(true)
    14. .withHandler(actionEvent -> {
    15. InputDialog dialog = actionEvent.getInputDialog();
    16. String name = dialog.getValue("name"); (2)
    17. dialog.closeWithDefaultAction(); (3)
    18. // process entered values...
    19. }),
    20. InputDialogAction.action("refuse")
    21. .withCaption("Refuse")
    22. .withValidationRequired(false)
    23. .withHandler(actionEvent ->
    24. actionEvent.getInputDialog().closeWithDefaultAction())
    25. )
    26. .show();
    27. }
    1- withActions() 方法能接收一组用户自定义的操作。
    2- 在操作处理器中,可以从对话框获取参数值。
    3- 自定义操作不会关闭对话框本身,所以需要同时手动关闭。
  4. 带自定义校验的输入对话框

    1. @Inject
    2. private Dialogs dialogs;
    3. @Subscribe("showDialogBtn")
    4. private void onShowDialogBtnClick(Button.ClickEvent event) {
    5. dialogs.createInputDialog(this)
    6. .withCaption("Enter some values")
    7. .withParameters(
    8. InputParameter.stringParameter("name").withCaption("Name"),
    9. InputParameter.entityParameter("customer", Customer.class).withCaption("Customer")
    10. )
    11. .withValidator(context -> { (1)
    12. String name = context.getValue("name"); (2)
    13. Customer customer = context.getValue("customer");
    14. if (Strings.isNullOrEmpty(name) && customer == null) {
    15. return ValidationErrors.of("Enter name or select a customer");
    16. }
    17. return ValidationErrors.none();
    18. })
    19. .withActions(DialogActions.OK_CANCEL)
    20. .withCloseListener(closeEvent -> {
    21. if (closeEvent.closedWith(DialogOutcome.OK)) {
    22. String name = closeEvent.getValue("name");
    23. Customer customer = closeEvent.getValue("customer");
    24. // process entered values...
    25. }
    26. })
    27. .show();
    28. }
    1- 需要自定义校验确保至少输入了一个参数。
    2- 在校验器中,参数值可以通过上下文对象获取。
  5. 带有 FileDescriptor 参数的输入对话框:

    1. @Inject
    2. private Dialogs dialogs;
    3. @Subscribe("showDialogBtn")
    4. public void onShowDialogBtnClick(Button.ClickEvent event) {
    5. dialogs.createInputDialog(this)
    6. .withCaption("Select the file")
    7. .withParameters(
    8. InputParameter.fileParameter("fileField") (1)
    9. .withCaption("File"))
    10. .withCloseListener(closeEvent -> {
    11. if (closeEvent.closedWith(DialogOutcome.OK)) {
    12. FileDescriptor fileDescriptor = closeEvent.getValue("fileField"); (2)
    13. }
    14. })
    15. .show();
    16. }
    1- 指定一个 FileDescriptor 参数。
    2- 关闭事件包含输入的值,可以用参数标识符获取。