workarea-storefront 3.4.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (686) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +52 -0
  3. data/README.md +19 -0
  4. data/Rakefile +23 -0
  5. data/app/assets/fonts/.keep +0 -0
  6. data/app/assets/images/workarea/core/test.jpg +0 -0
  7. data/app/assets/images/workarea/storefront/default_card.svg +1 -0
  8. data/app/assets/images/workarea/storefront/dialog_close.svg +1 -0
  9. data/app/assets/images/workarea/storefront/email/banner.png +0 -0
  10. data/app/assets/images/workarea/storefront/icons/facebook.svg +1 -0
  11. data/app/assets/images/workarea/storefront/icons/google_plus.svg +1 -0
  12. data/app/assets/images/workarea/storefront/icons/menu.svg +1 -0
  13. data/app/assets/images/workarea/storefront/icons/pinterest.svg +1 -0
  14. data/app/assets/images/workarea/storefront/icons/twitter.svg +1 -0
  15. data/app/assets/images/workarea/storefront/logo.png +0 -0
  16. data/app/assets/images/workarea/storefront/message_dismiss.svg +1 -0
  17. data/app/assets/images/workarea/storefront/message_error.svg +1 -0
  18. data/app/assets/images/workarea/storefront/message_info.svg +1 -0
  19. data/app/assets/images/workarea/storefront/message_success.svg +1 -0
  20. data/app/assets/images/workarea/storefront/message_warning.svg +1 -0
  21. data/app/assets/images/workarea/storefront/payment_icons/american_express.svg +1 -0
  22. data/app/assets/images/workarea/storefront/payment_icons/diner_s_club.svg +1 -0
  23. data/app/assets/images/workarea/storefront/payment_icons/discover.svg +1 -0
  24. data/app/assets/images/workarea/storefront/payment_icons/mastercard.svg +1 -0
  25. data/app/assets/images/workarea/storefront/payment_icons/visa.svg +1 -0
  26. data/app/assets/images/workarea/storefront/payment_method_icons.png +0 -0
  27. data/app/assets/images/workarea/storefront/style_guide_light_banner.png +0 -0
  28. data/app/assets/images/workarea/storefront/style_guide_product.jpg +0 -0
  29. data/app/assets/javascripts/jquery_ui/storefront/categorized_autocomplete.js +53 -0
  30. data/app/assets/javascripts/workarea/storefront/application.js.erb +162 -0
  31. data/app/assets/javascripts/workarea/storefront/config.js.erb +153 -0
  32. data/app/assets/javascripts/workarea/storefront/head.js.erb +18 -0
  33. data/app/assets/javascripts/workarea/storefront/modules/address_region_fields.js +91 -0
  34. data/app/assets/javascripts/workarea/storefront/modules/admin_toolbar.js +105 -0
  35. data/app/assets/javascripts/workarea/storefront/modules/alternate_image_buttons.js +78 -0
  36. data/app/assets/javascripts/workarea/storefront/modules/analytics.js +285 -0
  37. data/app/assets/javascripts/workarea/storefront/modules/authenticity_token.js +27 -0
  38. data/app/assets/javascripts/workarea/storefront/modules/back_to_top_button.js +47 -0
  39. data/app/assets/javascripts/workarea/storefront/modules/break_points.js +67 -0
  40. data/app/assets/javascripts/workarea/storefront/modules/cart_count.js +51 -0
  41. data/app/assets/javascripts/workarea/storefront/modules/checkout_addresses_forms.js +222 -0
  42. data/app/assets/javascripts/workarea/storefront/modules/checkout_primary_payments.js +66 -0
  43. data/app/assets/javascripts/workarea/storefront/modules/checkout_shipping_services.js +53 -0
  44. data/app/assets/javascripts/workarea/storefront/modules/current_user.js +28 -0
  45. data/app/assets/javascripts/workarea/storefront/modules/dialog.js +284 -0
  46. data/app/assets/javascripts/workarea/storefront/modules/dialog_buttons.js +78 -0
  47. data/app/assets/javascripts/workarea/storefront/modules/dialog_close_buttons.js +29 -0
  48. data/app/assets/javascripts/workarea/storefront/modules/dialog_forms.js +47 -0
  49. data/app/assets/javascripts/workarea/storefront/modules/forms.js +94 -0
  50. data/app/assets/javascripts/workarea/storefront/modules/loading.js +81 -0
  51. data/app/assets/javascripts/workarea/storefront/modules/log_out_link_placeholders.js +36 -0
  52. data/app/assets/javascripts/workarea/storefront/modules/messages.js +179 -0
  53. data/app/assets/javascripts/workarea/storefront/modules/mobile_filter_buttons.js +87 -0
  54. data/app/assets/javascripts/workarea/storefront/modules/mobile_nav_button.js +100 -0
  55. data/app/assets/javascripts/workarea/storefront/modules/option_buttons.js +40 -0
  56. data/app/assets/javascripts/workarea/storefront/modules/optional_fields.js +49 -0
  57. data/app/assets/javascripts/workarea/storefront/modules/pagination.js +284 -0
  58. data/app/assets/javascripts/workarea/storefront/modules/popup_buttons.js +42 -0
  59. data/app/assets/javascripts/workarea/storefront/modules/primary_nav_content.js +77 -0
  60. data/app/assets/javascripts/workarea/storefront/modules/product_details_sku_selects.js +94 -0
  61. data/app/assets/javascripts/workarea/storefront/modules/recent_views.js +25 -0
  62. data/app/assets/javascripts/workarea/storefront/modules/recommendations_placeholders.js +33 -0
  63. data/app/assets/javascripts/workarea/storefront/modules/scroll_to_buttons.js +37 -0
  64. data/app/assets/javascripts/workarea/storefront/modules/search_fields.js +59 -0
  65. data/app/assets/javascripts/workarea/storefront/modules/single_submit_forms.js +35 -0
  66. data/app/assets/javascripts/workarea/storefront/modules/traffic_referrer.js +33 -0
  67. data/app/assets/javascripts/workarea/storefront/modules/workarea_analytics.js +54 -0
  68. data/app/assets/javascripts/workarea/storefront/routes.js.erb +16 -0
  69. data/app/assets/javascripts/workarea/storefront/serviceworkers/pwa_cache.js.erb +31 -0
  70. data/app/assets/javascripts/workarea/storefront/serviceworkers/register_pwa_cache.js +5 -0
  71. data/app/assets/javascripts/workarea/storefront/templates/authenticity_token.jst.ejs +1 -0
  72. data/app/assets/javascripts/workarea/storefront/templates/back_to_top_button.jst.ejs +3 -0
  73. data/app/assets/javascripts/workarea/storefront/templates/button.jst.ejs +3 -0
  74. data/app/assets/javascripts/workarea/storefront/templates/loading.jst.ejs +1 -0
  75. data/app/assets/javascripts/workarea/storefront/templates/log_out_link.jst.ejs +1 -0
  76. data/app/assets/javascripts/workarea/storefront/templates/message.jst.ejs +10 -0
  77. data/app/assets/javascripts/workarea/storefront/templates/message_dismiss_action.jst.ejs +5 -0
  78. data/app/assets/javascripts/workarea/storefront/templates/mobile_filters_nav_close_button.jst.ejs +3 -0
  79. data/app/assets/javascripts/workarea/storefront/templates/optional_field_prompt.jst.ejs +1 -0
  80. data/app/assets/javascripts/workarea/storefront/templates/page_header_cart_count.jst.ejs +1 -0
  81. data/app/assets/javascripts/workarea/storefront/templates/pagination_button.jst.ejs +11 -0
  82. data/app/assets/javascripts/workarea/storefront/templates/same_as_shipping_button_property.jst.ejs +8 -0
  83. data/app/assets/javascripts/workarea/storefront/templates/saved_addresses_property.jst.ejs +21 -0
  84. data/app/assets/javascripts/workarea/storefront/templates/ui_menu_heading.jst.ejs +1 -0
  85. data/app/assets/javascripts/workarea/storefront/templates/ui_menu_item.jst.ejs +8 -0
  86. data/app/assets/stylesheets/jquery_ui/storefront/_ui_autocomplete.scss +17 -0
  87. data/app/assets/stylesheets/jquery_ui/storefront/_ui_dialog.scss +158 -0
  88. data/app/assets/stylesheets/jquery_ui/storefront/_ui_helper_hidden_accessible.scss +7 -0
  89. data/app/assets/stylesheets/jquery_ui/storefront/_ui_menu.scss +40 -0
  90. data/app/assets/stylesheets/jquery_ui/storefront/_ui_state_focus.scss +10 -0
  91. data/app/assets/stylesheets/jquery_ui/storefront/_ui_widget_overlay.scss +11 -0
  92. data/app/assets/stylesheets/workarea/storefront/application.scss.erb +138 -0
  93. data/app/assets/stylesheets/workarea/storefront/base/_forms.scss +113 -0
  94. data/app/assets/stylesheets/workarea/storefront/base/_images.scss +29 -0
  95. data/app/assets/stylesheets/workarea/storefront/base/_lists.scss +8 -0
  96. data/app/assets/stylesheets/workarea/storefront/base/_page.scss +27 -0
  97. data/app/assets/stylesheets/workarea/storefront/base/_tables.scss +15 -0
  98. data/app/assets/stylesheets/workarea/storefront/components/_admin_toolbar.scss +34 -0
  99. data/app/assets/stylesheets/workarea/storefront/components/_back_to_top_button.scss +23 -0
  100. data/app/assets/stylesheets/workarea/storefront/components/_box.scss +37 -0
  101. data/app/assets/stylesheets/workarea/storefront/components/_breadcrumbs.scss +27 -0
  102. data/app/assets/stylesheets/workarea/storefront/components/_button.scss +47 -0
  103. data/app/assets/stylesheets/workarea/storefront/components/_button_content_block.scss +9 -0
  104. data/app/assets/stylesheets/workarea/storefront/components/_button_property.scss +40 -0
  105. data/app/assets/stylesheets/workarea/storefront/components/_cart.scss +21 -0
  106. data/app/assets/stylesheets/workarea/storefront/components/_category_summary_content_block.scss +14 -0
  107. data/app/assets/stylesheets/workarea/storefront/components/_checkout_addresses.scss +17 -0
  108. data/app/assets/stylesheets/workarea/storefront/components/_checkout_payment.scss +48 -0
  109. data/app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss +42 -0
  110. data/app/assets/stylesheets/workarea/storefront/components/_checkout_shipping.scss +11 -0
  111. data/app/assets/stylesheets/workarea/storefront/components/_checkout_step_summary.scss +19 -0
  112. data/app/assets/stylesheets/workarea/storefront/components/_content_block.scss +39 -0
  113. data/app/assets/stylesheets/workarea/storefront/components/_data_card.scss +68 -0
  114. data/app/assets/stylesheets/workarea/storefront/components/_divider_content_block.scss +38 -0
  115. data/app/assets/stylesheets/workarea/storefront/components/_email_signup.scss +9 -0
  116. data/app/assets/stylesheets/workarea/storefront/components/_hero_content_block.scss +77 -0
  117. data/app/assets/stylesheets/workarea/storefront/components/_html_content_block.scss +5 -0
  118. data/app/assets/stylesheets/workarea/storefront/components/_image_and_text_content_block.scss +30 -0
  119. data/app/assets/stylesheets/workarea/storefront/components/_image_content_block.scss +16 -0
  120. data/app/assets/stylesheets/workarea/storefront/components/_image_group_content_block.scss +9 -0
  121. data/app/assets/stylesheets/workarea/storefront/components/_inline_form.scss +11 -0
  122. data/app/assets/stylesheets/workarea/storefront/components/_loading.scss +92 -0
  123. data/app/assets/stylesheets/workarea/storefront/components/_message.scss +120 -0
  124. data/app/assets/stylesheets/workarea/storefront/components/_mobile_filters.scss +25 -0
  125. data/app/assets/stylesheets/workarea/storefront/components/_mobile_filters_nav.scss +31 -0
  126. data/app/assets/stylesheets/workarea/storefront/components/_mobile_nav.scss +67 -0
  127. data/app/assets/stylesheets/workarea/storefront/components/_option_button.scss +27 -0
  128. data/app/assets/stylesheets/workarea/storefront/components/_order_help_menu.scss +31 -0
  129. data/app/assets/stylesheets/workarea/storefront/components/_order_summary.scss +14 -0
  130. data/app/assets/stylesheets/workarea/storefront/components/_page_container.scss +26 -0
  131. data/app/assets/stylesheets/workarea/storefront/components/_page_content.scss +14 -0
  132. data/app/assets/stylesheets/workarea/storefront/components/_page_footer.scss +57 -0
  133. data/app/assets/stylesheets/workarea/storefront/components/_page_header.scss +79 -0
  134. data/app/assets/stylesheets/workarea/storefront/components/_page_messages.scss +36 -0
  135. data/app/assets/stylesheets/workarea/storefront/components/_pagination.scss +9 -0
  136. data/app/assets/stylesheets/workarea/storefront/components/_payment_icon.scss +19 -0
  137. data/app/assets/stylesheets/workarea/storefront/components/_personalized_recommendations_content_block.scss +10 -0
  138. data/app/assets/stylesheets/workarea/storefront/components/_primary_nav.scss +54 -0
  139. data/app/assets/stylesheets/workarea/storefront/components/_product_detail_container.scss +13 -0
  140. data/app/assets/stylesheets/workarea/storefront/components/_product_details.scss +84 -0
  141. data/app/assets/stylesheets/workarea/storefront/components/_product_insights_content_block.scss +10 -0
  142. data/app/assets/stylesheets/workarea/storefront/components/_product_list.scss +160 -0
  143. data/app/assets/stylesheets/workarea/storefront/components/_product_list_content_block.scss +10 -0
  144. data/app/assets/stylesheets/workarea/storefront/components/_product_prices.scss +32 -0
  145. data/app/assets/stylesheets/workarea/storefront/components/_product_summary.scss +53 -0
  146. data/app/assets/stylesheets/workarea/storefront/components/_property.scss +67 -0
  147. data/app/assets/stylesheets/workarea/storefront/components/_quote_content_block.scss +38 -0
  148. data/app/assets/stylesheets/workarea/storefront/components/_recent_views.scss +28 -0
  149. data/app/assets/stylesheets/workarea/storefront/components/_recommendations.scss +9 -0
  150. data/app/assets/stylesheets/workarea/storefront/components/_result_filters.scss +33 -0
  151. data/app/assets/stylesheets/workarea/storefront/components/_search_no_results.scss +21 -0
  152. data/app/assets/stylesheets/workarea/storefront/components/_search_results.scss +22 -0
  153. data/app/assets/stylesheets/workarea/storefront/components/_secondary_nav.scss +23 -0
  154. data/app/assets/stylesheets/workarea/storefront/components/_sitemap.scss +9 -0
  155. data/app/assets/stylesheets/workarea/storefront/components/_sitemap_pagination.scss +26 -0
  156. data/app/assets/stylesheets/workarea/storefront/components/_social_networks_content_block.scss +14 -0
  157. data/app/assets/stylesheets/workarea/storefront/components/_style_guide.scss +140 -0
  158. data/app/assets/stylesheets/workarea/storefront/components/_svg_icon.scss +57 -0
  159. data/app/assets/stylesheets/workarea/storefront/components/_table.scss +50 -0
  160. data/app/assets/stylesheets/workarea/storefront/components/_taxonomy_content_block.scss +87 -0
  161. data/app/assets/stylesheets/workarea/storefront/components/_text_box.scss +36 -0
  162. data/app/assets/stylesheets/workarea/storefront/components/_text_button.scss +17 -0
  163. data/app/assets/stylesheets/workarea/storefront/components/_text_content_block.scss +5 -0
  164. data/app/assets/stylesheets/workarea/storefront/components/_value.scss +46 -0
  165. data/app/assets/stylesheets/workarea/storefront/components/_video_and_text_content_block.scss +44 -0
  166. data/app/assets/stylesheets/workarea/storefront/components/_video_content_block.scss +21 -0
  167. data/app/assets/stylesheets/workarea/storefront/components/_view.scss +12 -0
  168. data/app/assets/stylesheets/workarea/storefront/email.scss +4 -0
  169. data/app/assets/stylesheets/workarea/storefront/email/_base.scss +52 -0
  170. data/app/assets/stylesheets/workarea/storefront/email/_components.scss +91 -0
  171. data/app/assets/stylesheets/workarea/storefront/email/_helpers.scss +69 -0
  172. data/app/assets/stylesheets/workarea/storefront/email/_settings.scss +22 -0
  173. data/app/assets/stylesheets/workarea/storefront/generic/_box_sizing.scss +20 -0
  174. data/app/assets/stylesheets/workarea/storefront/generic/_fonts.scss +24 -0
  175. data/app/assets/stylesheets/workarea/storefront/generic/_reset.scss +37 -0
  176. data/app/assets/stylesheets/workarea/storefront/objects/_button_reset.scss +17 -0
  177. data/app/assets/stylesheets/workarea/storefront/objects/_content_preview_visibility.scss +93 -0
  178. data/app/assets/stylesheets/workarea/storefront/objects/_content_wrapper.scss +18 -0
  179. data/app/assets/stylesheets/workarea/storefront/objects/_inline_list.scss +14 -0
  180. data/app/assets/stylesheets/workarea/storefront/objects/_list_reset.scss +10 -0
  181. data/app/assets/stylesheets/workarea/storefront/objects/_text_field_reset.scss +10 -0
  182. data/app/assets/stylesheets/workarea/storefront/settings/_breakpoints.scss.erb +8 -0
  183. data/app/assets/stylesheets/workarea/storefront/settings/_colors.scss +45 -0
  184. data/app/assets/stylesheets/workarea/storefront/settings/_global.scss +25 -0
  185. data/app/assets/stylesheets/workarea/storefront/settings/_grid.scss +36 -0
  186. data/app/assets/stylesheets/workarea/storefront/settings/_typography.scss +18 -0
  187. data/app/assets/stylesheets/workarea/storefront/settings/_z_indexes.scss +29 -0
  188. data/app/assets/stylesheets/workarea/storefront/tools/_center.scss +34 -0
  189. data/app/assets/stylesheets/workarea/storefront/tools/_focus_ring.scss +23 -0
  190. data/app/assets/stylesheets/workarea/storefront/tools/_respond_to.scss +31 -0
  191. data/app/assets/stylesheets/workarea/storefront/tools/_svg.scss +29 -0
  192. data/app/assets/stylesheets/workarea/storefront/trumps/_break_word.scss +9 -0
  193. data/app/assets/stylesheets/workarea/storefront/trumps/_clearfix.scss +13 -0
  194. data/app/assets/stylesheets/workarea/storefront/trumps/_hidden.scss +71 -0
  195. data/app/assets/stylesheets/workarea/storefront/trumps/_hidden_if_js_enabled.scss +10 -0
  196. data/app/assets/stylesheets/workarea/storefront/trumps/_image_replacement.scss +11 -0
  197. data/app/assets/stylesheets/workarea/storefront/trumps/_truncate.scss +10 -0
  198. data/app/assets/stylesheets/workarea/storefront/trumps/_visible.scss +70 -0
  199. data/app/assets/stylesheets/workarea/storefront/trumps/_visually_hidden.scss +14 -0
  200. data/app/assets/stylesheets/workarea/storefront/typography/_align.scss +15 -0
  201. data/app/assets/stylesheets/workarea/storefront/typography/_headings.scss +62 -0
  202. data/app/assets/stylesheets/workarea/storefront/typography/_links.scss +15 -0
  203. data/app/assets/stylesheets/workarea/storefront/typography/_text.scss +26 -0
  204. data/app/controllers/workarea/storefront/analytics_controller.rb +45 -0
  205. data/app/controllers/workarea/storefront/application_controller.rb +50 -0
  206. data/app/controllers/workarea/storefront/cart_items_controller.rb +99 -0
  207. data/app/controllers/workarea/storefront/carts_controller.rb +61 -0
  208. data/app/controllers/workarea/storefront/categories_controller.rb +11 -0
  209. data/app/controllers/workarea/storefront/check_inventory.rb +10 -0
  210. data/app/controllers/workarea/storefront/check_pricing_override.rb +17 -0
  211. data/app/controllers/workarea/storefront/checkout/addresses_controller.rb +58 -0
  212. data/app/controllers/workarea/storefront/checkout/payment_controller.rb +21 -0
  213. data/app/controllers/workarea/storefront/checkout/place_order_controller.rb +65 -0
  214. data/app/controllers/workarea/storefront/checkout/shipping_controller.rb +53 -0
  215. data/app/controllers/workarea/storefront/checkouts_controller.rb +102 -0
  216. data/app/controllers/workarea/storefront/contacts_controller.rb +28 -0
  217. data/app/controllers/workarea/storefront/content_areas_controller.rb +15 -0
  218. data/app/controllers/workarea/storefront/content_blocks_controller.rb +51 -0
  219. data/app/controllers/workarea/storefront/current_checkout.rb +114 -0
  220. data/app/controllers/workarea/storefront/email_signups_controller.rb +19 -0
  221. data/app/controllers/workarea/storefront/errors_controller.rb +58 -0
  222. data/app/controllers/workarea/storefront/http_caching.rb +33 -0
  223. data/app/controllers/workarea/storefront/menus_controller.rb +25 -0
  224. data/app/controllers/workarea/storefront/order_lookup.rb +20 -0
  225. data/app/controllers/workarea/storefront/orders_controller.rb +29 -0
  226. data/app/controllers/workarea/storefront/pages_controller.rb +23 -0
  227. data/app/controllers/workarea/storefront/products_controller.rb +25 -0
  228. data/app/controllers/workarea/storefront/recent_views_controller.rb +51 -0
  229. data/app/controllers/workarea/storefront/recommendations_controller.rb +11 -0
  230. data/app/controllers/workarea/storefront/searches_controller.rb +47 -0
  231. data/app/controllers/workarea/storefront/sitemaps_controller.rb +11 -0
  232. data/app/controllers/workarea/storefront/style_guides_controller.rb +6 -0
  233. data/app/controllers/workarea/storefront/user_activity.rb +17 -0
  234. data/app/controllers/workarea/storefront/users/accounts_controller.rb +91 -0
  235. data/app/controllers/workarea/storefront/users/addresses_controller.rb +49 -0
  236. data/app/controllers/workarea/storefront/users/credit_cards_controller.rb +75 -0
  237. data/app/controllers/workarea/storefront/users/logins_controller.rb +47 -0
  238. data/app/controllers/workarea/storefront/users/orders_controller.rb +30 -0
  239. data/app/controllers/workarea/storefront/users/passwords_controller.rb +65 -0
  240. data/app/helpers/workarea/storefront/admin_helper.rb +13 -0
  241. data/app/helpers/workarea/storefront/analytics_helper.rb +230 -0
  242. data/app/helpers/workarea/storefront/application_helper.rb +79 -0
  243. data/app/helpers/workarea/storefront/content_helper.rb +71 -0
  244. data/app/helpers/workarea/storefront/credit_cards_helper.rb +38 -0
  245. data/app/helpers/workarea/storefront/favicons_helper.rb +25 -0
  246. data/app/helpers/workarea/storefront/locales_helper.rb +27 -0
  247. data/app/helpers/workarea/storefront/navigation_helper.rb +97 -0
  248. data/app/helpers/workarea/storefront/pagination_helper.rb +22 -0
  249. data/app/helpers/workarea/storefront/products_helper.rb +43 -0
  250. data/app/helpers/workarea/storefront/recent_views_helper.rb +9 -0
  251. data/app/helpers/workarea/storefront/users_helper.rb +9 -0
  252. data/app/mailers/workarea/storefront/account_mailer.rb +21 -0
  253. data/app/mailers/workarea/storefront/application_mailer.rb +23 -0
  254. data/app/mailers/workarea/storefront/fulfillment_mailer.rb +47 -0
  255. data/app/mailers/workarea/storefront/inquiry_mailer.rb +10 -0
  256. data/app/mailers/workarea/storefront/order_mailer.rb +31 -0
  257. data/app/mailers/workarea/storefront/payment_mailer.rb +23 -0
  258. data/app/mailers/workarea/storefront/transactional_mailer.rb +17 -0
  259. data/app/view_models/workarea/storefront/cart_item_view_model.rb +11 -0
  260. data/app/view_models/workarea/storefront/cart_recommendations_view_model.rb +13 -0
  261. data/app/view_models/workarea/storefront/cart_view_model.rb +95 -0
  262. data/app/view_models/workarea/storefront/category_view_model.rb +119 -0
  263. data/app/view_models/workarea/storefront/checkout/addresses_view_model.rb +73 -0
  264. data/app/view_models/workarea/storefront/checkout/confirmation_view_model.rb +14 -0
  265. data/app/view_models/workarea/storefront/checkout/payment_view_model.rb +103 -0
  266. data/app/view_models/workarea/storefront/checkout/shipping_view_model.rb +13 -0
  267. data/app/view_models/workarea/storefront/checkout/summary_view_model.rb +89 -0
  268. data/app/view_models/workarea/storefront/checkout_content.rb +11 -0
  269. data/app/view_models/workarea/storefront/content_block_view_model.rb +62 -0
  270. data/app/view_models/workarea/storefront/content_blocks/category_summary_view_model.rb +52 -0
  271. data/app/view_models/workarea/storefront/content_blocks/hero_view_model.rb +23 -0
  272. data/app/view_models/workarea/storefront/content_blocks/image_group_view_model.rb +24 -0
  273. data/app/view_models/workarea/storefront/content_blocks/navigation_view_model.rb +32 -0
  274. data/app/view_models/workarea/storefront/content_blocks/product_insights_view_model.rb +46 -0
  275. data/app/view_models/workarea/storefront/content_blocks/product_list_view_model.rb +20 -0
  276. data/app/view_models/workarea/storefront/content_blocks/taxonomy_view_model.rb +17 -0
  277. data/app/view_models/workarea/storefront/content_blocks/video_view_model.rb +58 -0
  278. data/app/view_models/workarea/storefront/content_view_model.rb +11 -0
  279. data/app/view_models/workarea/storefront/credit_card_view_model.rb +7 -0
  280. data/app/view_models/workarea/storefront/detail_page_recommendations_view_model.rb +13 -0
  281. data/app/view_models/workarea/storefront/display_content.rb +56 -0
  282. data/app/view_models/workarea/storefront/email_recommendations_view_model.rb +13 -0
  283. data/app/view_models/workarea/storefront/email_signups_view_model.rb +18 -0
  284. data/app/view_models/workarea/storefront/fulfillment_item_view_model.rb +13 -0
  285. data/app/view_models/workarea/storefront/inquiry_view_model.rb +22 -0
  286. data/app/view_models/workarea/storefront/inventory_status_view_model.rb +27 -0
  287. data/app/view_models/workarea/storefront/menu_view_model.rb +7 -0
  288. data/app/view_models/workarea/storefront/option_set_view_model.rb +59 -0
  289. data/app/view_models/workarea/storefront/order_item_view_model.rb +83 -0
  290. data/app/view_models/workarea/storefront/order_pricing.rb +37 -0
  291. data/app/view_models/workarea/storefront/order_view_model.rb +144 -0
  292. data/app/view_models/workarea/storefront/package_view_model.rb +20 -0
  293. data/app/view_models/workarea/storefront/page_view_model.rb +11 -0
  294. data/app/view_models/workarea/storefront/pagination.rb +42 -0
  295. data/app/view_models/workarea/storefront/personalized_recommendations_view_model.rb +13 -0
  296. data/app/view_models/workarea/storefront/product_browsing.rb +33 -0
  297. data/app/view_models/workarea/storefront/product_templates/option_selects_view_model.rb +7 -0
  298. data/app/view_models/workarea/storefront/product_templates/option_thumbnails_view_model.rb +15 -0
  299. data/app/view_models/workarea/storefront/product_view_model.rb +183 -0
  300. data/app/view_models/workarea/storefront/product_view_model/cache_key.rb +44 -0
  301. data/app/view_models/workarea/storefront/product_view_model/image_collection.rb +58 -0
  302. data/app/view_models/workarea/storefront/product_view_model/option.rb +24 -0
  303. data/app/view_models/workarea/storefront/product_view_model/option_set.rb +97 -0
  304. data/app/view_models/workarea/storefront/product_view_model/sku_options.rb +53 -0
  305. data/app/view_models/workarea/storefront/recommendations_view_model.rb +39 -0
  306. data/app/view_models/workarea/storefront/refund_view_model.rb +16 -0
  307. data/app/view_models/workarea/storefront/search_content.rb +19 -0
  308. data/app/view_models/workarea/storefront/search_customization_content.rb +15 -0
  309. data/app/view_models/workarea/storefront/search_customization_view_model.rb +7 -0
  310. data/app/view_models/workarea/storefront/search_suggestion_view_model.rb +87 -0
  311. data/app/view_models/workarea/storefront/search_view_model.rb +50 -0
  312. data/app/view_models/workarea/storefront/shipping_view_model.rb +27 -0
  313. data/app/view_models/workarea/storefront/taxon_lookup.rb +37 -0
  314. data/app/view_models/workarea/storefront/user_activity_view_model.rb +41 -0
  315. data/app/view_models/workarea/storefront/user_view_model.rb +55 -0
  316. data/app/views/layouts/workarea/storefront/application.html.haml +175 -0
  317. data/app/views/layouts/workarea/storefront/checkout.html.haml +89 -0
  318. data/app/views/layouts/workarea/storefront/content_preview.html.haml +46 -0
  319. data/app/views/layouts/workarea/storefront/email.html.haml +193 -0
  320. data/app/views/layouts/workarea/storefront/empty.html.haml +48 -0
  321. data/app/views/layouts/workarea/storefront/navigation.html.haml +48 -0
  322. data/app/views/workarea/storefront/account_mailer/creation.html.haml +15 -0
  323. data/app/views/workarea/storefront/account_mailer/password_reset.html.haml +12 -0
  324. data/app/views/workarea/storefront/cart_items/create.html.haml +71 -0
  325. data/app/views/workarea/storefront/carts/_pricing.html.haml +14 -0
  326. data/app/views/workarea/storefront/carts/show.html.haml +183 -0
  327. data/app/views/workarea/storefront/categories/show.html.haml +103 -0
  328. data/app/views/workarea/storefront/checkouts/_checkout_progress.html.haml +6 -0
  329. data/app/views/workarea/storefront/checkouts/_summary.html.haml +102 -0
  330. data/app/views/workarea/storefront/checkouts/addresses.html.haml +56 -0
  331. data/app/views/workarea/storefront/checkouts/confirmation.html.haml +37 -0
  332. data/app/views/workarea/storefront/checkouts/payment.html.haml +184 -0
  333. data/app/views/workarea/storefront/checkouts/shipping.html.haml +39 -0
  334. data/app/views/workarea/storefront/checkouts/summary.html.haml +1 -0
  335. data/app/views/workarea/storefront/contacts/show.html.haml +41 -0
  336. data/app/views/workarea/storefront/content_areas/show.html.haml +6 -0
  337. data/app/views/workarea/storefront/content_blocks/_button.html.haml +5 -0
  338. data/app/views/workarea/storefront/content_blocks/_category_summary.html.haml +15 -0
  339. data/app/views/workarea/storefront/content_blocks/_divider.html.haml +2 -0
  340. data/app/views/workarea/storefront/content_blocks/_hero.html.haml +3 -0
  341. data/app/views/workarea/storefront/content_blocks/_html.html.haml +1 -0
  342. data/app/views/workarea/storefront/content_blocks/_image.html.haml +2 -0
  343. data/app/views/workarea/storefront/content_blocks/_image_and_text.html.haml +4 -0
  344. data/app/views/workarea/storefront/content_blocks/_image_group.html.haml +10 -0
  345. data/app/views/workarea/storefront/content_blocks/_product_insights.html.haml +10 -0
  346. data/app/views/workarea/storefront/content_blocks/_product_list.html.haml +10 -0
  347. data/app/views/workarea/storefront/content_blocks/_quote.html.haml +4 -0
  348. data/app/views/workarea/storefront/content_blocks/_recommendations.html.haml +1 -0
  349. data/app/views/workarea/storefront/content_blocks/_social_networks.html.haml +17 -0
  350. data/app/views/workarea/storefront/content_blocks/_taxonomy.html.haml +27 -0
  351. data/app/views/workarea/storefront/content_blocks/_text.html.haml +1 -0
  352. data/app/views/workarea/storefront/content_blocks/_three_column_taxonomy.html.haml +28 -0
  353. data/app/views/workarea/storefront/content_blocks/_two_column_taxonomy.html.haml +28 -0
  354. data/app/views/workarea/storefront/content_blocks/_video.html.haml +2 -0
  355. data/app/views/workarea/storefront/content_blocks/_video_and_text.html.haml +4 -0
  356. data/app/views/workarea/storefront/content_blocks/show.html.haml +1 -0
  357. data/app/views/workarea/storefront/email_signups/show.html.haml +12 -0
  358. data/app/views/workarea/storefront/errors/show.html.haml +12 -0
  359. data/app/views/workarea/storefront/facets/_range.html.haml +11 -0
  360. data/app/views/workarea/storefront/facets/_terms.html.haml +11 -0
  361. data/app/views/workarea/storefront/favicons/_tags.html.haml +8 -0
  362. data/app/views/workarea/storefront/fulfillment_mailer/canceled.html.haml +34 -0
  363. data/app/views/workarea/storefront/fulfillment_mailer/shipped.html.haml +92 -0
  364. data/app/views/workarea/storefront/inquiry_mailer/created.html.haml +27 -0
  365. data/app/views/workarea/storefront/mailers/_recommendations.html.haml +22 -0
  366. data/app/views/workarea/storefront/menus/index.html.haml +12 -0
  367. data/app/views/workarea/storefront/menus/show.html.haml +6 -0
  368. data/app/views/workarea/storefront/order_mailer/_summary.html.haml +209 -0
  369. data/app/views/workarea/storefront/order_mailer/confirmation.html.haml +15 -0
  370. data/app/views/workarea/storefront/order_mailer/reminder.html.haml +34 -0
  371. data/app/views/workarea/storefront/order_mailer/tenders/_credit_card.html.haml +4 -0
  372. data/app/views/workarea/storefront/order_mailer/tenders/_store_credit.html.haml +2 -0
  373. data/app/views/workarea/storefront/orders/_summary.html.haml +274 -0
  374. data/app/views/workarea/storefront/orders/index.html.haml +40 -0
  375. data/app/views/workarea/storefront/orders/show.html.haml +16 -0
  376. data/app/views/workarea/storefront/orders/tenders/_credit_card.html.haml +9 -0
  377. data/app/views/workarea/storefront/orders/tenders/_store_credit.html.haml +6 -0
  378. data/app/views/workarea/storefront/pages/accessibility.html.haml +53 -0
  379. data/app/views/workarea/storefront/pages/browser_config.xml.builder +9 -0
  380. data/app/views/workarea/storefront/pages/home_page.html.haml +20 -0
  381. data/app/views/workarea/storefront/pages/robots.text.erb +17 -0
  382. data/app/views/workarea/storefront/pages/show.html.haml +28 -0
  383. data/app/views/workarea/storefront/pages/templates/_generic.html.haml +1 -0
  384. data/app/views/workarea/storefront/pages/templates/_test.html.haml +1 -0
  385. data/app/views/workarea/storefront/pages/web_manifest.json.jbuilder +11 -0
  386. data/app/views/workarea/storefront/payment_mailer/refunded.html.haml +13 -0
  387. data/app/views/workarea/storefront/products/_price.html.haml +4 -0
  388. data/app/views/workarea/storefront/products/_pricing.html.haml +34 -0
  389. data/app/views/workarea/storefront/products/_summary.html.haml +12 -0
  390. data/app/views/workarea/storefront/products/details.html.haml +2 -0
  391. data/app/views/workarea/storefront/products/show.html.haml +48 -0
  392. data/app/views/workarea/storefront/products/templates/_generic.html.haml +69 -0
  393. data/app/views/workarea/storefront/products/templates/_option_selects.html.haml +70 -0
  394. data/app/views/workarea/storefront/products/templates/_option_thumbnails.html.haml +76 -0
  395. data/app/views/workarea/storefront/products/templates/_test.html.haml +1 -0
  396. data/app/views/workarea/storefront/recent_views/aside.html.haml +25 -0
  397. data/app/views/workarea/storefront/recent_views/narrow.html.haml +25 -0
  398. data/app/views/workarea/storefront/recent_views/show.html.haml +27 -0
  399. data/app/views/workarea/storefront/recommendations/show.html.haml +12 -0
  400. data/app/views/workarea/storefront/searches/index.json.jbuilder +1 -0
  401. data/app/views/workarea/storefront/searches/no_results.html.haml +31 -0
  402. data/app/views/workarea/storefront/searches/show.html.haml +99 -0
  403. data/app/views/workarea/storefront/shared/_address_fields.html.haml +105 -0
  404. data/app/views/workarea/storefront/shared/_left_navigation.html.haml +24 -0
  405. data/app/views/workarea/storefront/shared/_message.html.haml +4 -0
  406. data/app/views/workarea/storefront/sitemaps/_pagination.html.haml +37 -0
  407. data/app/views/workarea/storefront/sitemaps/show.html.haml +36 -0
  408. data/app/views/workarea/storefront/style_guides/_navigation.html.haml +11 -0
  409. data/app/views/workarea/storefront/style_guides/base/_forms.html.haml +82 -0
  410. data/app/views/workarea/storefront/style_guides/base/_tables.html.haml +63 -0
  411. data/app/views/workarea/storefront/style_guides/components/_box.html.haml +26 -0
  412. data/app/views/workarea/storefront/style_guides/components/_breadcrumbs.html.haml +12 -0
  413. data/app/views/workarea/storefront/style_guides/components/_button.html.haml +50 -0
  414. data/app/views/workarea/storefront/style_guides/components/_button_content_block.html.haml +20 -0
  415. data/app/views/workarea/storefront/style_guides/components/_button_property.html.haml +83 -0
  416. data/app/views/workarea/storefront/style_guides/components/_category_summary_content_block.html.haml +29 -0
  417. data/app/views/workarea/storefront/style_guides/components/_data_card.html.haml +215 -0
  418. data/app/views/workarea/storefront/style_guides/components/_divider_content_block.html.haml +40 -0
  419. data/app/views/workarea/storefront/style_guides/components/_hero_content_block.html.haml +29 -0
  420. data/app/views/workarea/storefront/style_guides/components/_html_content_block.html.haml +10 -0
  421. data/app/views/workarea/storefront/style_guides/components/_image_and_text_content_block.html.haml +28 -0
  422. data/app/views/workarea/storefront/style_guides/components/_image_content_block.html.haml +38 -0
  423. data/app/views/workarea/storefront/style_guides/components/_image_group_content_block.html.haml +17 -0
  424. data/app/views/workarea/storefront/style_guides/components/_inline_form.html.haml +18 -0
  425. data/app/views/workarea/storefront/style_guides/components/_loading.html.haml +106 -0
  426. data/app/views/workarea/storefront/style_guides/components/_message.html.haml +45 -0
  427. data/app/views/workarea/storefront/style_guides/components/_mobile_filters.html.haml +17 -0
  428. data/app/views/workarea/storefront/style_guides/components/_pagination.html.haml +24 -0
  429. data/app/views/workarea/storefront/style_guides/components/_payment_icon.html.haml +19 -0
  430. data/app/views/workarea/storefront/style_guides/components/_personalized_recommendations_content_block.html.haml +32 -0
  431. data/app/views/workarea/storefront/style_guides/components/_product_insights_content_block.html.haml +32 -0
  432. data/app/views/workarea/storefront/style_guides/components/_product_list.html.haml +302 -0
  433. data/app/views/workarea/storefront/style_guides/components/_product_list_content_block.html.haml +32 -0
  434. data/app/views/workarea/storefront/style_guides/components/_product_prices.html.haml +79 -0
  435. data/app/views/workarea/storefront/style_guides/components/_product_summary.html.haml +35 -0
  436. data/app/views/workarea/storefront/style_guides/components/_property.html.haml +93 -0
  437. data/app/views/workarea/storefront/style_guides/components/_quote_content_block.html.haml +18 -0
  438. data/app/views/workarea/storefront/style_guides/components/_recommendations.html.haml +34 -0
  439. data/app/views/workarea/storefront/style_guides/components/_social_networks_content_block.html.haml +20 -0
  440. data/app/views/workarea/storefront/style_guides/components/_svg_icon.html.haml +51 -0
  441. data/app/views/workarea/storefront/style_guides/components/_table.html.haml +112 -0
  442. data/app/views/workarea/storefront/style_guides/components/_taxonomy_content_block.html.haml +205 -0
  443. data/app/views/workarea/storefront/style_guides/components/_text_box.html.haml +73 -0
  444. data/app/views/workarea/storefront/style_guides/components/_text_button.html.haml +26 -0
  445. data/app/views/workarea/storefront/style_guides/components/_text_content_block.html.haml +10 -0
  446. data/app/views/workarea/storefront/style_guides/components/_ui_autocomplete.html.haml +11 -0
  447. data/app/views/workarea/storefront/style_guides/components/_ui_dialog.html.haml +5 -0
  448. data/app/views/workarea/storefront/style_guides/components/_ui_dialog_image.html.haml +5 -0
  449. data/app/views/workarea/storefront/style_guides/components/_ui_helper_hidden_accessible.html.haml +6 -0
  450. data/app/views/workarea/storefront/style_guides/components/_value.html.haml +70 -0
  451. data/app/views/workarea/storefront/style_guides/components/_video_and_text_content_block.html.haml +21 -0
  452. data/app/views/workarea/storefront/style_guides/components/_video_content_block.html.haml +11 -0
  453. data/app/views/workarea/storefront/style_guides/index.html.haml +87 -0
  454. data/app/views/workarea/storefront/style_guides/objects/_button_reset.html.haml +17 -0
  455. data/app/views/workarea/storefront/style_guides/objects/_inline_list.html.haml +20 -0
  456. data/app/views/workarea/storefront/style_guides/objects/_list_reset.html.haml +20 -0
  457. data/app/views/workarea/storefront/style_guides/objects/_text_field_reset.html.haml +11 -0
  458. data/app/views/workarea/storefront/style_guides/settings/_color_variables.html.haml +21 -0
  459. data/app/views/workarea/storefront/style_guides/show.html.haml +10 -0
  460. data/app/views/workarea/storefront/style_guides/trumps/_break_word.html.haml +15 -0
  461. data/app/views/workarea/storefront/style_guides/trumps/_clearfix.html.haml +21 -0
  462. data/app/views/workarea/storefront/style_guides/trumps/_hidden.html.haml +97 -0
  463. data/app/views/workarea/storefront/style_guides/trumps/_hidden_if_js_enabled.html.haml +17 -0
  464. data/app/views/workarea/storefront/style_guides/trumps/_image_replacement.html.haml +13 -0
  465. data/app/views/workarea/storefront/style_guides/trumps/_truncate.html.haml +13 -0
  466. data/app/views/workarea/storefront/style_guides/trumps/_visible.html.haml +97 -0
  467. data/app/views/workarea/storefront/style_guides/trumps/_visually_hidden.html.haml +17 -0
  468. data/app/views/workarea/storefront/style_guides/typography/_align.html.haml +25 -0
  469. data/app/views/workarea/storefront/style_guides/typography/_fonts.html.haml +9 -0
  470. data/app/views/workarea/storefront/style_guides/typography/_headings.html.haml +25 -0
  471. data/app/views/workarea/storefront/style_guides/typography/_links.html.haml +13 -0
  472. data/app/views/workarea/storefront/style_guides/typography/_text.html.haml +23 -0
  473. data/app/views/workarea/storefront/users/accounts/edit.html.haml +42 -0
  474. data/app/views/workarea/storefront/users/accounts/show.html.haml +118 -0
  475. data/app/views/workarea/storefront/users/addresses/edit.html.haml +24 -0
  476. data/app/views/workarea/storefront/users/addresses/new.html.haml +24 -0
  477. data/app/views/workarea/storefront/users/credit_cards/edit.html.haml +65 -0
  478. data/app/views/workarea/storefront/users/credit_cards/new.html.haml +58 -0
  479. data/app/views/workarea/storefront/users/current_user.json.jbuilder +8 -0
  480. data/app/views/workarea/storefront/users/logins/new.html.haml +51 -0
  481. data/app/views/workarea/storefront/users/orders/_summary.html.haml +23 -0
  482. data/app/views/workarea/storefront/users/orders/index.html.haml +21 -0
  483. data/app/views/workarea/storefront/users/orders/show.html.haml +19 -0
  484. data/app/views/workarea/storefront/users/passwords/change.html.haml +21 -0
  485. data/app/views/workarea/storefront/users/passwords/edit.html.haml +13 -0
  486. data/app/views/workarea/storefront/users/passwords/new.html.haml +24 -0
  487. data/bin/rails +18 -0
  488. data/config/locales/en.yml +403 -0
  489. data/config/routes.rb +110 -0
  490. data/lib/workarea/mailer_previews/storefront/account_mailer_preview.rb +16 -0
  491. data/lib/workarea/mailer_previews/storefront/fulfillment_mailer_preview.rb +27 -0
  492. data/lib/workarea/mailer_previews/storefront/inquiry_mailer_preview.rb +9 -0
  493. data/lib/workarea/mailer_previews/storefront/order_mailer_preview.rb +16 -0
  494. data/lib/workarea/mailer_previews/storefront/payment_mailer_preview.rb +9 -0
  495. data/lib/workarea/storefront.rb +7 -0
  496. data/lib/workarea/storefront/engine.rb +8 -0
  497. data/test/dummy/README.rdoc +28 -0
  498. data/test/dummy/Rakefile +6 -0
  499. data/test/dummy/app/assets/images/.keep +0 -0
  500. data/test/dummy/app/assets/javascripts/application.js +13 -0
  501. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  502. data/test/dummy/app/controllers/application_controller.rb +5 -0
  503. data/test/dummy/app/controllers/concerns/.keep +0 -0
  504. data/test/dummy/app/helpers/application_helper.rb +2 -0
  505. data/test/dummy/app/mailers/.keep +0 -0
  506. data/test/dummy/app/models/.keep +0 -0
  507. data/test/dummy/app/models/concerns/.keep +0 -0
  508. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  509. data/test/dummy/bin/bundle +3 -0
  510. data/test/dummy/bin/rails +5 -0
  511. data/test/dummy/bin/rake +4 -0
  512. data/test/dummy/bin/setup +34 -0
  513. data/test/dummy/bin/update +29 -0
  514. data/test/dummy/config.ru +4 -0
  515. data/test/dummy/config/application.rb +22 -0
  516. data/test/dummy/config/boot.rb +5 -0
  517. data/test/dummy/config/cable.yml +9 -0
  518. data/test/dummy/config/environment.rb +5 -0
  519. data/test/dummy/config/environments/development.rb +51 -0
  520. data/test/dummy/config/environments/production.rb +86 -0
  521. data/test/dummy/config/environments/test.rb +43 -0
  522. data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
  523. data/test/dummy/config/initializers/assets.rb +11 -0
  524. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  525. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  526. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  527. data/test/dummy/config/initializers/inflections.rb +16 -0
  528. data/test/dummy/config/initializers/mime_types.rb +4 -0
  529. data/test/dummy/config/initializers/new_framework_defaults.rb +17 -0
  530. data/test/dummy/config/initializers/session_store.rb +3 -0
  531. data/test/dummy/config/initializers/workarea.rb +8 -0
  532. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  533. data/test/dummy/config/locales/en.yml +23 -0
  534. data/test/dummy/config/puma.rb +47 -0
  535. data/test/dummy/config/routes.rb +8 -0
  536. data/test/dummy/config/secrets.yml +22 -0
  537. data/test/dummy/config/spring.rb +6 -0
  538. data/test/dummy/db/seeds.rb +10 -0
  539. data/test/dummy/lib/assets/.keep +0 -0
  540. data/test/dummy/log/.keep +0 -0
  541. data/test/dummy/public/404.html +67 -0
  542. data/test/dummy/public/422.html +67 -0
  543. data/test/dummy/public/500.html +66 -0
  544. data/test/dummy/public/favicon.ico +1 -0
  545. data/test/helpers/workarea/storefront/application_helper_test.rb +25 -0
  546. data/test/helpers/workarea/storefront/content_helper_test.rb +50 -0
  547. data/test/helpers/workarea/storefront/credit_cards_helper_test.rb +29 -0
  548. data/test/helpers/workarea/storefront/navigation_helper_test.rb +85 -0
  549. data/test/helpers/workarea/storefront/pagination_helper_test.rb +27 -0
  550. data/test/helpers/workarea/storefront/products_helper_test.rb +43 -0
  551. data/test/integration/workarea/storefront/accounts_integration_test.rb +128 -0
  552. data/test/integration/workarea/storefront/analytics_integration_test.rb +32 -0
  553. data/test/integration/workarea/storefront/browse_images_integration_test.rb +71 -0
  554. data/test/integration/workarea/storefront/cart_integration_test.rb +109 -0
  555. data/test/integration/workarea/storefront/cart_items_integration_test.rb +330 -0
  556. data/test/integration/workarea/storefront/categories_integration_test.rb +21 -0
  557. data/test/integration/workarea/storefront/checkout_side_effects_integration_test.rb +214 -0
  558. data/test/integration/workarea/storefront/checkout_with_pricing_override_integration_test.rb +168 -0
  559. data/test/integration/workarea/storefront/checkouts_integration_test.rb +267 -0
  560. data/test/integration/workarea/storefront/contact_form_integration_test.rb +33 -0
  561. data/test/integration/workarea/storefront/content_blocks_integration_test.rb +71 -0
  562. data/test/integration/workarea/storefront/current_checkout_integration_test.rb +30 -0
  563. data/test/integration/workarea/storefront/current_user_integration_test.rb +28 -0
  564. data/test/integration/workarea/storefront/email_signups_integration_test.rb +25 -0
  565. data/test/integration/workarea/storefront/errors_integration_test.rb +137 -0
  566. data/test/integration/workarea/storefront/favicons_integration_test.rb +16 -0
  567. data/test/integration/workarea/storefront/guest_browsing_integration_test.rb +24 -0
  568. data/test/integration/workarea/storefront/head_tags_integration_test.rb +127 -0
  569. data/test/integration/workarea/storefront/health_check_integration_test.rb +13 -0
  570. data/test/integration/workarea/storefront/host_integration_test.rb +32 -0
  571. data/test/integration/workarea/storefront/impersonations_integration_test.rb +128 -0
  572. data/test/integration/workarea/storefront/layout_integration_test.rb +29 -0
  573. data/test/integration/workarea/storefront/login_integration_test.rb +157 -0
  574. data/test/integration/workarea/storefront/order_data_integration_test.rb +264 -0
  575. data/test/integration/workarea/storefront/order_lookup_integration_test.rb +117 -0
  576. data/test/integration/workarea/storefront/pages_integration_test.rb +56 -0
  577. data/test/integration/workarea/storefront/place_order_integration_test.rb +140 -0
  578. data/test/integration/workarea/storefront/placing_order_integration_test.rb +92 -0
  579. data/test/integration/workarea/storefront/products_integration_test.rb +36 -0
  580. data/test/integration/workarea/storefront/search_integration_test.rb +128 -0
  581. data/test/integration/workarea/storefront/store_credit_integration_test.rb +121 -0
  582. data/test/integration/workarea/storefront/users/addresses_integration_test.rb +136 -0
  583. data/test/integration/workarea/storefront/users/credit_cards_integration_test.rb +96 -0
  584. data/test/integration/workarea/storefront/users/orders_integration_test.rb +15 -0
  585. data/test/integration/workarea/storefront/users/passwords_integration_test.rb +48 -0
  586. data/test/javascripts/address_region_fields_spec.js +46 -0
  587. data/test/javascripts/analytics_spec.js +91 -0
  588. data/test/javascripts/authenticity_token_spec.js +26 -0
  589. data/test/javascripts/back_to_top_button_spec.js +41 -0
  590. data/test/javascripts/break_points_spec.js +41 -0
  591. data/test/javascripts/checkout_primary_payments_spec.js +32 -0
  592. data/test/javascripts/dialog_spec.js +347 -0
  593. data/test/javascripts/fixtures/address_region_fields.html.haml +17 -0
  594. data/test/javascripts/fixtures/analytics_add_to_cart_form.html.haml +12 -0
  595. data/test/javascripts/fixtures/analytics_product_click.html.haml +7 -0
  596. data/test/javascripts/fixtures/authenticity_token.html.haml +2 -0
  597. data/test/javascripts/fixtures/back_to_top_button.html.haml +2 -0
  598. data/test/javascripts/fixtures/checkout_primary_payments.html.haml +12 -0
  599. data/test/javascripts/fixtures/dialog.html.haml +16 -0
  600. data/test/javascripts/fixtures/form.html.haml +10 -0
  601. data/test/javascripts/fixtures/optional_fields.html.haml +4 -0
  602. data/test/javascripts/fixtures/popup_button.html.haml +1 -0
  603. data/test/javascripts/fixtures/product_details_sku_select.html.haml +8 -0
  604. data/test/javascripts/fixtures/product_details_sku_select_without_sku_option_details.html.haml +7 -0
  605. data/test/javascripts/fixtures/scroll_to_element.html.haml +19 -0
  606. data/test/javascripts/forms_spec.js +85 -0
  607. data/test/javascripts/messages_spec.js +50 -0
  608. data/test/javascripts/optional_fields_spec.js +20 -0
  609. data/test/javascripts/popup_button_spec.js +19 -0
  610. data/test/javascripts/product_details_sku_selects_spec.js +154 -0
  611. data/test/javascripts/scroll_to_buttons_spec.js +46 -0
  612. data/test/javascripts/spec_helper.js +2 -0
  613. data/test/javascripts/traffic_referrer_spec.js +33 -0
  614. data/test/mailers/workarea/storefront/transactional_mailer_test.rb +29 -0
  615. data/test/performance/workarea/storefront/cart_performance_test.rb +52 -0
  616. data/test/performance/workarea/storefront/categories_performance_test.rb +26 -0
  617. data/test/performance/workarea/storefront/pages_performance_test.rb +31 -0
  618. data/test/performance/workarea/storefront/products_performance_test.rb +19 -0
  619. data/test/performance/workarea/storefront/search_performance_test.rb +27 -0
  620. data/test/system/workarea/storefront/accounts_system_test.rb +97 -0
  621. data/test/system/workarea/storefront/addresses_system_test.rb +60 -0
  622. data/test/system/workarea/storefront/analytics_system_test.rb +725 -0
  623. data/test/system/workarea/storefront/cart_items_system_test.rb +117 -0
  624. data/test/system/workarea/storefront/cart_system_test.rb +93 -0
  625. data/test/system/workarea/storefront/categories_system_test.rb +258 -0
  626. data/test/system/workarea/storefront/content_system_test.rb +114 -0
  627. data/test/system/workarea/storefront/credit_cards_system_test.rb +77 -0
  628. data/test/system/workarea/storefront/customer_service_system_test.rb +21 -0
  629. data/test/system/workarea/storefront/digital_products_system_test.rb +140 -0
  630. data/test/system/workarea/storefront/discounting_multiple_system_test.rb +87 -0
  631. data/test/system/workarea/storefront/discounting_system_test.rb +292 -0
  632. data/test/system/workarea/storefront/email_signup_system_test.rb +19 -0
  633. data/test/system/workarea/storefront/fulfillment_system_test.rb +78 -0
  634. data/test/system/workarea/storefront/guest_checkout_system_test.rb +426 -0
  635. data/test/system/workarea/storefront/logged_in_checkout_system_test.rb +336 -0
  636. data/test/system/workarea/storefront/login_system_test.rb +157 -0
  637. data/test/system/workarea/storefront/navigation_system_test.rb +73 -0
  638. data/test/system/workarea/storefront/no_js_system_test.rb +84 -0
  639. data/test/system/workarea/storefront/orders_system_test.rb +84 -0
  640. data/test/system/workarea/storefront/pages_system_test.rb +61 -0
  641. data/test/system/workarea/storefront/pagination_system_test.rb +129 -0
  642. data/test/system/workarea/storefront/passwords_system_test.rb +158 -0
  643. data/test/system/workarea/storefront/pricing_overrides_system_test.rb +45 -0
  644. data/test/system/workarea/storefront/products_system_test.rb +241 -0
  645. data/test/system/workarea/storefront/recommendations_system_test.rb +85 -0
  646. data/test/system/workarea/storefront/release_browsing_system_test.rb +73 -0
  647. data/test/system/workarea/storefront/search_system_test.rb +267 -0
  648. data/test/system/workarea/storefront/sitemap_system_test.rb +57 -0
  649. data/test/system/workarea/storefront/store_credit_system_test.rb +166 -0
  650. data/test/system/workarea/storefront/style_guides_system_test.rb +16 -0
  651. data/test/teaspoon_env.rb +10 -0
  652. data/test/test_helper.rb +10 -0
  653. data/test/view_models/workarea/storefront/cart_view_model_test.rb +36 -0
  654. data/test/view_models/workarea/storefront/category_view_model_test.rb +59 -0
  655. data/test/view_models/workarea/storefront/checkout/addresses_view_model_test.rb +16 -0
  656. data/test/view_models/workarea/storefront/checkout/payment_view_model_test.rb +76 -0
  657. data/test/view_models/workarea/storefront/checkout/summary_view_model_test.rb +29 -0
  658. data/test/view_models/workarea/storefront/content_block_view_model_test.rb +86 -0
  659. data/test/view_models/workarea/storefront/content_blocks/category_summary_view_model_test.rb +35 -0
  660. data/test/view_models/workarea/storefront/content_blocks/navigation_view_model_test.rb +53 -0
  661. data/test/view_models/workarea/storefront/content_blocks/product_insights_view_model_test.rb +73 -0
  662. data/test/view_models/workarea/storefront/content_blocks/product_list_view_model_test.rb +24 -0
  663. data/test/view_models/workarea/storefront/content_blocks/taxonomy_view_model_test.rb +81 -0
  664. data/test/view_models/workarea/storefront/content_blocks/video_view_model_test.rb +89 -0
  665. data/test/view_models/workarea/storefront/display_content_test.rb +105 -0
  666. data/test/view_models/workarea/storefront/fulfillment_item_view_model_test.rb +18 -0
  667. data/test/view_models/workarea/storefront/inventory_status_view_model_test.rb +39 -0
  668. data/test/view_models/workarea/storefront/option_set_view_model_test.rb +158 -0
  669. data/test/view_models/workarea/storefront/order_item_view_model_test.rb +49 -0
  670. data/test/view_models/workarea/storefront/order_view_model_test.rb +84 -0
  671. data/test/view_models/workarea/storefront/package_view_model_test.rb +32 -0
  672. data/test/view_models/workarea/storefront/product_templates/option_thumbnails_view_model_test.rb +25 -0
  673. data/test/view_models/workarea/storefront/product_view_model/cache_key_test.rb +16 -0
  674. data/test/view_models/workarea/storefront/product_view_model/image_collection_test.rb +93 -0
  675. data/test/view_models/workarea/storefront/product_view_model/option_set_test.rb +379 -0
  676. data/test/view_models/workarea/storefront/product_view_model/sku_options_test.rb +35 -0
  677. data/test/view_models/workarea/storefront/product_view_model_test.rb +235 -0
  678. data/test/view_models/workarea/storefront/recommendations_view_model_test.rb +62 -0
  679. data/test/view_models/workarea/storefront/refund_view_model_test.rb +23 -0
  680. data/test/view_models/workarea/storefront/search_suggestion_view_model_test.rb +42 -0
  681. data/test/view_models/workarea/storefront/search_view_model_test.rb +57 -0
  682. data/test/view_models/workarea/storefront/shipping_view_model_test.rb +29 -0
  683. data/test/view_models/workarea/storefront/user_activity_view_model_test.rb +65 -0
  684. data/test/view_models/workarea/storefront/user_view_model_test.rb +35 -0
  685. data/workarea-storefront.gemspec +16 -0
  686. metadata +742 -0
@@ -0,0 +1,29 @@
1
+ require 'test_helper'
2
+
3
+ module Workarea
4
+ module Storefront
5
+ class ShippingViewModelTest < TestCase
6
+ def test_items
7
+ order = create_order(
8
+ items: [
9
+ { product_id: 'PRODUCT', sku: 'SKU1', quantity: 1 },
10
+ { product_id: 'PRODUCT', sku: 'SKU2', quantity: 2 }
11
+ ]
12
+ )
13
+
14
+ shipping = create_shipping(
15
+ order_id: order.id,
16
+ quantities: { order.items.second.id => 1 }
17
+ )
18
+
19
+ view_model = ShippingViewModel.wrap(shipping)
20
+
21
+ assert_equal(1, view_model.items.size)
22
+ assert(view_model.items.first.is_a?(OrderItemViewModel))
23
+ assert_equal('PRODUCT', view_model.items.first.product_id)
24
+ assert_equal('SKU2', view_model.items.first.sku)
25
+ assert_equal(1, view_model.items.first.quantity)
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,65 @@
1
+ require 'test_helper'
2
+
3
+ module Workarea
4
+ module Storefront
5
+ class UserActivityViewModelTest < TestCase
6
+
7
+ setup :set_display_count
8
+ teardown :reset_display_count
9
+
10
+ def set_display_count
11
+ @tmp = Workarea.config.user_activity_display_size
12
+ Workarea.config.user_activity_display_size = 2
13
+ end
14
+
15
+ def reset_display_count
16
+ Workarea.config.user_activity_display_size = @tmp
17
+ end
18
+
19
+ def test_products
20
+ product_one = create_product
21
+ product_two = create_product
22
+ product_three = create_product
23
+
24
+ product_ids = [product_one.id, product_one.id, product_two.id, product_three.id]
25
+ user_activity = Recommendation::UserActivity.new(product_ids: product_ids)
26
+ view_model = UserActivityViewModel.new(user_activity)
27
+
28
+ assert_equal(2, view_model.products.length)
29
+ assert_equal(product_one, view_model.products.first.model)
30
+ assert_equal(product_two, view_model.products.second.model)
31
+
32
+ product_two.update_attributes!(active: false)
33
+
34
+ product_ids = [product_one.id, product_two.id]
35
+ user_activity = Recommendation::UserActivity.new(product_ids: product_ids)
36
+ view_model = UserActivityViewModel.new(user_activity)
37
+
38
+ assert_equal(1, view_model.products.length)
39
+ assert_equal(product_one, view_model.products.first.model)
40
+ end
41
+
42
+ def test_categories
43
+ one = create_category
44
+ two = create_category
45
+ three = create_category
46
+ user_activity =
47
+ Recommendation::UserActivity.new(category_ids: [one.id, one.id, two.id, three.id])
48
+
49
+ view_model = UserActivityViewModel.new(user_activity)
50
+
51
+ assert_equal(2, view_model.categories.length)
52
+ assert_equal(one.id, view_model.categories.first.id)
53
+ assert_equal(two.id, view_model.categories.second.id)
54
+ end
55
+
56
+ def test_searches
57
+ searches = %w(one one two three)
58
+ user_activity = Recommendation::UserActivity.new(searches: searches)
59
+ view_model = UserActivityViewModel.new(user_activity)
60
+
61
+ assert_equal(%w(one two), view_model.searches)
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,35 @@
1
+ require 'test_helper'
2
+
3
+ module Workarea
4
+ module Storefront
5
+ class UserViewModelTest < TestCase
6
+ def test_has_default_addresses
7
+ user = User.new
8
+ view_model = Storefront::UserViewModel.new(user)
9
+ refute(view_model.has_default_addresses?)
10
+
11
+ user.addresses.build
12
+ assert(view_model.has_default_addresses?)
13
+ end
14
+
15
+ def test_default_credit_card_gets_the_default_card_from_payment
16
+ user = create_user
17
+ profile = Payment::Profile.lookup(PaymentReference.new(user))
18
+ card = create_saved_credit_card(profile: profile)
19
+
20
+ view_model = Storefront::UserViewModel.new(user)
21
+ assert_equal(card, view_model.default_credit_card)
22
+ end
23
+
24
+ def test_email_signup
25
+ user = create_user
26
+
27
+ Email.signup(user.email)
28
+ assert(UserViewModel.wrap(user).email_signup?)
29
+
30
+ Email.unsignup(user.email)
31
+ refute(UserViewModel.wrap(user).email_signup?)
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,16 @@
1
+ require File.expand_path('../../core/lib/workarea/version', __FILE__)
2
+
3
+ # Describe your gem and declare its dependencies:
4
+ Gem::Specification.new do |s|
5
+ s.name = "workarea-storefront"
6
+ s.version = Workarea::VERSION::STRING
7
+ s.authors = ["Ben Crouse"]
8
+ s.email = ["bcrouse@workarea.com"]
9
+ s.homepage = "http://www.workarea.com"
10
+ s.license = 'Business Software License'
11
+ s.summary = "Storefront for the Workarea Commerce Platform"
12
+ s.description = "Provides user-facing ecommerce storefront functionality for the Workarea Commerce Platform."
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.add_dependency 'workarea-core', Workarea::VERSION::STRING
16
+ end
metadata ADDED
@@ -0,0 +1,742 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: workarea-storefront
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.4.12
5
+ platform: ruby
6
+ authors:
7
+ - Ben Crouse
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-08-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: workarea-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 3.4.12
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 3.4.12
27
+ description: Provides user-facing ecommerce storefront functionality for the Workarea
28
+ Commerce Platform.
29
+ email:
30
+ - bcrouse@workarea.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - LICENSE
36
+ - README.md
37
+ - Rakefile
38
+ - app/assets/fonts/.keep
39
+ - app/assets/images/workarea/core/test.jpg
40
+ - app/assets/images/workarea/storefront/default_card.svg
41
+ - app/assets/images/workarea/storefront/dialog_close.svg
42
+ - app/assets/images/workarea/storefront/email/banner.png
43
+ - app/assets/images/workarea/storefront/icons/facebook.svg
44
+ - app/assets/images/workarea/storefront/icons/google_plus.svg
45
+ - app/assets/images/workarea/storefront/icons/menu.svg
46
+ - app/assets/images/workarea/storefront/icons/pinterest.svg
47
+ - app/assets/images/workarea/storefront/icons/twitter.svg
48
+ - app/assets/images/workarea/storefront/logo.png
49
+ - app/assets/images/workarea/storefront/message_dismiss.svg
50
+ - app/assets/images/workarea/storefront/message_error.svg
51
+ - app/assets/images/workarea/storefront/message_info.svg
52
+ - app/assets/images/workarea/storefront/message_success.svg
53
+ - app/assets/images/workarea/storefront/message_warning.svg
54
+ - app/assets/images/workarea/storefront/payment_icons/american_express.svg
55
+ - app/assets/images/workarea/storefront/payment_icons/diner_s_club.svg
56
+ - app/assets/images/workarea/storefront/payment_icons/discover.svg
57
+ - app/assets/images/workarea/storefront/payment_icons/mastercard.svg
58
+ - app/assets/images/workarea/storefront/payment_icons/visa.svg
59
+ - app/assets/images/workarea/storefront/payment_method_icons.png
60
+ - app/assets/images/workarea/storefront/style_guide_light_banner.png
61
+ - app/assets/images/workarea/storefront/style_guide_product.jpg
62
+ - app/assets/javascripts/jquery_ui/storefront/categorized_autocomplete.js
63
+ - app/assets/javascripts/workarea/storefront/application.js.erb
64
+ - app/assets/javascripts/workarea/storefront/config.js.erb
65
+ - app/assets/javascripts/workarea/storefront/head.js.erb
66
+ - app/assets/javascripts/workarea/storefront/modules/address_region_fields.js
67
+ - app/assets/javascripts/workarea/storefront/modules/admin_toolbar.js
68
+ - app/assets/javascripts/workarea/storefront/modules/alternate_image_buttons.js
69
+ - app/assets/javascripts/workarea/storefront/modules/analytics.js
70
+ - app/assets/javascripts/workarea/storefront/modules/authenticity_token.js
71
+ - app/assets/javascripts/workarea/storefront/modules/back_to_top_button.js
72
+ - app/assets/javascripts/workarea/storefront/modules/break_points.js
73
+ - app/assets/javascripts/workarea/storefront/modules/cart_count.js
74
+ - app/assets/javascripts/workarea/storefront/modules/checkout_addresses_forms.js
75
+ - app/assets/javascripts/workarea/storefront/modules/checkout_primary_payments.js
76
+ - app/assets/javascripts/workarea/storefront/modules/checkout_shipping_services.js
77
+ - app/assets/javascripts/workarea/storefront/modules/current_user.js
78
+ - app/assets/javascripts/workarea/storefront/modules/dialog.js
79
+ - app/assets/javascripts/workarea/storefront/modules/dialog_buttons.js
80
+ - app/assets/javascripts/workarea/storefront/modules/dialog_close_buttons.js
81
+ - app/assets/javascripts/workarea/storefront/modules/dialog_forms.js
82
+ - app/assets/javascripts/workarea/storefront/modules/forms.js
83
+ - app/assets/javascripts/workarea/storefront/modules/loading.js
84
+ - app/assets/javascripts/workarea/storefront/modules/log_out_link_placeholders.js
85
+ - app/assets/javascripts/workarea/storefront/modules/messages.js
86
+ - app/assets/javascripts/workarea/storefront/modules/mobile_filter_buttons.js
87
+ - app/assets/javascripts/workarea/storefront/modules/mobile_nav_button.js
88
+ - app/assets/javascripts/workarea/storefront/modules/option_buttons.js
89
+ - app/assets/javascripts/workarea/storefront/modules/optional_fields.js
90
+ - app/assets/javascripts/workarea/storefront/modules/pagination.js
91
+ - app/assets/javascripts/workarea/storefront/modules/popup_buttons.js
92
+ - app/assets/javascripts/workarea/storefront/modules/primary_nav_content.js
93
+ - app/assets/javascripts/workarea/storefront/modules/product_details_sku_selects.js
94
+ - app/assets/javascripts/workarea/storefront/modules/recent_views.js
95
+ - app/assets/javascripts/workarea/storefront/modules/recommendations_placeholders.js
96
+ - app/assets/javascripts/workarea/storefront/modules/scroll_to_buttons.js
97
+ - app/assets/javascripts/workarea/storefront/modules/search_fields.js
98
+ - app/assets/javascripts/workarea/storefront/modules/single_submit_forms.js
99
+ - app/assets/javascripts/workarea/storefront/modules/traffic_referrer.js
100
+ - app/assets/javascripts/workarea/storefront/modules/workarea_analytics.js
101
+ - app/assets/javascripts/workarea/storefront/routes.js.erb
102
+ - app/assets/javascripts/workarea/storefront/serviceworkers/pwa_cache.js.erb
103
+ - app/assets/javascripts/workarea/storefront/serviceworkers/register_pwa_cache.js
104
+ - app/assets/javascripts/workarea/storefront/templates/authenticity_token.jst.ejs
105
+ - app/assets/javascripts/workarea/storefront/templates/back_to_top_button.jst.ejs
106
+ - app/assets/javascripts/workarea/storefront/templates/button.jst.ejs
107
+ - app/assets/javascripts/workarea/storefront/templates/loading.jst.ejs
108
+ - app/assets/javascripts/workarea/storefront/templates/log_out_link.jst.ejs
109
+ - app/assets/javascripts/workarea/storefront/templates/message.jst.ejs
110
+ - app/assets/javascripts/workarea/storefront/templates/message_dismiss_action.jst.ejs
111
+ - app/assets/javascripts/workarea/storefront/templates/mobile_filters_nav_close_button.jst.ejs
112
+ - app/assets/javascripts/workarea/storefront/templates/optional_field_prompt.jst.ejs
113
+ - app/assets/javascripts/workarea/storefront/templates/page_header_cart_count.jst.ejs
114
+ - app/assets/javascripts/workarea/storefront/templates/pagination_button.jst.ejs
115
+ - app/assets/javascripts/workarea/storefront/templates/same_as_shipping_button_property.jst.ejs
116
+ - app/assets/javascripts/workarea/storefront/templates/saved_addresses_property.jst.ejs
117
+ - app/assets/javascripts/workarea/storefront/templates/ui_menu_heading.jst.ejs
118
+ - app/assets/javascripts/workarea/storefront/templates/ui_menu_item.jst.ejs
119
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_autocomplete.scss
120
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_dialog.scss
121
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_helper_hidden_accessible.scss
122
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_menu.scss
123
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_state_focus.scss
124
+ - app/assets/stylesheets/jquery_ui/storefront/_ui_widget_overlay.scss
125
+ - app/assets/stylesheets/workarea/storefront/application.scss.erb
126
+ - app/assets/stylesheets/workarea/storefront/base/_forms.scss
127
+ - app/assets/stylesheets/workarea/storefront/base/_images.scss
128
+ - app/assets/stylesheets/workarea/storefront/base/_lists.scss
129
+ - app/assets/stylesheets/workarea/storefront/base/_page.scss
130
+ - app/assets/stylesheets/workarea/storefront/base/_tables.scss
131
+ - app/assets/stylesheets/workarea/storefront/components/_admin_toolbar.scss
132
+ - app/assets/stylesheets/workarea/storefront/components/_back_to_top_button.scss
133
+ - app/assets/stylesheets/workarea/storefront/components/_box.scss
134
+ - app/assets/stylesheets/workarea/storefront/components/_breadcrumbs.scss
135
+ - app/assets/stylesheets/workarea/storefront/components/_button.scss
136
+ - app/assets/stylesheets/workarea/storefront/components/_button_content_block.scss
137
+ - app/assets/stylesheets/workarea/storefront/components/_button_property.scss
138
+ - app/assets/stylesheets/workarea/storefront/components/_cart.scss
139
+ - app/assets/stylesheets/workarea/storefront/components/_category_summary_content_block.scss
140
+ - app/assets/stylesheets/workarea/storefront/components/_checkout_addresses.scss
141
+ - app/assets/stylesheets/workarea/storefront/components/_checkout_payment.scss
142
+ - app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
143
+ - app/assets/stylesheets/workarea/storefront/components/_checkout_shipping.scss
144
+ - app/assets/stylesheets/workarea/storefront/components/_checkout_step_summary.scss
145
+ - app/assets/stylesheets/workarea/storefront/components/_content_block.scss
146
+ - app/assets/stylesheets/workarea/storefront/components/_data_card.scss
147
+ - app/assets/stylesheets/workarea/storefront/components/_divider_content_block.scss
148
+ - app/assets/stylesheets/workarea/storefront/components/_email_signup.scss
149
+ - app/assets/stylesheets/workarea/storefront/components/_hero_content_block.scss
150
+ - app/assets/stylesheets/workarea/storefront/components/_html_content_block.scss
151
+ - app/assets/stylesheets/workarea/storefront/components/_image_and_text_content_block.scss
152
+ - app/assets/stylesheets/workarea/storefront/components/_image_content_block.scss
153
+ - app/assets/stylesheets/workarea/storefront/components/_image_group_content_block.scss
154
+ - app/assets/stylesheets/workarea/storefront/components/_inline_form.scss
155
+ - app/assets/stylesheets/workarea/storefront/components/_loading.scss
156
+ - app/assets/stylesheets/workarea/storefront/components/_message.scss
157
+ - app/assets/stylesheets/workarea/storefront/components/_mobile_filters.scss
158
+ - app/assets/stylesheets/workarea/storefront/components/_mobile_filters_nav.scss
159
+ - app/assets/stylesheets/workarea/storefront/components/_mobile_nav.scss
160
+ - app/assets/stylesheets/workarea/storefront/components/_option_button.scss
161
+ - app/assets/stylesheets/workarea/storefront/components/_order_help_menu.scss
162
+ - app/assets/stylesheets/workarea/storefront/components/_order_summary.scss
163
+ - app/assets/stylesheets/workarea/storefront/components/_page_container.scss
164
+ - app/assets/stylesheets/workarea/storefront/components/_page_content.scss
165
+ - app/assets/stylesheets/workarea/storefront/components/_page_footer.scss
166
+ - app/assets/stylesheets/workarea/storefront/components/_page_header.scss
167
+ - app/assets/stylesheets/workarea/storefront/components/_page_messages.scss
168
+ - app/assets/stylesheets/workarea/storefront/components/_pagination.scss
169
+ - app/assets/stylesheets/workarea/storefront/components/_payment_icon.scss
170
+ - app/assets/stylesheets/workarea/storefront/components/_personalized_recommendations_content_block.scss
171
+ - app/assets/stylesheets/workarea/storefront/components/_primary_nav.scss
172
+ - app/assets/stylesheets/workarea/storefront/components/_product_detail_container.scss
173
+ - app/assets/stylesheets/workarea/storefront/components/_product_details.scss
174
+ - app/assets/stylesheets/workarea/storefront/components/_product_insights_content_block.scss
175
+ - app/assets/stylesheets/workarea/storefront/components/_product_list.scss
176
+ - app/assets/stylesheets/workarea/storefront/components/_product_list_content_block.scss
177
+ - app/assets/stylesheets/workarea/storefront/components/_product_prices.scss
178
+ - app/assets/stylesheets/workarea/storefront/components/_product_summary.scss
179
+ - app/assets/stylesheets/workarea/storefront/components/_property.scss
180
+ - app/assets/stylesheets/workarea/storefront/components/_quote_content_block.scss
181
+ - app/assets/stylesheets/workarea/storefront/components/_recent_views.scss
182
+ - app/assets/stylesheets/workarea/storefront/components/_recommendations.scss
183
+ - app/assets/stylesheets/workarea/storefront/components/_result_filters.scss
184
+ - app/assets/stylesheets/workarea/storefront/components/_search_no_results.scss
185
+ - app/assets/stylesheets/workarea/storefront/components/_search_results.scss
186
+ - app/assets/stylesheets/workarea/storefront/components/_secondary_nav.scss
187
+ - app/assets/stylesheets/workarea/storefront/components/_sitemap.scss
188
+ - app/assets/stylesheets/workarea/storefront/components/_sitemap_pagination.scss
189
+ - app/assets/stylesheets/workarea/storefront/components/_social_networks_content_block.scss
190
+ - app/assets/stylesheets/workarea/storefront/components/_style_guide.scss
191
+ - app/assets/stylesheets/workarea/storefront/components/_svg_icon.scss
192
+ - app/assets/stylesheets/workarea/storefront/components/_table.scss
193
+ - app/assets/stylesheets/workarea/storefront/components/_taxonomy_content_block.scss
194
+ - app/assets/stylesheets/workarea/storefront/components/_text_box.scss
195
+ - app/assets/stylesheets/workarea/storefront/components/_text_button.scss
196
+ - app/assets/stylesheets/workarea/storefront/components/_text_content_block.scss
197
+ - app/assets/stylesheets/workarea/storefront/components/_value.scss
198
+ - app/assets/stylesheets/workarea/storefront/components/_video_and_text_content_block.scss
199
+ - app/assets/stylesheets/workarea/storefront/components/_video_content_block.scss
200
+ - app/assets/stylesheets/workarea/storefront/components/_view.scss
201
+ - app/assets/stylesheets/workarea/storefront/email.scss
202
+ - app/assets/stylesheets/workarea/storefront/email/_base.scss
203
+ - app/assets/stylesheets/workarea/storefront/email/_components.scss
204
+ - app/assets/stylesheets/workarea/storefront/email/_helpers.scss
205
+ - app/assets/stylesheets/workarea/storefront/email/_settings.scss
206
+ - app/assets/stylesheets/workarea/storefront/generic/_box_sizing.scss
207
+ - app/assets/stylesheets/workarea/storefront/generic/_fonts.scss
208
+ - app/assets/stylesheets/workarea/storefront/generic/_reset.scss
209
+ - app/assets/stylesheets/workarea/storefront/objects/_button_reset.scss
210
+ - app/assets/stylesheets/workarea/storefront/objects/_content_preview_visibility.scss
211
+ - app/assets/stylesheets/workarea/storefront/objects/_content_wrapper.scss
212
+ - app/assets/stylesheets/workarea/storefront/objects/_inline_list.scss
213
+ - app/assets/stylesheets/workarea/storefront/objects/_list_reset.scss
214
+ - app/assets/stylesheets/workarea/storefront/objects/_text_field_reset.scss
215
+ - app/assets/stylesheets/workarea/storefront/settings/_breakpoints.scss.erb
216
+ - app/assets/stylesheets/workarea/storefront/settings/_colors.scss
217
+ - app/assets/stylesheets/workarea/storefront/settings/_global.scss
218
+ - app/assets/stylesheets/workarea/storefront/settings/_grid.scss
219
+ - app/assets/stylesheets/workarea/storefront/settings/_typography.scss
220
+ - app/assets/stylesheets/workarea/storefront/settings/_z_indexes.scss
221
+ - app/assets/stylesheets/workarea/storefront/tools/_center.scss
222
+ - app/assets/stylesheets/workarea/storefront/tools/_focus_ring.scss
223
+ - app/assets/stylesheets/workarea/storefront/tools/_respond_to.scss
224
+ - app/assets/stylesheets/workarea/storefront/tools/_svg.scss
225
+ - app/assets/stylesheets/workarea/storefront/trumps/_break_word.scss
226
+ - app/assets/stylesheets/workarea/storefront/trumps/_clearfix.scss
227
+ - app/assets/stylesheets/workarea/storefront/trumps/_hidden.scss
228
+ - app/assets/stylesheets/workarea/storefront/trumps/_hidden_if_js_enabled.scss
229
+ - app/assets/stylesheets/workarea/storefront/trumps/_image_replacement.scss
230
+ - app/assets/stylesheets/workarea/storefront/trumps/_truncate.scss
231
+ - app/assets/stylesheets/workarea/storefront/trumps/_visible.scss
232
+ - app/assets/stylesheets/workarea/storefront/trumps/_visually_hidden.scss
233
+ - app/assets/stylesheets/workarea/storefront/typography/_align.scss
234
+ - app/assets/stylesheets/workarea/storefront/typography/_headings.scss
235
+ - app/assets/stylesheets/workarea/storefront/typography/_links.scss
236
+ - app/assets/stylesheets/workarea/storefront/typography/_text.scss
237
+ - app/controllers/workarea/storefront/analytics_controller.rb
238
+ - app/controllers/workarea/storefront/application_controller.rb
239
+ - app/controllers/workarea/storefront/cart_items_controller.rb
240
+ - app/controllers/workarea/storefront/carts_controller.rb
241
+ - app/controllers/workarea/storefront/categories_controller.rb
242
+ - app/controllers/workarea/storefront/check_inventory.rb
243
+ - app/controllers/workarea/storefront/check_pricing_override.rb
244
+ - app/controllers/workarea/storefront/checkout/addresses_controller.rb
245
+ - app/controllers/workarea/storefront/checkout/payment_controller.rb
246
+ - app/controllers/workarea/storefront/checkout/place_order_controller.rb
247
+ - app/controllers/workarea/storefront/checkout/shipping_controller.rb
248
+ - app/controllers/workarea/storefront/checkouts_controller.rb
249
+ - app/controllers/workarea/storefront/contacts_controller.rb
250
+ - app/controllers/workarea/storefront/content_areas_controller.rb
251
+ - app/controllers/workarea/storefront/content_blocks_controller.rb
252
+ - app/controllers/workarea/storefront/current_checkout.rb
253
+ - app/controllers/workarea/storefront/email_signups_controller.rb
254
+ - app/controllers/workarea/storefront/errors_controller.rb
255
+ - app/controllers/workarea/storefront/http_caching.rb
256
+ - app/controllers/workarea/storefront/menus_controller.rb
257
+ - app/controllers/workarea/storefront/order_lookup.rb
258
+ - app/controllers/workarea/storefront/orders_controller.rb
259
+ - app/controllers/workarea/storefront/pages_controller.rb
260
+ - app/controllers/workarea/storefront/products_controller.rb
261
+ - app/controllers/workarea/storefront/recent_views_controller.rb
262
+ - app/controllers/workarea/storefront/recommendations_controller.rb
263
+ - app/controllers/workarea/storefront/searches_controller.rb
264
+ - app/controllers/workarea/storefront/sitemaps_controller.rb
265
+ - app/controllers/workarea/storefront/style_guides_controller.rb
266
+ - app/controllers/workarea/storefront/user_activity.rb
267
+ - app/controllers/workarea/storefront/users/accounts_controller.rb
268
+ - app/controllers/workarea/storefront/users/addresses_controller.rb
269
+ - app/controllers/workarea/storefront/users/credit_cards_controller.rb
270
+ - app/controllers/workarea/storefront/users/logins_controller.rb
271
+ - app/controllers/workarea/storefront/users/orders_controller.rb
272
+ - app/controllers/workarea/storefront/users/passwords_controller.rb
273
+ - app/helpers/workarea/storefront/admin_helper.rb
274
+ - app/helpers/workarea/storefront/analytics_helper.rb
275
+ - app/helpers/workarea/storefront/application_helper.rb
276
+ - app/helpers/workarea/storefront/content_helper.rb
277
+ - app/helpers/workarea/storefront/credit_cards_helper.rb
278
+ - app/helpers/workarea/storefront/favicons_helper.rb
279
+ - app/helpers/workarea/storefront/locales_helper.rb
280
+ - app/helpers/workarea/storefront/navigation_helper.rb
281
+ - app/helpers/workarea/storefront/pagination_helper.rb
282
+ - app/helpers/workarea/storefront/products_helper.rb
283
+ - app/helpers/workarea/storefront/recent_views_helper.rb
284
+ - app/helpers/workarea/storefront/users_helper.rb
285
+ - app/mailers/workarea/storefront/account_mailer.rb
286
+ - app/mailers/workarea/storefront/application_mailer.rb
287
+ - app/mailers/workarea/storefront/fulfillment_mailer.rb
288
+ - app/mailers/workarea/storefront/inquiry_mailer.rb
289
+ - app/mailers/workarea/storefront/order_mailer.rb
290
+ - app/mailers/workarea/storefront/payment_mailer.rb
291
+ - app/mailers/workarea/storefront/transactional_mailer.rb
292
+ - app/view_models/workarea/storefront/cart_item_view_model.rb
293
+ - app/view_models/workarea/storefront/cart_recommendations_view_model.rb
294
+ - app/view_models/workarea/storefront/cart_view_model.rb
295
+ - app/view_models/workarea/storefront/category_view_model.rb
296
+ - app/view_models/workarea/storefront/checkout/addresses_view_model.rb
297
+ - app/view_models/workarea/storefront/checkout/confirmation_view_model.rb
298
+ - app/view_models/workarea/storefront/checkout/payment_view_model.rb
299
+ - app/view_models/workarea/storefront/checkout/shipping_view_model.rb
300
+ - app/view_models/workarea/storefront/checkout/summary_view_model.rb
301
+ - app/view_models/workarea/storefront/checkout_content.rb
302
+ - app/view_models/workarea/storefront/content_block_view_model.rb
303
+ - app/view_models/workarea/storefront/content_blocks/category_summary_view_model.rb
304
+ - app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
305
+ - app/view_models/workarea/storefront/content_blocks/image_group_view_model.rb
306
+ - app/view_models/workarea/storefront/content_blocks/navigation_view_model.rb
307
+ - app/view_models/workarea/storefront/content_blocks/product_insights_view_model.rb
308
+ - app/view_models/workarea/storefront/content_blocks/product_list_view_model.rb
309
+ - app/view_models/workarea/storefront/content_blocks/taxonomy_view_model.rb
310
+ - app/view_models/workarea/storefront/content_blocks/video_view_model.rb
311
+ - app/view_models/workarea/storefront/content_view_model.rb
312
+ - app/view_models/workarea/storefront/credit_card_view_model.rb
313
+ - app/view_models/workarea/storefront/detail_page_recommendations_view_model.rb
314
+ - app/view_models/workarea/storefront/display_content.rb
315
+ - app/view_models/workarea/storefront/email_recommendations_view_model.rb
316
+ - app/view_models/workarea/storefront/email_signups_view_model.rb
317
+ - app/view_models/workarea/storefront/fulfillment_item_view_model.rb
318
+ - app/view_models/workarea/storefront/inquiry_view_model.rb
319
+ - app/view_models/workarea/storefront/inventory_status_view_model.rb
320
+ - app/view_models/workarea/storefront/menu_view_model.rb
321
+ - app/view_models/workarea/storefront/option_set_view_model.rb
322
+ - app/view_models/workarea/storefront/order_item_view_model.rb
323
+ - app/view_models/workarea/storefront/order_pricing.rb
324
+ - app/view_models/workarea/storefront/order_view_model.rb
325
+ - app/view_models/workarea/storefront/package_view_model.rb
326
+ - app/view_models/workarea/storefront/page_view_model.rb
327
+ - app/view_models/workarea/storefront/pagination.rb
328
+ - app/view_models/workarea/storefront/personalized_recommendations_view_model.rb
329
+ - app/view_models/workarea/storefront/product_browsing.rb
330
+ - app/view_models/workarea/storefront/product_templates/option_selects_view_model.rb
331
+ - app/view_models/workarea/storefront/product_templates/option_thumbnails_view_model.rb
332
+ - app/view_models/workarea/storefront/product_view_model.rb
333
+ - app/view_models/workarea/storefront/product_view_model/cache_key.rb
334
+ - app/view_models/workarea/storefront/product_view_model/image_collection.rb
335
+ - app/view_models/workarea/storefront/product_view_model/option.rb
336
+ - app/view_models/workarea/storefront/product_view_model/option_set.rb
337
+ - app/view_models/workarea/storefront/product_view_model/sku_options.rb
338
+ - app/view_models/workarea/storefront/recommendations_view_model.rb
339
+ - app/view_models/workarea/storefront/refund_view_model.rb
340
+ - app/view_models/workarea/storefront/search_content.rb
341
+ - app/view_models/workarea/storefront/search_customization_content.rb
342
+ - app/view_models/workarea/storefront/search_customization_view_model.rb
343
+ - app/view_models/workarea/storefront/search_suggestion_view_model.rb
344
+ - app/view_models/workarea/storefront/search_view_model.rb
345
+ - app/view_models/workarea/storefront/shipping_view_model.rb
346
+ - app/view_models/workarea/storefront/taxon_lookup.rb
347
+ - app/view_models/workarea/storefront/user_activity_view_model.rb
348
+ - app/view_models/workarea/storefront/user_view_model.rb
349
+ - app/views/layouts/workarea/storefront/application.html.haml
350
+ - app/views/layouts/workarea/storefront/checkout.html.haml
351
+ - app/views/layouts/workarea/storefront/content_preview.html.haml
352
+ - app/views/layouts/workarea/storefront/email.html.haml
353
+ - app/views/layouts/workarea/storefront/empty.html.haml
354
+ - app/views/layouts/workarea/storefront/navigation.html.haml
355
+ - app/views/workarea/storefront/account_mailer/creation.html.haml
356
+ - app/views/workarea/storefront/account_mailer/password_reset.html.haml
357
+ - app/views/workarea/storefront/cart_items/create.html.haml
358
+ - app/views/workarea/storefront/carts/_pricing.html.haml
359
+ - app/views/workarea/storefront/carts/show.html.haml
360
+ - app/views/workarea/storefront/categories/show.html.haml
361
+ - app/views/workarea/storefront/checkouts/_checkout_progress.html.haml
362
+ - app/views/workarea/storefront/checkouts/_summary.html.haml
363
+ - app/views/workarea/storefront/checkouts/addresses.html.haml
364
+ - app/views/workarea/storefront/checkouts/confirmation.html.haml
365
+ - app/views/workarea/storefront/checkouts/payment.html.haml
366
+ - app/views/workarea/storefront/checkouts/shipping.html.haml
367
+ - app/views/workarea/storefront/checkouts/summary.html.haml
368
+ - app/views/workarea/storefront/contacts/show.html.haml
369
+ - app/views/workarea/storefront/content_areas/show.html.haml
370
+ - app/views/workarea/storefront/content_blocks/_button.html.haml
371
+ - app/views/workarea/storefront/content_blocks/_category_summary.html.haml
372
+ - app/views/workarea/storefront/content_blocks/_divider.html.haml
373
+ - app/views/workarea/storefront/content_blocks/_hero.html.haml
374
+ - app/views/workarea/storefront/content_blocks/_html.html.haml
375
+ - app/views/workarea/storefront/content_blocks/_image.html.haml
376
+ - app/views/workarea/storefront/content_blocks/_image_and_text.html.haml
377
+ - app/views/workarea/storefront/content_blocks/_image_group.html.haml
378
+ - app/views/workarea/storefront/content_blocks/_product_insights.html.haml
379
+ - app/views/workarea/storefront/content_blocks/_product_list.html.haml
380
+ - app/views/workarea/storefront/content_blocks/_quote.html.haml
381
+ - app/views/workarea/storefront/content_blocks/_recommendations.html.haml
382
+ - app/views/workarea/storefront/content_blocks/_social_networks.html.haml
383
+ - app/views/workarea/storefront/content_blocks/_taxonomy.html.haml
384
+ - app/views/workarea/storefront/content_blocks/_text.html.haml
385
+ - app/views/workarea/storefront/content_blocks/_three_column_taxonomy.html.haml
386
+ - app/views/workarea/storefront/content_blocks/_two_column_taxonomy.html.haml
387
+ - app/views/workarea/storefront/content_blocks/_video.html.haml
388
+ - app/views/workarea/storefront/content_blocks/_video_and_text.html.haml
389
+ - app/views/workarea/storefront/content_blocks/show.html.haml
390
+ - app/views/workarea/storefront/email_signups/show.html.haml
391
+ - app/views/workarea/storefront/errors/show.html.haml
392
+ - app/views/workarea/storefront/facets/_range.html.haml
393
+ - app/views/workarea/storefront/facets/_terms.html.haml
394
+ - app/views/workarea/storefront/favicons/_tags.html.haml
395
+ - app/views/workarea/storefront/fulfillment_mailer/canceled.html.haml
396
+ - app/views/workarea/storefront/fulfillment_mailer/shipped.html.haml
397
+ - app/views/workarea/storefront/inquiry_mailer/created.html.haml
398
+ - app/views/workarea/storefront/mailers/_recommendations.html.haml
399
+ - app/views/workarea/storefront/menus/index.html.haml
400
+ - app/views/workarea/storefront/menus/show.html.haml
401
+ - app/views/workarea/storefront/order_mailer/_summary.html.haml
402
+ - app/views/workarea/storefront/order_mailer/confirmation.html.haml
403
+ - app/views/workarea/storefront/order_mailer/reminder.html.haml
404
+ - app/views/workarea/storefront/order_mailer/tenders/_credit_card.html.haml
405
+ - app/views/workarea/storefront/order_mailer/tenders/_store_credit.html.haml
406
+ - app/views/workarea/storefront/orders/_summary.html.haml
407
+ - app/views/workarea/storefront/orders/index.html.haml
408
+ - app/views/workarea/storefront/orders/show.html.haml
409
+ - app/views/workarea/storefront/orders/tenders/_credit_card.html.haml
410
+ - app/views/workarea/storefront/orders/tenders/_store_credit.html.haml
411
+ - app/views/workarea/storefront/pages/accessibility.html.haml
412
+ - app/views/workarea/storefront/pages/browser_config.xml.builder
413
+ - app/views/workarea/storefront/pages/home_page.html.haml
414
+ - app/views/workarea/storefront/pages/robots.text.erb
415
+ - app/views/workarea/storefront/pages/show.html.haml
416
+ - app/views/workarea/storefront/pages/templates/_generic.html.haml
417
+ - app/views/workarea/storefront/pages/templates/_test.html.haml
418
+ - app/views/workarea/storefront/pages/web_manifest.json.jbuilder
419
+ - app/views/workarea/storefront/payment_mailer/refunded.html.haml
420
+ - app/views/workarea/storefront/products/_price.html.haml
421
+ - app/views/workarea/storefront/products/_pricing.html.haml
422
+ - app/views/workarea/storefront/products/_summary.html.haml
423
+ - app/views/workarea/storefront/products/details.html.haml
424
+ - app/views/workarea/storefront/products/show.html.haml
425
+ - app/views/workarea/storefront/products/templates/_generic.html.haml
426
+ - app/views/workarea/storefront/products/templates/_option_selects.html.haml
427
+ - app/views/workarea/storefront/products/templates/_option_thumbnails.html.haml
428
+ - app/views/workarea/storefront/products/templates/_test.html.haml
429
+ - app/views/workarea/storefront/recent_views/aside.html.haml
430
+ - app/views/workarea/storefront/recent_views/narrow.html.haml
431
+ - app/views/workarea/storefront/recent_views/show.html.haml
432
+ - app/views/workarea/storefront/recommendations/show.html.haml
433
+ - app/views/workarea/storefront/searches/index.json.jbuilder
434
+ - app/views/workarea/storefront/searches/no_results.html.haml
435
+ - app/views/workarea/storefront/searches/show.html.haml
436
+ - app/views/workarea/storefront/shared/_address_fields.html.haml
437
+ - app/views/workarea/storefront/shared/_left_navigation.html.haml
438
+ - app/views/workarea/storefront/shared/_message.html.haml
439
+ - app/views/workarea/storefront/sitemaps/_pagination.html.haml
440
+ - app/views/workarea/storefront/sitemaps/show.html.haml
441
+ - app/views/workarea/storefront/style_guides/_navigation.html.haml
442
+ - app/views/workarea/storefront/style_guides/base/_forms.html.haml
443
+ - app/views/workarea/storefront/style_guides/base/_tables.html.haml
444
+ - app/views/workarea/storefront/style_guides/components/_box.html.haml
445
+ - app/views/workarea/storefront/style_guides/components/_breadcrumbs.html.haml
446
+ - app/views/workarea/storefront/style_guides/components/_button.html.haml
447
+ - app/views/workarea/storefront/style_guides/components/_button_content_block.html.haml
448
+ - app/views/workarea/storefront/style_guides/components/_button_property.html.haml
449
+ - app/views/workarea/storefront/style_guides/components/_category_summary_content_block.html.haml
450
+ - app/views/workarea/storefront/style_guides/components/_data_card.html.haml
451
+ - app/views/workarea/storefront/style_guides/components/_divider_content_block.html.haml
452
+ - app/views/workarea/storefront/style_guides/components/_hero_content_block.html.haml
453
+ - app/views/workarea/storefront/style_guides/components/_html_content_block.html.haml
454
+ - app/views/workarea/storefront/style_guides/components/_image_and_text_content_block.html.haml
455
+ - app/views/workarea/storefront/style_guides/components/_image_content_block.html.haml
456
+ - app/views/workarea/storefront/style_guides/components/_image_group_content_block.html.haml
457
+ - app/views/workarea/storefront/style_guides/components/_inline_form.html.haml
458
+ - app/views/workarea/storefront/style_guides/components/_loading.html.haml
459
+ - app/views/workarea/storefront/style_guides/components/_message.html.haml
460
+ - app/views/workarea/storefront/style_guides/components/_mobile_filters.html.haml
461
+ - app/views/workarea/storefront/style_guides/components/_pagination.html.haml
462
+ - app/views/workarea/storefront/style_guides/components/_payment_icon.html.haml
463
+ - app/views/workarea/storefront/style_guides/components/_personalized_recommendations_content_block.html.haml
464
+ - app/views/workarea/storefront/style_guides/components/_product_insights_content_block.html.haml
465
+ - app/views/workarea/storefront/style_guides/components/_product_list.html.haml
466
+ - app/views/workarea/storefront/style_guides/components/_product_list_content_block.html.haml
467
+ - app/views/workarea/storefront/style_guides/components/_product_prices.html.haml
468
+ - app/views/workarea/storefront/style_guides/components/_product_summary.html.haml
469
+ - app/views/workarea/storefront/style_guides/components/_property.html.haml
470
+ - app/views/workarea/storefront/style_guides/components/_quote_content_block.html.haml
471
+ - app/views/workarea/storefront/style_guides/components/_recommendations.html.haml
472
+ - app/views/workarea/storefront/style_guides/components/_social_networks_content_block.html.haml
473
+ - app/views/workarea/storefront/style_guides/components/_svg_icon.html.haml
474
+ - app/views/workarea/storefront/style_guides/components/_table.html.haml
475
+ - app/views/workarea/storefront/style_guides/components/_taxonomy_content_block.html.haml
476
+ - app/views/workarea/storefront/style_guides/components/_text_box.html.haml
477
+ - app/views/workarea/storefront/style_guides/components/_text_button.html.haml
478
+ - app/views/workarea/storefront/style_guides/components/_text_content_block.html.haml
479
+ - app/views/workarea/storefront/style_guides/components/_ui_autocomplete.html.haml
480
+ - app/views/workarea/storefront/style_guides/components/_ui_dialog.html.haml
481
+ - app/views/workarea/storefront/style_guides/components/_ui_dialog_image.html.haml
482
+ - app/views/workarea/storefront/style_guides/components/_ui_helper_hidden_accessible.html.haml
483
+ - app/views/workarea/storefront/style_guides/components/_value.html.haml
484
+ - app/views/workarea/storefront/style_guides/components/_video_and_text_content_block.html.haml
485
+ - app/views/workarea/storefront/style_guides/components/_video_content_block.html.haml
486
+ - app/views/workarea/storefront/style_guides/index.html.haml
487
+ - app/views/workarea/storefront/style_guides/objects/_button_reset.html.haml
488
+ - app/views/workarea/storefront/style_guides/objects/_inline_list.html.haml
489
+ - app/views/workarea/storefront/style_guides/objects/_list_reset.html.haml
490
+ - app/views/workarea/storefront/style_guides/objects/_text_field_reset.html.haml
491
+ - app/views/workarea/storefront/style_guides/settings/_color_variables.html.haml
492
+ - app/views/workarea/storefront/style_guides/show.html.haml
493
+ - app/views/workarea/storefront/style_guides/trumps/_break_word.html.haml
494
+ - app/views/workarea/storefront/style_guides/trumps/_clearfix.html.haml
495
+ - app/views/workarea/storefront/style_guides/trumps/_hidden.html.haml
496
+ - app/views/workarea/storefront/style_guides/trumps/_hidden_if_js_enabled.html.haml
497
+ - app/views/workarea/storefront/style_guides/trumps/_image_replacement.html.haml
498
+ - app/views/workarea/storefront/style_guides/trumps/_truncate.html.haml
499
+ - app/views/workarea/storefront/style_guides/trumps/_visible.html.haml
500
+ - app/views/workarea/storefront/style_guides/trumps/_visually_hidden.html.haml
501
+ - app/views/workarea/storefront/style_guides/typography/_align.html.haml
502
+ - app/views/workarea/storefront/style_guides/typography/_fonts.html.haml
503
+ - app/views/workarea/storefront/style_guides/typography/_headings.html.haml
504
+ - app/views/workarea/storefront/style_guides/typography/_links.html.haml
505
+ - app/views/workarea/storefront/style_guides/typography/_text.html.haml
506
+ - app/views/workarea/storefront/users/accounts/edit.html.haml
507
+ - app/views/workarea/storefront/users/accounts/show.html.haml
508
+ - app/views/workarea/storefront/users/addresses/edit.html.haml
509
+ - app/views/workarea/storefront/users/addresses/new.html.haml
510
+ - app/views/workarea/storefront/users/credit_cards/edit.html.haml
511
+ - app/views/workarea/storefront/users/credit_cards/new.html.haml
512
+ - app/views/workarea/storefront/users/current_user.json.jbuilder
513
+ - app/views/workarea/storefront/users/logins/new.html.haml
514
+ - app/views/workarea/storefront/users/orders/_summary.html.haml
515
+ - app/views/workarea/storefront/users/orders/index.html.haml
516
+ - app/views/workarea/storefront/users/orders/show.html.haml
517
+ - app/views/workarea/storefront/users/passwords/change.html.haml
518
+ - app/views/workarea/storefront/users/passwords/edit.html.haml
519
+ - app/views/workarea/storefront/users/passwords/new.html.haml
520
+ - bin/rails
521
+ - config/locales/en.yml
522
+ - config/routes.rb
523
+ - lib/workarea/mailer_previews/storefront/account_mailer_preview.rb
524
+ - lib/workarea/mailer_previews/storefront/fulfillment_mailer_preview.rb
525
+ - lib/workarea/mailer_previews/storefront/inquiry_mailer_preview.rb
526
+ - lib/workarea/mailer_previews/storefront/order_mailer_preview.rb
527
+ - lib/workarea/mailer_previews/storefront/payment_mailer_preview.rb
528
+ - lib/workarea/storefront.rb
529
+ - lib/workarea/storefront/engine.rb
530
+ - test/dummy/README.rdoc
531
+ - test/dummy/Rakefile
532
+ - test/dummy/app/assets/images/.keep
533
+ - test/dummy/app/assets/javascripts/application.js
534
+ - test/dummy/app/assets/stylesheets/application.css
535
+ - test/dummy/app/controllers/application_controller.rb
536
+ - test/dummy/app/controllers/concerns/.keep
537
+ - test/dummy/app/helpers/application_helper.rb
538
+ - test/dummy/app/mailers/.keep
539
+ - test/dummy/app/models/.keep
540
+ - test/dummy/app/models/concerns/.keep
541
+ - test/dummy/app/views/layouts/application.html.erb
542
+ - test/dummy/bin/bundle
543
+ - test/dummy/bin/rails
544
+ - test/dummy/bin/rake
545
+ - test/dummy/bin/setup
546
+ - test/dummy/bin/update
547
+ - test/dummy/config.ru
548
+ - test/dummy/config/application.rb
549
+ - test/dummy/config/boot.rb
550
+ - test/dummy/config/cable.yml
551
+ - test/dummy/config/environment.rb
552
+ - test/dummy/config/environments/development.rb
553
+ - test/dummy/config/environments/production.rb
554
+ - test/dummy/config/environments/test.rb
555
+ - test/dummy/config/initializers/application_controller_renderer.rb
556
+ - test/dummy/config/initializers/assets.rb
557
+ - test/dummy/config/initializers/backtrace_silencers.rb
558
+ - test/dummy/config/initializers/cookies_serializer.rb
559
+ - test/dummy/config/initializers/filter_parameter_logging.rb
560
+ - test/dummy/config/initializers/inflections.rb
561
+ - test/dummy/config/initializers/mime_types.rb
562
+ - test/dummy/config/initializers/new_framework_defaults.rb
563
+ - test/dummy/config/initializers/session_store.rb
564
+ - test/dummy/config/initializers/workarea.rb
565
+ - test/dummy/config/initializers/wrap_parameters.rb
566
+ - test/dummy/config/locales/en.yml
567
+ - test/dummy/config/puma.rb
568
+ - test/dummy/config/routes.rb
569
+ - test/dummy/config/secrets.yml
570
+ - test/dummy/config/spring.rb
571
+ - test/dummy/db/seeds.rb
572
+ - test/dummy/lib/assets/.keep
573
+ - test/dummy/log/.keep
574
+ - test/dummy/public/404.html
575
+ - test/dummy/public/422.html
576
+ - test/dummy/public/500.html
577
+ - test/dummy/public/favicon.ico
578
+ - test/helpers/workarea/storefront/application_helper_test.rb
579
+ - test/helpers/workarea/storefront/content_helper_test.rb
580
+ - test/helpers/workarea/storefront/credit_cards_helper_test.rb
581
+ - test/helpers/workarea/storefront/navigation_helper_test.rb
582
+ - test/helpers/workarea/storefront/pagination_helper_test.rb
583
+ - test/helpers/workarea/storefront/products_helper_test.rb
584
+ - test/integration/workarea/storefront/accounts_integration_test.rb
585
+ - test/integration/workarea/storefront/analytics_integration_test.rb
586
+ - test/integration/workarea/storefront/browse_images_integration_test.rb
587
+ - test/integration/workarea/storefront/cart_integration_test.rb
588
+ - test/integration/workarea/storefront/cart_items_integration_test.rb
589
+ - test/integration/workarea/storefront/categories_integration_test.rb
590
+ - test/integration/workarea/storefront/checkout_side_effects_integration_test.rb
591
+ - test/integration/workarea/storefront/checkout_with_pricing_override_integration_test.rb
592
+ - test/integration/workarea/storefront/checkouts_integration_test.rb
593
+ - test/integration/workarea/storefront/contact_form_integration_test.rb
594
+ - test/integration/workarea/storefront/content_blocks_integration_test.rb
595
+ - test/integration/workarea/storefront/current_checkout_integration_test.rb
596
+ - test/integration/workarea/storefront/current_user_integration_test.rb
597
+ - test/integration/workarea/storefront/email_signups_integration_test.rb
598
+ - test/integration/workarea/storefront/errors_integration_test.rb
599
+ - test/integration/workarea/storefront/favicons_integration_test.rb
600
+ - test/integration/workarea/storefront/guest_browsing_integration_test.rb
601
+ - test/integration/workarea/storefront/head_tags_integration_test.rb
602
+ - test/integration/workarea/storefront/health_check_integration_test.rb
603
+ - test/integration/workarea/storefront/host_integration_test.rb
604
+ - test/integration/workarea/storefront/impersonations_integration_test.rb
605
+ - test/integration/workarea/storefront/layout_integration_test.rb
606
+ - test/integration/workarea/storefront/login_integration_test.rb
607
+ - test/integration/workarea/storefront/order_data_integration_test.rb
608
+ - test/integration/workarea/storefront/order_lookup_integration_test.rb
609
+ - test/integration/workarea/storefront/pages_integration_test.rb
610
+ - test/integration/workarea/storefront/place_order_integration_test.rb
611
+ - test/integration/workarea/storefront/placing_order_integration_test.rb
612
+ - test/integration/workarea/storefront/products_integration_test.rb
613
+ - test/integration/workarea/storefront/search_integration_test.rb
614
+ - test/integration/workarea/storefront/store_credit_integration_test.rb
615
+ - test/integration/workarea/storefront/users/addresses_integration_test.rb
616
+ - test/integration/workarea/storefront/users/credit_cards_integration_test.rb
617
+ - test/integration/workarea/storefront/users/orders_integration_test.rb
618
+ - test/integration/workarea/storefront/users/passwords_integration_test.rb
619
+ - test/javascripts/address_region_fields_spec.js
620
+ - test/javascripts/analytics_spec.js
621
+ - test/javascripts/authenticity_token_spec.js
622
+ - test/javascripts/back_to_top_button_spec.js
623
+ - test/javascripts/break_points_spec.js
624
+ - test/javascripts/checkout_primary_payments_spec.js
625
+ - test/javascripts/dialog_spec.js
626
+ - test/javascripts/fixtures/address_region_fields.html.haml
627
+ - test/javascripts/fixtures/analytics_add_to_cart_form.html.haml
628
+ - test/javascripts/fixtures/analytics_product_click.html.haml
629
+ - test/javascripts/fixtures/authenticity_token.html.haml
630
+ - test/javascripts/fixtures/back_to_top_button.html.haml
631
+ - test/javascripts/fixtures/checkout_primary_payments.html.haml
632
+ - test/javascripts/fixtures/dialog.html.haml
633
+ - test/javascripts/fixtures/form.html.haml
634
+ - test/javascripts/fixtures/optional_fields.html.haml
635
+ - test/javascripts/fixtures/popup_button.html.haml
636
+ - test/javascripts/fixtures/product_details_sku_select.html.haml
637
+ - test/javascripts/fixtures/product_details_sku_select_without_sku_option_details.html.haml
638
+ - test/javascripts/fixtures/scroll_to_element.html.haml
639
+ - test/javascripts/forms_spec.js
640
+ - test/javascripts/messages_spec.js
641
+ - test/javascripts/optional_fields_spec.js
642
+ - test/javascripts/popup_button_spec.js
643
+ - test/javascripts/product_details_sku_selects_spec.js
644
+ - test/javascripts/scroll_to_buttons_spec.js
645
+ - test/javascripts/spec_helper.js
646
+ - test/javascripts/traffic_referrer_spec.js
647
+ - test/mailers/workarea/storefront/transactional_mailer_test.rb
648
+ - test/performance/workarea/storefront/cart_performance_test.rb
649
+ - test/performance/workarea/storefront/categories_performance_test.rb
650
+ - test/performance/workarea/storefront/pages_performance_test.rb
651
+ - test/performance/workarea/storefront/products_performance_test.rb
652
+ - test/performance/workarea/storefront/search_performance_test.rb
653
+ - test/system/workarea/storefront/accounts_system_test.rb
654
+ - test/system/workarea/storefront/addresses_system_test.rb
655
+ - test/system/workarea/storefront/analytics_system_test.rb
656
+ - test/system/workarea/storefront/cart_items_system_test.rb
657
+ - test/system/workarea/storefront/cart_system_test.rb
658
+ - test/system/workarea/storefront/categories_system_test.rb
659
+ - test/system/workarea/storefront/content_system_test.rb
660
+ - test/system/workarea/storefront/credit_cards_system_test.rb
661
+ - test/system/workarea/storefront/customer_service_system_test.rb
662
+ - test/system/workarea/storefront/digital_products_system_test.rb
663
+ - test/system/workarea/storefront/discounting_multiple_system_test.rb
664
+ - test/system/workarea/storefront/discounting_system_test.rb
665
+ - test/system/workarea/storefront/email_signup_system_test.rb
666
+ - test/system/workarea/storefront/fulfillment_system_test.rb
667
+ - test/system/workarea/storefront/guest_checkout_system_test.rb
668
+ - test/system/workarea/storefront/logged_in_checkout_system_test.rb
669
+ - test/system/workarea/storefront/login_system_test.rb
670
+ - test/system/workarea/storefront/navigation_system_test.rb
671
+ - test/system/workarea/storefront/no_js_system_test.rb
672
+ - test/system/workarea/storefront/orders_system_test.rb
673
+ - test/system/workarea/storefront/pages_system_test.rb
674
+ - test/system/workarea/storefront/pagination_system_test.rb
675
+ - test/system/workarea/storefront/passwords_system_test.rb
676
+ - test/system/workarea/storefront/pricing_overrides_system_test.rb
677
+ - test/system/workarea/storefront/products_system_test.rb
678
+ - test/system/workarea/storefront/recommendations_system_test.rb
679
+ - test/system/workarea/storefront/release_browsing_system_test.rb
680
+ - test/system/workarea/storefront/search_system_test.rb
681
+ - test/system/workarea/storefront/sitemap_system_test.rb
682
+ - test/system/workarea/storefront/store_credit_system_test.rb
683
+ - test/system/workarea/storefront/style_guides_system_test.rb
684
+ - test/teaspoon_env.rb
685
+ - test/test_helper.rb
686
+ - test/view_models/workarea/storefront/cart_view_model_test.rb
687
+ - test/view_models/workarea/storefront/category_view_model_test.rb
688
+ - test/view_models/workarea/storefront/checkout/addresses_view_model_test.rb
689
+ - test/view_models/workarea/storefront/checkout/payment_view_model_test.rb
690
+ - test/view_models/workarea/storefront/checkout/summary_view_model_test.rb
691
+ - test/view_models/workarea/storefront/content_block_view_model_test.rb
692
+ - test/view_models/workarea/storefront/content_blocks/category_summary_view_model_test.rb
693
+ - test/view_models/workarea/storefront/content_blocks/navigation_view_model_test.rb
694
+ - test/view_models/workarea/storefront/content_blocks/product_insights_view_model_test.rb
695
+ - test/view_models/workarea/storefront/content_blocks/product_list_view_model_test.rb
696
+ - test/view_models/workarea/storefront/content_blocks/taxonomy_view_model_test.rb
697
+ - test/view_models/workarea/storefront/content_blocks/video_view_model_test.rb
698
+ - test/view_models/workarea/storefront/display_content_test.rb
699
+ - test/view_models/workarea/storefront/fulfillment_item_view_model_test.rb
700
+ - test/view_models/workarea/storefront/inventory_status_view_model_test.rb
701
+ - test/view_models/workarea/storefront/option_set_view_model_test.rb
702
+ - test/view_models/workarea/storefront/order_item_view_model_test.rb
703
+ - test/view_models/workarea/storefront/order_view_model_test.rb
704
+ - test/view_models/workarea/storefront/package_view_model_test.rb
705
+ - test/view_models/workarea/storefront/product_templates/option_thumbnails_view_model_test.rb
706
+ - test/view_models/workarea/storefront/product_view_model/cache_key_test.rb
707
+ - test/view_models/workarea/storefront/product_view_model/image_collection_test.rb
708
+ - test/view_models/workarea/storefront/product_view_model/option_set_test.rb
709
+ - test/view_models/workarea/storefront/product_view_model/sku_options_test.rb
710
+ - test/view_models/workarea/storefront/product_view_model_test.rb
711
+ - test/view_models/workarea/storefront/recommendations_view_model_test.rb
712
+ - test/view_models/workarea/storefront/refund_view_model_test.rb
713
+ - test/view_models/workarea/storefront/search_suggestion_view_model_test.rb
714
+ - test/view_models/workarea/storefront/search_view_model_test.rb
715
+ - test/view_models/workarea/storefront/shipping_view_model_test.rb
716
+ - test/view_models/workarea/storefront/user_activity_view_model_test.rb
717
+ - test/view_models/workarea/storefront/user_view_model_test.rb
718
+ - workarea-storefront.gemspec
719
+ homepage: http://www.workarea.com
720
+ licenses:
721
+ - Business Software License
722
+ metadata: {}
723
+ post_install_message:
724
+ rdoc_options: []
725
+ require_paths:
726
+ - lib
727
+ required_ruby_version: !ruby/object:Gem::Requirement
728
+ requirements:
729
+ - - ">="
730
+ - !ruby/object:Gem::Version
731
+ version: '0'
732
+ required_rubygems_version: !ruby/object:Gem::Requirement
733
+ requirements:
734
+ - - ">="
735
+ - !ruby/object:Gem::Version
736
+ version: '0'
737
+ requirements: []
738
+ rubygems_version: 3.0.4
739
+ signing_key:
740
+ specification_version: 4
741
+ summary: Storefront for the Workarea Commerce Platform
742
+ test_files: []