block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
view.php
149 lines
| 1 | <div |
| 2 | <?php echo wp_kses_data( |
| 3 | get_block_wrapper_attributes( |
| 4 | array( |
| 5 | 'style' => $style, |
| 6 | ) |
| 7 | ) |
| 8 | ); ?> |
| 9 | <?php |
| 10 | echo wp_kses_data( |
| 11 | wp_interactivity_data_wp_context( |
| 12 | [ |
| 13 | 'discountInputOpen' => false, |
| 14 | ] |
| 15 | ) |
| 16 | ); |
| 17 | ?> |
| 18 | data-wp-on-document--click="surecart/checkout::actions.closeCouponOnClickOutside" |
| 19 | > |
| 20 | <!-- Discount applied Applied coupon UI --> |
| 21 | <div |
| 22 | class="sc-line-item__item sc-coupon-form" |
| 23 | data-wp-bind--hidden="!state.isDiscountApplied" |
| 24 | hidden |
| 25 | > |
| 26 | <div class="sc-line-item__text"> |
| 27 | <div class="sc-line-item__description"> |
| 28 | <?php esc_html_e( 'Discount', 'surecart' ); ?> |
| 29 | <div |
| 30 | class="sc-tag" |
| 31 | data-wp-class--sc-tag--success="state.discountIsRedeemable" |
| 32 | data-wp-class--sc-tag--warning="!state.discountIsRedeemable" |
| 33 | > |
| 34 | <span data-wp-text="state.checkout.discount.promotion.code"></span> |
| 35 | <button |
| 36 | data-wp-on--click="actions.removeDiscount" |
| 37 | id="sc-coupon-remove-discount" |
| 38 | title="<?php esc_attr_e( 'Delete discount', 'surecart' ); ?>" |
| 39 | > |
| 40 | <?php echo wp_kses( SureCart::svg()->get( 'x', [ 'class' => '' ] ), sc_allowed_svg_html() ); ?> |
| 41 | </button> |
| 42 | </div> |
| 43 | </div> |
| 44 | </div> |
| 45 | |
| 46 | <div class="sc-line-item__end"> |
| 47 | <div class="sc-line-item__price-text"> |
| 48 | <!-- redeemable UI --> |
| 49 | <div class="sc-line-item__price-description" data-wp-bind--hidden="!state.discountIsRedeemable"> |
| 50 | <span |
| 51 | class="coupon-human-discount" |
| 52 | data-wp-text="state.checkout.human_discount_with_duration" |
| 53 | ></span> |
| 54 | </div> |
| 55 | <div class="sc-line-item__price" data-wp-bind--hidden="!state.discountIsRedeemable" data-wp-text="state.checkout.discount_display_amount"></div> |
| 56 | |
| 57 | <!-- non-redeemable UI --> |
| 58 | <div class="sc-line-item__price-description" data-wp-bind--hidden="state.discountIsRedeemable"> |
| 59 | <div class="sc-coupon__status"> |
| 60 | <?php echo wp_kses( SureCart::svg()->get( 'alert-triangle', [ 'class' => '' ] ), sc_allowed_svg_html() ); ?> |
| 61 | <span data-wp-text="state.checkout.discount.redeemable_display_status"></span> |
| 62 | </div> |
| 63 | </div> |
| 64 | </div> |
| 65 | </div> |
| 66 | </div> |
| 67 | |
| 68 | <!-- Discount Button and Form UI --> |
| 69 | <div |
| 70 | class="sc-coupon-form" |
| 71 | data-wp-bind--hidden="state.isDiscountApplied" |
| 72 | > |
| 73 | <?php if ( $attributes['collapsed'] ) : ?> |
| 74 | <div> |
| 75 | <div |
| 76 | data-wp-bind--hidden="context.discountInputOpen" |
| 77 | hidden |
| 78 | class="trigger" |
| 79 | data-wp-on--click="surecart/checkout::actions.toggleDiscountInput" |
| 80 | data-wp-on--keydown="surecart/checkout::actions.toggleDiscountInput" |
| 81 | aria-role="button" |
| 82 | tabindex="0" |
| 83 | id="sc-coupon-trigger" |
| 84 | > |
| 85 | <?php echo esc_attr( $attributes['text'] ); ?> |
| 86 | </div> |
| 87 | |
| 88 | <form> |
| 89 | <div |
| 90 | data-wp-bind--hidden="!context.discountInputOpen" |
| 91 | hidden |
| 92 | class="sc-input-group sc-coupon-form__input-group" |
| 93 | > |
| 94 | <input |
| 95 | type="text" |
| 96 | id="coupon" |
| 97 | class="sc-form-control sc-coupon-form__input" |
| 98 | aria-label="<?php esc_attr_e( 'Coupon code', 'surecart' ); ?>" |
| 99 | aria-describedby="coupon-input-addon" |
| 100 | placeholder="<?php echo isset( $attributes['placeholder'] ) ? esc_attr( $attributes['placeholder'] ) : esc_html__( 'Enter coupon code', 'surecart' ); ?>" |
| 101 | data-wp-bind--value="state.promotionCode" |
| 102 | data-wp-on--keydown="surecart/checkout::actions.maybeApplyDiscountOnKeyChange" |
| 103 | data-wp-on--keyup="surecart/checkout::actions.maybeApplyDiscountOnKeyChange" |
| 104 | > |
| 105 | <span class="sc-input-group-text" id="coupon-input-addon"> |
| 106 | <button |
| 107 | type="submit" |
| 108 | data-wp-bind--hidden="!state.promotionCode" |
| 109 | data-wp-on--click="actions.applyDiscount" |
| 110 | > |
| 111 | <?php echo isset( $attributes['button_text'] ) ? esc_attr( $attributes['button_text'] ) : esc_html__( 'Apply', 'surecart' ); ?> |
| 112 | </button> |
| 113 | </span> |
| 114 | </div> |
| 115 | </form> |
| 116 | </div> |
| 117 | <?php else : ?> |
| 118 | <div |
| 119 | > |
| 120 | <label class="sc-coupon-input-label" for="sc-coupon-input" style="color: <?php echo ! empty( $attributes['textColor'] ) ? esc_attr( $attributes['textColor'] ) : 'var(--sc-input-label-color)'; ?>"> |
| 121 | <?php echo esc_html( $attributes['text'] ); ?> |
| 122 | </label> |
| 123 | |
| 124 | <div class="sc-input-group sc-coupon-form__input-group"> |
| 125 | <input |
| 126 | type="text" |
| 127 | id="sc-coupon-input" |
| 128 | class="sc-form-control sc-coupon-form__input" |
| 129 | aria-label="<?php esc_attr_e( 'Coupon code', 'surecart' ); ?>" |
| 130 | aria-describedby="sc-coupon-trigger" |
| 131 | placeholder="<?php echo isset( $attributes['placeholder'] ) ? esc_attr( $attributes['placeholder'] ) : esc_html__( 'Enter coupon code', 'surecart' ); ?>" |
| 132 | data-wp-bind="state.discountCode" |
| 133 | data-wp-on--keydown="surecart/checkout::actions.maybeApplyDiscountOnKeyChange" |
| 134 | data-wp-on--keyup="surecart/checkout::actions.maybeApplyDiscountOnKeyChange" |
| 135 | > |
| 136 | <span class="sc-input-group-text" id="sc-coupon-trigger"> |
| 137 | <button |
| 138 | data-wp-bind--hidden="!state.promotionCode" |
| 139 | data-wp-on--click="actions.applyDiscount" |
| 140 | > |
| 141 | <?php echo isset( $attributes['button_text'] ) ? esc_attr( $attributes['button_text'] ) : esc_html__( 'Apply', 'surecart' ); ?> |
| 142 | </button> |
| 143 | </span> |
| 144 | </div> |
| 145 | </div> |
| 146 | <?php endif; ?> |
| 147 | </div> |
| 148 | </div> |
| 149 |