gift-message.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!-- ko if: isActive() || hasActiveOptions() -->
  8. <div class="cart-gift-item">
  9. <div class="gift-item-block block"
  10. data-collapsible="true"
  11. data-bind="css: {_active: formBlockVisibility() || resultBlockVisibility()}">
  12. <div class="title" data-role="title" data-bind="click: $data.toggleFormBlockVisibility.bind($data)">
  13. <span data-bind="i18n: 'Gift options'"></span>
  14. </div>
  15. <div class="content" data-role="content" data-bind="visible: formBlockVisibility() || resultBlockVisibility()">
  16. <!-- ko ifnot: resultBlockVisibility() -->
  17. <div class="gift-options">
  18. <!-- ko foreach: getRegion('additionalOptions') -->
  19. <!-- ko template: getTemplate() --><!-- /ko -->
  20. <!-- /ko -->
  21. <!-- ko template: formTemplate --><!--/ko-->
  22. </div>
  23. <!-- /ko -->
  24. <div class="gift-summary">
  25. <!-- ko if: resultBlockVisibility() -->
  26. <!-- ko foreach: getRegion('additionalOptions') -->
  27. <!--ko template: appliedTemplate --><!-- /ko -->
  28. <!-- /ko -->
  29. <!-- ko if: getObservable('message') -->
  30. <div class="gift-message-summary">
  31. <span data-bind="i18n: 'Message:'"></span>
  32. <!-- ko text: getObservable('message') --><!-- /ko -->
  33. </div>
  34. <!-- /ko -->
  35. <div class="actions-toolbar">
  36. <div class="secondary">
  37. <button type="submit"
  38. class="action action-edit"
  39. data-bind="attr: {title: $t('Edit')}, click: $data.editOptions.bind($data)">
  40. <span data-bind="i18n: 'Edit'"></span>
  41. </button>
  42. <button class="action action-delete"
  43. data-bind="attr: {title: $t('Delete')}, click: $data.deleteOptions.bind($data)">
  44. <span data-bind="i18n: 'Delete'"></span>
  45. </button>
  46. </div>
  47. </div>
  48. <!-- /ko -->
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <!-- /ko -->