-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90c09ed
commit 012ee65
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{% comment %}theme-check-disable UndefinedObject{% endcomment %} | ||
{%- assign pick_up_availabilities = product_variant.store_availabilities | where: 'pick_up_enabled', true -%} | ||
|
||
{%- if pick_up_availabilities.size > 0 -%} | ||
<pickup-availability-preview class="pickup-availability-preview"> | ||
{%- liquid | ||
assign closest_location = pick_up_availabilities.first | ||
|
||
if closest_location.available | ||
render 'icon-tick' | ||
endif | ||
-%} | ||
|
||
<div class="pickup-availability-info"> | ||
{%- if closest_location.available -%} | ||
<p class="caption-large"> | ||
{{ | ||
'products.product.pickup_availability.pick_up_available_at_html' | ||
| t: location_name: closest_location.location.name | ||
}} | ||
</p> | ||
<p class="caption">{{ closest_location.pick_up_time }}</p> | ||
<button | ||
id="ShowPickupAvailabilityDrawer" | ||
class="pickup-availability-button link link--text underlined-link" | ||
aria-haspopup="dialog" | ||
> | ||
{%- if pick_up_availabilities.size == 1 -%} | ||
{{ 'products.product.pickup_availability.view_store_info' | t }} | ||
{%- else -%} | ||
{{ 'products.product.pickup_availability.check_other_stores' | t }} | ||
{%- endif -%} | ||
</button> | ||
{%- else -%} | ||
<p class="caption-large"> | ||
{{ | ||
'products.product.pickup_availability.pick_up_unavailable_at_html' | ||
| t: location_name: closest_location.location.name | ||
}} | ||
</p> | ||
{%- if pick_up_availabilities.size > 1 -%} | ||
<button | ||
id="ShowPickupAvailabilityDrawer" | ||
class="pickup-availability-button link link--text underlined-link" | ||
aria-haspopup="dialog" | ||
> | ||
{{ 'products.product.pickup_availability.check_other_stores' | t }} | ||
</button> | ||
{%- endif -%} | ||
{%- endif -%} | ||
</div> | ||
</pickup-availability-preview> | ||
|
||
<pickup-availability-drawer | ||
class="gradient" | ||
tabindex="-1" | ||
role="dialog" | ||
aria-modal="true" | ||
aria-labelledby="PickupAvailabilityHeading" | ||
> | ||
<div class="pickup-availability-header"> | ||
<h2 class="h3 pickup-availability-drawer-title" id="PickupAvailabilityHeading"> | ||
{{ product_variant.product.title | escape }} | ||
</h2> | ||
<button class="pickup-availability-drawer-button" type="button" aria-label="{{ 'accessibility.close' | t }}"> | ||
{%- render 'icon-close' -%} | ||
</button> | ||
</div> | ||
|
||
{%- unless product_variant.product.has_only_default_variant -%} | ||
<p class="pickup-availability-variant"> | ||
{%- for product_option in product_variant.product.options_with_values -%} | ||
{{ product_option.name | escape }}: | ||
{%- for value in product_option.values -%} | ||
{%- if product_option.selected_value == value -%} | ||
<span>{{ value | escape }}</span> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{%- unless forloop.last -%}, {%- endunless -%} | ||
{%- endfor -%} | ||
</p> | ||
{%- endunless -%} | ||
|
||
<ul class="pickup-availability-list list-unstyled" role="list" data-store-availability-drawer-content> | ||
{%- for availability in pick_up_availabilities -%} | ||
<li class="pickup-availability-list__item"> | ||
<h3 class="h4">{{ availability.location.name | escape }}</h3> | ||
<p class="pickup-availability-preview caption-large"> | ||
{%- if availability.available -%} | ||
{% render 'icon-tick' %} | ||
{{ 'products.product.pickup_availability.pick_up_available' | t }}, | ||
{{ availability.pick_up_time | downcase }} | ||
{%- endif -%} | ||
</p> | ||
|
||
{%- assign address = availability.location.address -%} | ||
<address class="pickup-availability-address"> | ||
{{ address | format_address }} | ||
|
||
{%- if address.phone.size > 0 -%} | ||
<p>{{ address.phone }}</p> | ||
{%- endif -%} | ||
</address> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
</pickup-availability-drawer> | ||
{%- endif -%} |