workarea-admin 3.4.45 → 3.5.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (388) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +52 -0
  3. data/app/assets/images/workarea/admin/email_logo.png +0 -0
  4. data/app/assets/javascripts/workarea/admin/application.js.erb +11 -1
  5. data/app/assets/javascripts/workarea/admin/config.js.erb +96 -0
  6. data/app/assets/javascripts/workarea/admin/modules/active_by_segment_tooltips.js +108 -0
  7. data/app/assets/javascripts/workarea/admin/modules/calendars.js +1 -1
  8. data/app/assets/javascripts/workarea/admin/modules/categorized_autocomplete_fields.js +1 -1
  9. data/app/assets/javascripts/workarea/admin/modules/impersonation_notification.js +44 -0
  10. data/app/assets/javascripts/workarea/admin/modules/jump_to_menus.js +74 -0
  11. data/app/assets/javascripts/workarea/admin/modules/new_navigation_taxons.js +1 -2
  12. data/app/assets/javascripts/workarea/admin/modules/release_reminder.js +1 -0
  13. data/app/assets/javascripts/workarea/admin/modules/selects.js +33 -0
  14. data/app/assets/javascripts/workarea/admin/modules/style_guide_autocomplete_fields.js +42 -0
  15. data/app/assets/javascripts/workarea/admin/modules/timeline_report_chart.js +105 -0
  16. data/app/assets/javascripts/workarea/admin/modules/toggle_elements.js +27 -0
  17. data/app/assets/javascripts/workarea/admin/modules/tribute_areas.js +91 -0
  18. data/app/assets/javascripts/workarea/admin/templates/chart_legend.jst.ejs +17 -9
  19. data/app/assets/javascripts/workarea/admin/templates/jump_to_menu.jst.ejs +13 -0
  20. data/app/assets/stylesheets/workarea/admin/application.scss.erb +3 -0
  21. data/app/assets/stylesheets/workarea/admin/base/_forms.scss +2 -2
  22. data/app/assets/stylesheets/workarea/admin/components/_activity.scss +24 -16
  23. data/app/assets/stylesheets/workarea/admin/components/_activity_group.scss +3 -19
  24. data/app/assets/stylesheets/workarea/admin/components/_box.scss +21 -5
  25. data/app/assets/stylesheets/workarea/admin/components/_calendar.scss +102 -140
  26. data/app/assets/stylesheets/workarea/admin/components/_chart_legend.scss +10 -13
  27. data/app/assets/stylesheets/workarea/admin/components/_checkbox.scss +49 -23
  28. data/app/assets/stylesheets/workarea/admin/components/_content_block_list.scss +5 -3
  29. data/app/assets/stylesheets/workarea/admin/components/_date_marker.scss +24 -3
  30. data/app/assets/stylesheets/workarea/admin/components/_index_table.scss +5 -0
  31. data/app/assets/stylesheets/workarea/admin/components/_jump_to_menu.scss +57 -0
  32. data/app/assets/stylesheets/workarea/admin/components/_product_summary.scss +46 -0
  33. data/app/assets/stylesheets/workarea/admin/components/_toggle_button.scss +1 -4
  34. data/app/assets/stylesheets/workarea/admin/email/_base.scss +30 -2
  35. data/app/assets/stylesheets/workarea/admin/email/_components.scss +66 -5
  36. data/app/assets/stylesheets/workarea/admin/email/_helpers.scss +16 -5
  37. data/app/assets/stylesheets/workarea/admin/email/{_settings.scss → _settings.scss.erb} +4 -4
  38. data/app/controllers/workarea/admin/application_controller.rb +2 -4
  39. data/app/controllers/workarea/admin/bulk_action_sequential_product_edits_controller.rb +4 -6
  40. data/app/controllers/workarea/admin/bulk_variant_saving.rb +1 -2
  41. data/app/controllers/workarea/admin/catalog_products_controller.rb +4 -6
  42. data/app/controllers/workarea/admin/catalog_variants_controller.rb +2 -3
  43. data/app/controllers/workarea/admin/comments_controller.rb +9 -0
  44. data/app/controllers/workarea/admin/configurations_controller.rb +29 -0
  45. data/app/controllers/workarea/admin/content_assets_controller.rb +3 -1
  46. data/app/controllers/workarea/admin/content_blocks_controller.rb +1 -7
  47. data/app/controllers/workarea/admin/create_catalog_products_controller.rb +2 -8
  48. data/app/controllers/workarea/admin/create_release_undos_controller.rb +43 -0
  49. data/app/controllers/workarea/admin/create_segments_controller.rb +68 -0
  50. data/app/controllers/workarea/admin/dashboards_controller.rb +2 -0
  51. data/app/controllers/workarea/admin/data_file_imports_controller.rb +7 -2
  52. data/app/controllers/workarea/admin/fulfillment_skus_controller.rb +58 -0
  53. data/app/controllers/workarea/admin/fulfillment_tokens_controller.rb +56 -0
  54. data/app/controllers/workarea/admin/guest_browsings_controller.rb +2 -2
  55. data/app/controllers/workarea/admin/impersonations_controller.rb +3 -4
  56. data/app/controllers/workarea/admin/orders_controller.rb +3 -0
  57. data/app/controllers/workarea/admin/pricing_discount_redemptions_controller.rb +13 -0
  58. data/app/controllers/workarea/admin/pricing_overrides_controller.rb +1 -1
  59. data/app/controllers/workarea/admin/product_rules_controller.rb +1 -2
  60. data/app/controllers/workarea/admin/releases_controller.rb +8 -13
  61. data/app/controllers/workarea/admin/reports_controller.rb +18 -0
  62. data/app/controllers/workarea/admin/segment_overrides_controller.rb +19 -0
  63. data/app/controllers/workarea/admin/segment_rules_controller.rb +62 -0
  64. data/app/controllers/workarea/admin/segments_controller.rb +48 -0
  65. data/app/controllers/workarea/admin/tax_rates_controller.rb +62 -1
  66. data/app/controllers/workarea/admin/unsubscribes_controller.rb +40 -0
  67. data/app/controllers/workarea/admin/users_controller.rb +19 -0
  68. data/app/helpers/workarea/admin/application_helper.rb +2 -12
  69. data/app/helpers/workarea/admin/configurations_helper.rb +9 -0
  70. data/app/helpers/workarea/admin/content_helper.rb +2 -3
  71. data/app/helpers/workarea/admin/fulfillment_helper.rb +10 -0
  72. data/app/helpers/workarea/admin/icons_helper.rb +26 -0
  73. data/app/helpers/workarea/admin/navigation_helper.rb +1 -0
  74. data/app/helpers/workarea/admin/pricing_overrides_helper.rb +1 -1
  75. data/app/helpers/workarea/admin/products_helper.rb +13 -0
  76. data/app/helpers/workarea/admin/releases_helper.rb +5 -21
  77. data/app/helpers/workarea/admin/segments_helper.rb +68 -0
  78. data/app/helpers/workarea/admin/settings_helper.rb +11 -3
  79. data/app/mailers/workarea/admin/comment_mailer.rb +3 -3
  80. data/app/mailers/workarea/admin/status_report_mailer.rb +19 -6
  81. data/app/view_models/workarea/admin/bulk_action_product_edit_view_model.rb +5 -0
  82. data/app/view_models/workarea/admin/changeset_view_model.rb +15 -3
  83. data/app/view_models/workarea/admin/code_list_view_model.rb +1 -1
  84. data/app/view_models/workarea/admin/commentable_view_model.rb +4 -0
  85. data/app/view_models/workarea/admin/content_view_model.rb +2 -0
  86. data/app/view_models/workarea/admin/dashboards/marketing_view_model.rb +5 -9
  87. data/app/view_models/workarea/admin/dashboards/reports_view_model.rb +25 -0
  88. data/app/view_models/workarea/admin/discounts/buy_some_get_some_view_model.rb +6 -0
  89. data/app/view_models/workarea/admin/discounts/category_view_model.rb +6 -0
  90. data/app/view_models/workarea/admin/discounts/free_gift_view_model.rb +6 -0
  91. data/app/view_models/workarea/admin/discounts/order_total_view_model.rb +6 -0
  92. data/app/view_models/workarea/admin/discounts/product_attribute_view_model.rb +6 -0
  93. data/app/view_models/workarea/admin/discounts/product_view_model.rb +6 -0
  94. data/app/view_models/workarea/admin/discounts/quantity_fixed_price_view_model.rb +6 -0
  95. data/app/view_models/workarea/admin/discounts/shipping_view_model.rb +6 -0
  96. data/app/view_models/workarea/admin/featured_products_view_model.rb +6 -12
  97. data/app/view_models/workarea/admin/fulfillment_sku_view_model.rb +22 -0
  98. data/app/view_models/workarea/admin/fulfillment_token_view_model.rb +15 -0
  99. data/app/view_models/workarea/admin/fulfillment_view_model.rb +14 -0
  100. data/app/view_models/workarea/admin/insight_view_model.rb +2 -2
  101. data/app/view_models/workarea/admin/insights/product_view_model.rb +2 -2
  102. data/app/view_models/workarea/admin/insights/segment_view_model.rb +25 -0
  103. data/app/view_models/workarea/admin/order_view_model.rb +4 -0
  104. data/app/view_models/workarea/admin/pricing_sku_view_model.rb +0 -51
  105. data/app/view_models/workarea/admin/product_rules_preview_view_model.rb +2 -2
  106. data/app/view_models/workarea/admin/product_view_model.rb +26 -5
  107. data/app/view_models/workarea/admin/recommendations_view_model.rb +3 -11
  108. data/app/view_models/workarea/admin/release_calendar_view_model.rb +4 -9
  109. data/app/view_models/workarea/admin/release_event_view_model.rb +8 -41
  110. data/app/view_models/workarea/admin/release_view_model.rb +10 -17
  111. data/app/view_models/workarea/admin/releases_feed_view_model.rb +5 -13
  112. data/app/view_models/workarea/admin/reports/customers_view_model.rb +4 -2
  113. data/app/view_models/workarea/admin/reports/low_inventory_view_model.rb +2 -5
  114. data/app/view_models/workarea/admin/reports/sales_by_category_view_model.rb +2 -5
  115. data/app/view_models/workarea/admin/reports/sales_by_discount_view_model.rb +2 -5
  116. data/app/view_models/workarea/admin/reports/sales_by_product_view_model.rb +2 -5
  117. data/app/view_models/workarea/admin/reports/sales_by_tender_view_model.rb +13 -0
  118. data/app/view_models/workarea/admin/reports/timeline_view_model.rb +74 -0
  119. data/app/view_models/workarea/admin/search_customization_product_rules_view_model.rb +1 -1
  120. data/app/view_models/workarea/admin/segment_view_model.rb +19 -0
  121. data/app/view_models/workarea/admin/user_view_model.rb +6 -9
  122. data/app/view_models/workarea/admin/variant_view_model.rb +8 -0
  123. data/app/views/layouts/workarea/admin/application.html.haml +1 -1
  124. data/app/views/layouts/workarea/admin/email.html.haml +35 -41
  125. data/app/views/workarea/admin/activities/_configuration_admin_update.html.haml +10 -0
  126. data/app/views/workarea/admin/activities/_fulfillment_sku_create.html.haml +12 -0
  127. data/app/views/workarea/admin/activities/_fulfillment_sku_destroy.html.haml +10 -0
  128. data/app/views/workarea/admin/activities/_fulfillment_sku_update.html.haml +10 -0
  129. data/app/views/workarea/admin/activities/_segment_create.html.haml +12 -0
  130. data/app/views/workarea/admin/activities/_segment_destroy.html.haml +10 -0
  131. data/app/views/workarea/admin/activities/_segment_update.html.haml +10 -0
  132. data/app/views/workarea/admin/activities/show.html.haml +18 -11
  133. data/app/views/workarea/admin/bulk_action_product_edits/edit.html.haml +4 -0
  134. data/app/views/workarea/admin/bulk_action_product_edits/review.html.haml +11 -4
  135. data/app/views/workarea/admin/bulk_action_sequential_product_edits/product.html.haml +1 -1
  136. data/app/views/workarea/admin/catalog_categories/_cards.html.haml +3 -1
  137. data/app/views/workarea/admin/catalog_categories/edit.html.haml +1 -4
  138. data/app/views/workarea/admin/catalog_categories/index.html.haml +1 -0
  139. data/app/views/workarea/admin/catalog_product_images/edit.html.haml +1 -1
  140. data/app/views/workarea/admin/catalog_products/_cards.html.haml +2 -4
  141. data/app/views/workarea/admin/catalog_products/edit.html.haml +2 -1
  142. data/app/views/workarea/admin/catalog_products/index.html.haml +4 -2
  143. data/app/views/workarea/admin/catalog_products/insights.html.haml +2 -0
  144. data/app/views/workarea/admin/catalog_variants/edit.html.haml +6 -1
  145. data/app/views/workarea/admin/catalog_variants/index.html.haml +2 -0
  146. data/app/views/workarea/admin/catalog_variants/new.html.haml +5 -0
  147. data/app/views/workarea/admin/changesets/fields/_active_segment_ids.html.haml +4 -0
  148. data/app/views/workarea/admin/comment_mailer/notify.html.haml +27 -19
  149. data/app/views/workarea/admin/comments/index.html.haml +18 -12
  150. data/app/views/workarea/admin/configurations/_overridden.html.haml +2 -0
  151. data/app/views/workarea/admin/configurations/show.html.haml +49 -0
  152. data/app/views/workarea/admin/configurations/types/_array.html.haml +3 -0
  153. data/app/views/workarea/admin/configurations/types/_boolean.html.haml +1 -0
  154. data/app/views/workarea/admin/configurations/types/_duration.html.haml +2 -0
  155. data/app/views/workarea/admin/configurations/types/_encrypted.html.haml +1 -0
  156. data/app/views/workarea/admin/configurations/types/_float.html.haml +1 -0
  157. data/app/views/workarea/admin/configurations/types/_hash.html.haml +17 -0
  158. data/app/views/workarea/admin/configurations/types/_integer.html.haml +1 -0
  159. data/app/views/workarea/admin/configurations/types/_select.html.haml +1 -0
  160. data/app/views/workarea/admin/configurations/types/_string.html.haml +1 -0
  161. data/app/views/workarea/admin/configurations/types/_symbol.html.haml +1 -0
  162. data/app/views/workarea/admin/content/_edit.html.haml +8 -1
  163. data/app/views/workarea/admin/content/_form.html.haml +13 -7
  164. data/app/views/workarea/admin/content/advanced.html.haml +18 -10
  165. data/app/views/workarea/admin/content_assets/_cards.html.haml +3 -0
  166. data/app/views/workarea/admin/content_assets/_summary.html.haml +1 -1
  167. data/app/views/workarea/admin/content_assets/edit.html.haml +6 -0
  168. data/app/views/workarea/admin/content_assets/index.html.haml +7 -2
  169. data/app/views/workarea/admin/content_assets/new.html.haml +10 -3
  170. data/app/views/workarea/admin/content_blocks/_asset.html.haml +8 -1
  171. data/app/views/workarea/admin/content_pages/_cards.html.haml +1 -0
  172. data/app/views/workarea/admin/content_pages/edit.html.haml +1 -1
  173. data/app/views/workarea/admin/content_pages/index.html.haml +1 -0
  174. data/app/views/workarea/admin/create_catalog_categories/publish.html.haml +1 -0
  175. data/app/views/workarea/admin/create_catalog_products/content.html.haml +1 -1
  176. data/app/views/workarea/admin/create_catalog_products/publish.html.haml +1 -0
  177. data/app/views/workarea/admin/create_content_pages/publish.html.haml +1 -0
  178. data/app/views/workarea/admin/create_pricing_discounts/publish.html.haml +1 -0
  179. data/app/views/workarea/admin/create_release_undos/new.html.haml +45 -0
  180. data/app/views/workarea/admin/create_release_undos/review.html.haml +51 -0
  181. data/app/views/workarea/admin/create_releases/plan.html.haml +4 -3
  182. data/app/views/workarea/admin/create_releases/setup.html.haml +8 -12
  183. data/app/views/workarea/admin/create_segments/rules.html.haml +55 -0
  184. data/app/views/workarea/admin/create_segments/setup.html.haml +42 -0
  185. data/app/views/workarea/admin/create_users/admin.html.haml +0 -2
  186. data/app/views/workarea/admin/dashboards/catalog.html.haml +1 -0
  187. data/app/views/workarea/admin/dashboards/people.html.haml +1 -1
  188. data/app/views/workarea/admin/dashboards/reports.html.haml +31 -0
  189. data/app/views/workarea/admin/dashboards/settings.html.haml +23 -3
  190. data/app/views/workarea/admin/data_file_imports/new.html.haml +4 -2
  191. data/app/views/workarea/admin/data_file_mailer/export.html.haml +2 -0
  192. data/app/views/workarea/admin/data_file_mailer/import.html.haml +2 -0
  193. data/app/views/workarea/admin/data_file_mailer/import_failure.html.haml +2 -0
  194. data/app/views/workarea/admin/facets/_applied.html.haml +1 -1
  195. data/app/views/workarea/admin/featured_products/_selected.html.haml +3 -2
  196. data/app/views/workarea/admin/featured_products/_unselected.html.haml +3 -1
  197. data/app/views/workarea/admin/featured_products/edit.html.haml +3 -3
  198. data/app/views/workarea/admin/featured_products/select.html.haml +0 -1
  199. data/app/views/workarea/admin/fulfillment_skus/_aux_navigation.html.haml +3 -0
  200. data/app/views/workarea/admin/fulfillment_skus/_cards.html.haml +57 -0
  201. data/app/views/workarea/admin/fulfillment_skus/_summary.html.haml +6 -0
  202. data/app/views/workarea/admin/fulfillment_skus/edit.html.haml +53 -0
  203. data/app/views/workarea/admin/fulfillment_skus/index.html.haml +75 -0
  204. data/app/views/workarea/admin/fulfillment_skus/new.html.haml +41 -0
  205. data/app/views/workarea/admin/fulfillment_skus/show.html.haml +17 -0
  206. data/app/views/workarea/admin/fulfillment_tokens/index.html.haml +73 -0
  207. data/app/views/workarea/admin/fulfillments/show.html.haml +41 -6
  208. data/app/views/workarea/admin/insights/_most_discounted_products.html.haml +4 -4
  209. data/app/views/workarea/admin/inventory_skus/show.html.haml +1 -1
  210. data/app/views/workarea/admin/navigation_menus/_summary.html.haml +1 -1
  211. data/app/views/workarea/admin/navigation_menus/edit.html.haml +1 -1
  212. data/app/views/workarea/admin/navigation_menus/index.html.haml +3 -1
  213. data/app/views/workarea/admin/navigation_redirects/index.html.haml +0 -5
  214. data/app/views/workarea/admin/navigation_taxons/index.html.haml +20 -4
  215. data/app/views/workarea/admin/orders/_cards.html.haml +23 -5
  216. data/app/views/workarea/admin/orders/attributes.html.haml +4 -1
  217. data/app/views/workarea/admin/orders/fraud.html.haml +43 -0
  218. data/app/views/workarea/admin/orders/index.html.haml +1 -0
  219. data/app/views/workarea/admin/orders/timeline.html.haml +1 -1
  220. data/app/views/workarea/admin/pricing_discount_code_lists/_cards.html.haml +1 -1
  221. data/app/views/workarea/admin/pricing_discount_code_lists/promo_codes.html.haml +1 -1
  222. data/app/views/workarea/admin/pricing_discount_redemptions/index.html.haml +44 -0
  223. data/app/views/workarea/admin/pricing_discounts/_cards.html.haml +22 -0
  224. data/app/views/workarea/admin/pricing_discounts/conditions/_segments.html.haml +5 -0
  225. data/app/views/workarea/admin/pricing_discounts/edit.html.haml +5 -15
  226. data/app/views/workarea/admin/pricing_discounts/index.html.haml +1 -0
  227. data/app/views/workarea/admin/pricing_discounts/properties/_buy_some_get_some.html.haml +1 -0
  228. data/app/views/workarea/admin/pricing_discounts/properties/_category.html.haml +1 -0
  229. data/app/views/workarea/admin/pricing_discounts/properties/_free_gift.html.haml +1 -0
  230. data/app/views/workarea/admin/pricing_discounts/properties/_order_total.html.haml +1 -0
  231. data/app/views/workarea/admin/pricing_discounts/properties/_product.html.haml +1 -0
  232. data/app/views/workarea/admin/pricing_discounts/properties/_product_attribute.html.haml +2 -1
  233. data/app/views/workarea/admin/pricing_discounts/properties/_quantity_fixed_price.html.haml +1 -0
  234. data/app/views/workarea/admin/pricing_discounts/properties/_shipping.html.haml +1 -0
  235. data/app/views/workarea/admin/pricing_skus/_cards.html.haml +7 -7
  236. data/app/views/workarea/admin/pricing_skus/edit.html.haml +5 -5
  237. data/app/views/workarea/admin/pricing_skus/index.html.haml +4 -4
  238. data/app/views/workarea/admin/pricing_skus/new.html.haml +6 -9
  239. data/app/views/workarea/admin/product_rules/_card.html.haml +2 -2
  240. data/app/views/workarea/admin/product_rules/_form.html.haml +1 -0
  241. data/app/views/workarea/admin/product_rules/index.html.haml +2 -0
  242. data/app/views/workarea/admin/releases/_cards.html.haml +50 -12
  243. data/app/views/workarea/admin/releases/_publish.html.haml +1 -1
  244. data/app/views/workarea/admin/releases/edit.html.haml +33 -46
  245. data/app/views/workarea/admin/releases/index.html.haml +81 -90
  246. data/app/views/workarea/admin/releases/list.html.haml +107 -0
  247. data/app/views/workarea/admin/releases/original.html.haml +50 -0
  248. data/app/views/workarea/admin/releases/show.html.haml +3 -17
  249. data/app/views/workarea/admin/releases/undo.html.haml +64 -0
  250. data/app/views/workarea/admin/reports/average_order_value.html.haml +1 -1
  251. data/app/views/workarea/admin/reports/customers.html.haml +4 -0
  252. data/app/views/workarea/admin/reports/first_time_vs_returning_sales.html.haml +1 -1
  253. data/app/views/workarea/admin/reports/reference.html.haml +19 -60
  254. data/app/views/workarea/admin/reports/sales_by_country.html.haml +6 -0
  255. data/app/views/workarea/admin/reports/sales_by_product.html.haml +6 -0
  256. data/app/views/workarea/admin/reports/sales_by_sku.html.haml +6 -0
  257. data/app/views/workarea/admin/reports/sales_by_tender.html.haml +30 -0
  258. data/app/views/workarea/admin/reports/sales_over_time.html.haml +5 -1
  259. data/app/views/workarea/admin/reports/timeline.html.haml +20 -0
  260. data/app/views/workarea/admin/search_customizations/_cards.html.haml +1 -0
  261. data/app/views/workarea/admin/search_customizations/edit.html.haml +1 -1
  262. data/app/views/workarea/admin/search_customizations/index.html.haml +1 -0
  263. data/app/views/workarea/admin/searches/show.html.haml +6 -5
  264. data/app/views/workarea/admin/segment_overrides/show.html.haml +29 -0
  265. data/app/views/workarea/admin/segment_rules/_form.html.haml +13 -0
  266. data/app/views/workarea/admin/segment_rules/fields/_browser_info.html.haml +13 -0
  267. data/app/views/workarea/admin/segment_rules/fields/_geolocation.html.haml +4 -0
  268. data/app/views/workarea/admin/segment_rules/fields/_last_order.html.haml +3 -0
  269. data/app/views/workarea/admin/segment_rules/fields/_logged_in.html.haml +2 -0
  270. data/app/views/workarea/admin/segment_rules/fields/_orders.html.haml +5 -0
  271. data/app/views/workarea/admin/segment_rules/fields/_revenue.html.haml +9 -0
  272. data/app/views/workarea/admin/segment_rules/fields/_sessions.html.haml +5 -0
  273. data/app/views/workarea/admin/segment_rules/fields/_tags.html.haml +4 -0
  274. data/app/views/workarea/admin/segment_rules/fields/_traffic_referrer.html.haml +13 -0
  275. data/app/views/workarea/admin/segment_rules/geolocation_options.json.jbuilder +4 -0
  276. data/app/views/workarea/admin/segment_rules/index.html.haml +25 -0
  277. data/app/views/workarea/admin/segment_rules/summaries/_browser_info.html.haml +11 -0
  278. data/app/views/workarea/admin/segment_rules/summaries/_geolocation.html.haml +2 -0
  279. data/app/views/workarea/admin/segment_rules/summaries/_last_order.html.haml +2 -0
  280. data/app/views/workarea/admin/segment_rules/summaries/_logged_in.html.haml +5 -0
  281. data/app/views/workarea/admin/segment_rules/summaries/_orders.html.haml +6 -0
  282. data/app/views/workarea/admin/segment_rules/summaries/_revenue.html.haml +7 -0
  283. data/app/views/workarea/admin/segment_rules/summaries/_sessions.html.haml +6 -0
  284. data/app/views/workarea/admin/segment_rules/summaries/_tags.html.haml +2 -0
  285. data/app/views/workarea/admin/segment_rules/summaries/_traffic_referrer.html.haml +10 -0
  286. data/app/views/workarea/admin/segments/_cards.html.haml +81 -0
  287. data/app/views/workarea/admin/segments/_publish.html.haml +10 -0
  288. data/app/views/workarea/admin/segments/edit.html.haml +41 -0
  289. data/app/views/workarea/admin/segments/index.html.haml +64 -0
  290. data/app/views/workarea/admin/segments/insights.html.haml +52 -0
  291. data/app/views/workarea/admin/segments/show.html.haml +20 -0
  292. data/app/views/workarea/admin/shared/_active_field.html.haml +17 -0
  293. data/app/views/workarea/admin/shared/_bulk_actions.html.haml +10 -8
  294. data/app/views/workarea/admin/shared/_primary_nav.html.haml +5 -2
  295. data/app/views/workarea/admin/shared/_toggle_button.html.haml +1 -1
  296. data/app/views/workarea/admin/shipping_services/edit.html.haml +0 -4
  297. data/app/views/workarea/admin/shipping_services/new.html.haml +0 -4
  298. data/app/views/workarea/admin/status_report_mailer/report.html.haml +83 -86
  299. data/app/views/workarea/admin/style_guides/components/_activity.html.haml +3 -5
  300. data/app/views/workarea/admin/style_guides/components/_activity_group.html.haml +9 -15
  301. data/app/views/workarea/admin/style_guides/components/_box.html.haml +12 -7
  302. data/app/views/workarea/admin/style_guides/components/_checkbox.html.haml +21 -2
  303. data/app/views/workarea/admin/style_guides/components/_release_changeset.html.haml +3 -5
  304. data/app/views/workarea/admin/tax_rates/edit.html.haml +64 -0
  305. data/app/views/workarea/admin/tax_rates/index.html.haml +59 -20
  306. data/app/views/workarea/admin/tax_rates/new.html.haml +62 -0
  307. data/app/views/workarea/admin/timeline/show.html.haml +34 -41
  308. data/app/views/workarea/admin/toolbar/show.html.haml +11 -1
  309. data/app/views/workarea/admin/trash/index.html.haml +1 -1
  310. data/app/views/workarea/admin/users/edit.html.haml +60 -57
  311. data/app/views/workarea/admin/users/index.html.haml +1 -3
  312. data/app/views/workarea/admin/users/index.json.jbuilder +8 -0
  313. data/app/views/workarea/admin/users/insights.html.haml +31 -23
  314. data/app/views/workarea/admin/users/permissions.html.haml +10 -1
  315. data/app/views/workarea/admin/users/show.html.haml +7 -0
  316. data/config/locales/en.yml +569 -124
  317. data/config/routes.rb +57 -5
  318. data/lib/workarea/mailer_previews/admin/status_report_mailer_preview.rb +3 -1
  319. data/public/workarea/import_samples/tax_rates.csv +3 -3
  320. data/test/dummy/config/initializers/session_store.rb +1 -1
  321. data/test/helpers/workarea/admin/application_helper_test.rb +0 -16
  322. data/test/helpers/workarea/admin/icons_helper_test.rb +9 -0
  323. data/test/helpers/workarea/admin/products_helper_test.rb +73 -0
  324. data/test/helpers/workarea/admin/releases_helper_test.rb +0 -49
  325. data/test/helpers/workarea/admin/settings_helper_test.rb +22 -1
  326. data/test/integration/workarea/admin/assets_integration_test.rb +2 -5
  327. data/test/integration/workarea/admin/comments_integration_test.rb +27 -7
  328. data/test/integration/workarea/admin/configurations_integration_test.rb +21 -0
  329. data/test/integration/workarea/admin/create_release_undos_integration_test.rb +29 -0
  330. data/test/integration/workarea/admin/create_segments_integration_test.rb +26 -0
  331. data/test/integration/workarea/admin/data_file_imports_integration_test.rb +34 -8
  332. data/test/integration/workarea/admin/fulfillment_skus_integration_test.rb +55 -0
  333. data/test/integration/workarea/admin/fulfillment_tokens_integration_test.rb +43 -0
  334. data/test/integration/workarea/admin/guest_browsings_integration_test.rb +8 -32
  335. data/test/integration/workarea/admin/impersonations_integration_test.rb +13 -57
  336. data/test/integration/workarea/admin/jump_to_integration_test.rb +0 -29
  337. data/test/integration/workarea/admin/pricing_overrides_integration_test.rb +11 -0
  338. data/test/integration/workarea/admin/products_integration_test.rb +0 -13
  339. data/test/integration/workarea/admin/releases_integration_test.rb +71 -87
  340. data/test/integration/workarea/admin/segment_overrides_integration_test.rb +28 -0
  341. data/test/integration/workarea/admin/segment_rules_integration_test.rb +49 -0
  342. data/test/integration/workarea/admin/segments_integration_test.rb +31 -0
  343. data/test/integration/workarea/admin/shipping_service_integration_test.rb +1 -3
  344. data/test/integration/workarea/admin/tax_categories_integration_test.rb +1 -1
  345. data/test/integration/workarea/admin/unsubscribes_integration_test.rb +32 -0
  346. data/test/integration/workarea/admin/users_integration_test.rb +32 -0
  347. data/test/javascripts/fixtures/release_reminder.html.haml +3 -3
  348. data/test/javascripts/new_navigation_taxons_spec.js +1 -12
  349. data/test/mailers/workarea/admin/comment_mailer_test.rb +35 -0
  350. data/test/mailers/workarea/admin/status_report_mailer_test.rb +30 -25
  351. data/test/system/workarea/admin/alerts_system_test.rb +2 -1
  352. data/test/system/workarea/admin/bulk_actions_system_test.rb +1 -1
  353. data/test/system/workarea/admin/comments_system_test.rb +43 -0
  354. data/test/system/workarea/admin/content_system_test.rb +6 -0
  355. data/test/system/workarea/admin/dashboard_system_test.rb +8 -9
  356. data/test/system/workarea/admin/data_files_system_test.rb +1 -1
  357. data/test/system/workarea/admin/discounts_system_test.rb +18 -0
  358. data/test/system/workarea/admin/featured_products_system_test.rb +3 -0
  359. data/test/system/workarea/admin/fulfillment_skus_system_test.rb +48 -0
  360. data/test/system/workarea/admin/impersonation_system_test.rb +5 -2
  361. data/test/system/workarea/admin/orders_system_test.rb +32 -21
  362. data/test/system/workarea/admin/payment_transactions_system_test.rb +34 -32
  363. data/test/system/workarea/admin/releases_system_test.rb +151 -37
  364. data/test/system/workarea/admin/reports_system_test.rb +29 -0
  365. data/test/system/workarea/admin/segments_system_test.rb +124 -0
  366. data/test/system/workarea/admin/tax_categories_system_test.rb +166 -16
  367. data/test/system/workarea/admin/users_system_test.rb +15 -0
  368. data/test/view_models/workarea/admin/changeset_view_model_test.rb +59 -9
  369. data/test/view_models/workarea/admin/code_list_view_model_test.rb +0 -5
  370. data/test/view_models/workarea/admin/content_view_model_test.rb +13 -11
  371. data/test/view_models/workarea/admin/insights/product_view_model_test.rb +4 -4
  372. data/test/view_models/workarea/admin/insights/segment_view_model_test.rb +73 -0
  373. data/test/view_models/workarea/admin/product_rules_preview_view_model_test.rb +37 -0
  374. data/test/view_models/workarea/admin/product_view_model_test.rb +13 -19
  375. data/test/view_models/workarea/admin/release_calendar_view_model_test.rb +16 -0
  376. data/test/view_models/workarea/admin/release_view_model_test.rb +13 -56
  377. data/test/view_models/workarea/admin/releases_feed_view_model_test.rb +8 -21
  378. data/test/view_models/workarea/admin/reports/timeline_view_model_test.rb +76 -0
  379. data/test/view_models/workarea/admin/search_analysis_view_model_test.rb +14 -16
  380. data/test/view_models/workarea/admin/timeline_view_model_test.rb +1 -1
  381. metadata +128 -17
  382. data/app/views/workarea/admin/featured_products/_release_preview_warning.html.haml +0 -4
  383. data/app/views/workarea/admin/releases/calendar.html.haml +0 -54
  384. data/test/dummy/tmp/screenshots/.keep +0 -0
  385. data/test/helpers/workarea/admin/content_helper_test.rb +0 -17
  386. data/test/integration/workarea/admin/index_tracking_integration_test.rb +0 -21
  387. data/test/javascripts/fixtures/existing_navigation_taxon.html.haml +0 -10
  388. data/test/view_models/workarea/admin/pricing_sku_view_model_test.rb +0 -84
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c84756944dc5f44d22e54a2aa4005e30d9781b6d469e82e5514f3850c252569
4
- data.tar.gz: ae603e360abc2b179fe563b97cc1507a17314f5a2f4f383143e44fa72e29473e
3
+ metadata.gz: aec0b614d6b570076fb116adfeed5287de5b426980c35c94f00381231847ad16
4
+ data.tar.gz: dc19afbd0f72de145970af4efbc99f7c41cdaaa9eec64364205e288df7c372a9
5
5
  SHA512:
6
- metadata.gz: 6937f139d1cd3f7ce9b9e470223f41dc9e7abfe6b14e8766e4b9e68ab37101a45f93bb877f74f786a92208a13d13300b3ec39cb116772eb6004ca71e087893bd
7
- data.tar.gz: 720b5c953ac40eab32674a0ddf27e750bb283c3adc9bcde77da1c892f989d169b557c14d5c73c6dd0e312f26bc72d9872ccf75f2c7edf171a00663f041a61d6f
6
+ metadata.gz: a79a8040de72e78e71b21dcac49fc92c8942c04963b20f3c233d7cc137dd1ff7c453c6e6bfc2385563a4c0955a979e0da69f628c0a547cb11da9c67ce910cb37
7
+ data.tar.gz: e00445f06304a00ed467c976f63d4d652ebe032eccc394c4fc9661e154ecb969e54ea9b55f62656a49ad1e8e5c8402bbac9f754603453b1fec7350c310131d98
data/LICENSE.txt ADDED
@@ -0,0 +1,52 @@
1
+ WebLinc
2
+ Business Source License
3
+
4
+ Licensor: WebLinc Corporation, 22 S. 3rd Street, 2nd Floor, Philadelphia PA 19106
5
+
6
+ Licensed Work: Workarea Commerce Platform
7
+ The Licensed Work is (c) 2019 WebLinc Corporation
8
+
9
+ Additional Use Grant:
10
+ You may make production use of the Licensed Work without an additional license agreement with WebLinc so long as you do not use the Licensed Work for a Commerce Service.
11
+
12
+ A "Commerce Service" is a commercial offering that allows third parties (other than your employees and contractors) to access the functionality of the Licensed Work by creating or managing commerce functionality, the products, taxonomy, assets and/or content of which are controlled by such third parties.
13
+
14
+ For information about obtaining an additional license agreement with WebLinc, contact licensing@workarea.com.
15
+
16
+ Change Date: 2019-08-20
17
+
18
+ Change License: Version 2.0 or later of the GNU General Public License as published by the Free Software Foundation
19
+
20
+ Terms
21
+
22
+ The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use.
23
+
24
+ Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate.
25
+
26
+ If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work.
27
+
28
+ All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor.
29
+
30
+ You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work.
31
+
32
+ Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work.
33
+
34
+ This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License). TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works and to refer to it using the trademark "Business Source License" as long as you comply with the Covenants of Licensor below.
35
+
36
+ Covenants of Licensor
37
+ In consideration of the right to use this License’s text and the "Business Source License" name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor:
38
+
39
+ To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where "compatible" means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation.
40
+
41
+ To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text "None."
42
+
43
+ To specify a Change Date.
44
+
45
+ Not to modify this License in any other way.
46
+
47
+ Notice
48
+ The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License.
49
+
50
+ For more information on the use of the Business Source License generally, please visit the Adopting and Developing Business Source License FAQ.
51
+
52
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved. "Business Source License" is a trademark of MariaDB Corporation Ab.
@@ -40,6 +40,7 @@ window.feature.testAll();
40
40
  spectrum
41
41
  Chart.bundle
42
42
  chartkick
43
+ tribute
43
44
  ).each do |asset|
44
45
  require_asset asset
45
46
  end
@@ -79,6 +80,8 @@ window.feature.testAll();
79
80
  workarea/admin/templates/direct_upload_processing
80
81
  workarea/admin/templates/direct_upload_table_row
81
82
  workarea/admin/templates/expandable_button
83
+ workarea/admin/templates/jump_to_menu
84
+ workarea/admin/templates/chart_legend
82
85
  ).each do |asset|
83
86
  require_asset asset
84
87
  end
@@ -127,12 +130,12 @@ window.feature.testAll();
127
130
  workarea/core/modules/form_submitting_controls
128
131
  workarea/core/modules/jquery
129
132
  workarea/core/modules/style_guide_empty_links
130
- workarea/core/modules/style_guide_autocomplete_fields
131
133
  workarea/core/modules/style_guide_accordions
132
134
  workarea/core/modules/reveal_password
133
135
  workarea/core/modules/local_time
134
136
  workarea/core/modules/date
135
137
  workarea/core/modules/copy_to_clipboard
138
+ workarea/admin/modules/style_guide_autocomplete_fields
136
139
  workarea/admin/modules/categorized_autocomplete_fields
137
140
  workarea/admin/modules/messages
138
141
  workarea/admin/modules/takeover
@@ -192,6 +195,13 @@ window.feature.testAll();
192
195
  workarea/admin/modules/direct_uploads
193
196
  workarea/admin/modules/pricing_overrides
194
197
  workarea/admin/modules/expandables
198
+ workarea/admin/modules/impersonation_notification
199
+ workarea/admin/modules/timeline_report_chart
200
+ workarea/admin/modules/jump_to_menus
201
+ workarea/admin/modules/active_by_segment_tooltips
202
+ workarea/admin/modules/toggle_elements
203
+ workarea/admin/modules/selects
204
+ workarea/admin/modules/tribute_areas
195
205
  ).each do |asset|
196
206
  require_asset asset
197
207
  end
@@ -22,6 +22,8 @@
22
22
  * @property {object} forms
23
23
  * @property {object} directUploads
24
24
  * @property {object} expandable
25
+ * @property {object} timelineReportChart
26
+ * @property {object} tributeAreas
25
27
  */
26
28
 
27
29
  WORKAREA.config.datetimepickerFields = {
@@ -673,6 +675,100 @@
673
675
  threshold: 350
674
676
  };
675
677
 
678
+ WORKAREA.config.impersonationNotification = {
679
+ excludedPaths: [
680
+ 'pricing_overrides',
681
+ 'segment_override'
682
+ ]
683
+ };
684
+
685
+ WORKAREA.config.timelineReportChart = {
686
+ initiallyActive: {
687
+ 'Revenue': true,
688
+ 'Releases': true
689
+ },
690
+
691
+ datasets: {
692
+ fill: false,
693
+ borderWidth: 2
694
+ },
695
+
696
+ colors: {
697
+ revenue: '#00b144',
698
+ orders: '#011eff',
699
+ units_sold: '#ff4070',
700
+ customers: '#ff8100',
701
+ releases: '#303541'
702
+ },
703
+
704
+ options: {
705
+ responsive: true,
706
+ title: {
707
+ display: false,
708
+ },
709
+ labels: {
710
+ usePointStyle: true
711
+ },
712
+ legend: {
713
+ display: false
714
+ },
715
+ tooltips: {
716
+ mode: 'index',
717
+ filter: function (item, data) {
718
+ var label = data.datasets[item.datasetIndex].label;
719
+ return label !== I18n.t('workarea.admin.reports.timeline.releases');
720
+ }
721
+ },
722
+ scales: {
723
+ xAxes: [
724
+ {
725
+ type: 'time',
726
+ time: {
727
+ parser: 'MM/DD/YYYY',
728
+ tooltipFormat: 'll'
729
+ },
730
+ scaleLabel: {
731
+ display: true,
732
+ labelString: I18n.t('workarea.admin.reports.timeline.date')
733
+ },
734
+ }
735
+ ],
736
+ yAxes: [
737
+ {
738
+ type: 'linear',
739
+ position: 'left',
740
+ id: 'money-axis',
741
+ gridLines: {
742
+ display: false
743
+ },
744
+ ticks: {
745
+ beginAtZero: true,
746
+ callback: function (value, index, values) {
747
+ return '$' + value;
748
+ }
749
+ }
750
+ },
751
+ {
752
+ type: 'linear',
753
+ display: true,
754
+ position: 'right',
755
+ id: 'unit-axis',
756
+ gridLines: {
757
+ display: false
758
+ },
759
+ ticks: {
760
+ beginAtZero: true
761
+ }
762
+ }
763
+ ]
764
+ }
765
+ }
766
+ };
767
+
768
+ WORKAREA.config.tributeAreas = {
769
+ trigger: '@'
770
+ };
771
+
676
772
 
677
773
  /**
678
774
  * Chart.js
@@ -0,0 +1,108 @@
1
+ /**
2
+ * @namespace WORKAREA.activeBySegmentTooltips
3
+ */
4
+ WORKAREA.registerModule('activeBySegmentTooltips', (function () {
5
+ 'use strict';
6
+
7
+ var hiddenInput = JST['workarea/core/templates/hidden_input'],
8
+
9
+ getSelectedOptionText = function ($select) {
10
+ return $select.find('option:selected').map(function (_i, option) {
11
+ return $.trim($(option).text());
12
+ }).toArray();
13
+ },
14
+
15
+ updateMessages = function ($link, $content) {
16
+ var $message = $link.find('.active-field__segments-message'),
17
+ names = getSelectedOptionText($content.find('select')),
18
+ text = I18n.t('workarea.admin.shared.active_field.by_segment', {
19
+ count: names.length,
20
+ name: names[0],
21
+ more_count: names.length - 1
22
+ });
23
+
24
+ if (_.isEmpty(names)) {
25
+ $message.html($('<span />').text(text));
26
+ } else {
27
+ $message.html($('<strong />').text(text));
28
+ }
29
+ },
30
+
31
+ buildInput = function (name, value) {
32
+ var input = hiddenInput({ name: name, value: value });
33
+ return $(input).data('activeBySegmentInput', true);
34
+ },
35
+
36
+ addHiddenInputs = function ($form, $content) {
37
+ $content
38
+ .find('select')
39
+ .each(function (index, select) {
40
+ var $select = $(select);
41
+
42
+ if (_.isEmpty($select.val())) {
43
+ $form.append(buildInput(select.name, ''));
44
+ } else {
45
+ _.forEach($select.val(), function (value) {
46
+ $form.append(buildInput(select.name, value));
47
+ });
48
+ }
49
+ });
50
+ },
51
+
52
+ removeHiddenInputs = function ($form) {
53
+ $form
54
+ .find('[type=hidden]')
55
+ .filter(function (index, input) {
56
+ return $(input).data('activeBySegmentInput') === true;
57
+ })
58
+ .remove();
59
+ },
60
+
61
+ updateFields = function ($content, $trigger) {
62
+ var $form = $trigger.closest('form');
63
+
64
+ removeHiddenInputs($form);
65
+ addHiddenInputs($form, $content);
66
+ updateMessages($trigger, $content);
67
+ },
68
+
69
+ getConfig = function (trigger, $content) {
70
+ return _.assign({}, WORKAREA.config.tooltipster, {
71
+ interactive: true,
72
+ content: $content,
73
+ trigger: 'custom',
74
+ triggerOpen: {
75
+ click: true
76
+ },
77
+ triggerClose: {
78
+ mouseleave: true
79
+ }
80
+ });
81
+ },
82
+
83
+ setup = function (index, trigger) {
84
+ var $content = $(trigger.hash),
85
+ $select = $content.find('[data-select]'),
86
+ handleChange = _.partial(updateFields, $content, $(trigger));
87
+
88
+ $select.on('change', handleChange);
89
+ $(trigger).tooltipster(getConfig(trigger, $content));
90
+ },
91
+
92
+ /**
93
+ * @method
94
+ * @name init
95
+ * @memberof WORKAREA.activeBySegmentTooltips
96
+ */
97
+ init = function ($scope) {
98
+ $('[data-active-by-segment-tooltip]', $scope)
99
+ .each(setup)
100
+ .on('click', function (event) {
101
+ event.preventDefault();
102
+ });
103
+ };
104
+
105
+ return {
106
+ init: init
107
+ };
108
+ }()));
@@ -32,7 +32,7 @@ WORKAREA.registerModule('calendars', (function () {
32
32
  resetCalendar = function (event) {
33
33
  var calendar = event.delegateTarget,
34
34
  today = new Date(),
35
- endpoint = WORKAREA.routes.admin.calendarReleasesPath();
35
+ endpoint = WORKAREA.routes.admin.releasesPath();
36
36
 
37
37
  event.preventDefault();
38
38
 
@@ -5,7 +5,7 @@ WORKAREA.registerModule('categorizedAutocompleteFields', (function () {
5
5
  'use strict';
6
6
 
7
7
  var getSource = function (request, response) {
8
- $.getJSON(WORKAREA.routes.admin.jumpToPath(), { q: request.term }, function (data) {
8
+ $.getJSON('/admin/jump_to', { q: request.term }, function (data) {
9
9
  response(data.results);
10
10
  });
11
11
  },
@@ -0,0 +1,44 @@
1
+ /**
2
+ * @namespace WORKAREA.impersonationNotification
3
+ */
4
+ WORKAREA.registerModule('impersonationNotification', (function () {
5
+ 'use strict';
6
+
7
+ var pathExcluded = function () {
8
+ var paths = WORKAREA.config.impersonationNotification.excludedPaths;
9
+
10
+ return _.reduce(paths, function (result, path) {
11
+ return _.includes(window.location.pathname, path);
12
+ }, false);
13
+ },
14
+
15
+ confirm = function ($form) {
16
+ var confirmed = window.confirm(
17
+ I18n.t('workarea.admin.actions.impersonation_confirmation', {
18
+ name: $form.data('impersonationNotification')
19
+ })
20
+ );
21
+
22
+ if (confirmed) { return; }
23
+
24
+ $form.trigger('submit');
25
+ },
26
+
27
+ /**
28
+ * @method
29
+ * @name init
30
+ * @memberof WORKAREA.impersonationNotification
31
+ */
32
+ init = _.once(function ($scope) {
33
+ var $form = $('[data-impersonation-notification]', $scope);
34
+
35
+ if (_.isEmpty($form)) { return; }
36
+ if (pathExcluded()) { return; }
37
+
38
+ confirm($form);
39
+ });
40
+
41
+ return {
42
+ init: init
43
+ };
44
+ }()));
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Define a `data-jump-to-menu` attribute on a container. This module will loop
3
+ * over any child with a `data-jump-to-menu-heading` attribute and use its
4
+ * numeric value as a way to build out a navigation UI that is stuck to the
5
+ * bottom right of the page. Each `data-jump-to-menu-heading` must also have a
6
+ * unique ID attribute value applied to the element in order to construct the
7
+ * links appropriately.
8
+ *
9
+ * @namespace WORKAREA.jumpToMenu
10
+ */
11
+ WORKAREA.registerModule('jumpToMenu', (function () {
12
+ 'use strict';
13
+
14
+ var menu = JST['workarea/admin/templates/jump_to_menu'],
15
+
16
+ scrollToAnchor = function (event) {
17
+ event.preventDefault();
18
+
19
+ $(window).scrollTop(
20
+ $(event.target.hash).offset().top - $('#header').height() - 8
21
+ );
22
+ },
23
+
24
+ buildMenu = function (container) {
25
+ var $headings = $('[data-jump-to-menu-heading]', container),
26
+ items = $headings.map(function (index, heading) {
27
+ return {
28
+ anchor: heading.id,
29
+ name: $(heading).text().trim(),
30
+ level: $(heading).data('jumpToMenuHeading')
31
+ };
32
+ }).toArray();
33
+
34
+ if (_.isEmpty(items)) { return; }
35
+
36
+ return $(menu({ items: items }));
37
+ },
38
+
39
+ setup = function (index, container) {
40
+ var $menu;
41
+
42
+ if ( ! _.isEmpty($('.jump-to-menu'))) {
43
+ window.console.warn(
44
+ 'WORKAREA.jumpToMenu.init: you may only have one Jump-To ' +
45
+ 'Menu on the page at a time.'
46
+ );
47
+
48
+ return;
49
+ }
50
+
51
+ $menu = buildMenu(container);
52
+
53
+ $menu.on('click', 'a', scrollToAnchor);
54
+
55
+ if ( ! _.isEmpty($('.workflow-bar'))) {
56
+ $menu.addClass('jump-to-menu--with-workflow-bar');
57
+ }
58
+
59
+ $('body').append($menu);
60
+ },
61
+
62
+ /**
63
+ * @method
64
+ * @name init
65
+ * @memberof WORKAREA.jumpToMenu
66
+ */
67
+ init = function ($scope) {
68
+ $('[data-jump-to-menu]', $scope).each(setup);
69
+ };
70
+
71
+ return {
72
+ init: init
73
+ };
74
+ }()));
@@ -23,9 +23,8 @@ WORKAREA.registerModule('newNavigationTaxons', (function () {
23
23
  createRemoteSelect = function (event) {
24
24
  var $typeSelect = $(event.currentTarget),
25
25
  $idSelect = $('[name=navigable_id]', event.delegateTarget),
26
- $section = $typeSelect.closest('[data-new-navigation-taxon]'),
27
26
  settings = getConfig($typeSelect),
28
- selected = $section.data('newNavigationTaxon');
27
+ selected = $typeSelect.data('newNavigationTaxon');
29
28
 
30
29
  if ($idSelect.is('.select2-hidden-accessible') && _.isUndefined(selected)) {
31
30
  destroyRemoteSelect($idSelect);
@@ -82,6 +82,7 @@ WORKAREA.registerModule('releaseReminder', (function () {
82
82
  */
83
83
  init = function ($scope) {
84
84
  $('.release-select--emphasize', $scope)
85
+ .has('.tooltip-content')
85
86
  .find('.release-select__container')
86
87
  .tooltipster(getTooltipsterConfig());
87
88
 
@@ -0,0 +1,33 @@
1
+ /**
2
+ * @namespace WORKAREA.selects
3
+ */
4
+ WORKAREA.registerModule('selects', (function () {
5
+ 'use strict';
6
+
7
+ /**
8
+ * @method
9
+ * @name init
10
+ * @memberof WORKAREA.selects
11
+ */
12
+ var getConfig = function (select) {
13
+ var config = _.assign({}, $(select).data('select'));
14
+
15
+ if ( ! _.isUndefined(config.dropdownParent)) {
16
+ config.dropdownParent = $(config.dropdownParent);
17
+ }
18
+
19
+ return config;
20
+ },
21
+
22
+ setup = function(index, select) {
23
+ $(select).select2(getConfig(select));
24
+ },
25
+
26
+ init = function ($scope) {
27
+ $('[data-select]', $scope).each(setup);
28
+ };
29
+
30
+ return {
31
+ init: init
32
+ };
33
+ }()));
@@ -0,0 +1,42 @@
1
+ /**
2
+ * @namespace WORKAREA.styleGuideAutocompleteFields
3
+ */
4
+ WORKAREA.registerModule('styleGuideAutocompleteFields', (function () {
5
+ 'use strict';
6
+
7
+ var AUTOCOMPLETE_DATA = [
8
+ 'Small red sweater',
9
+ 'Medium red sweater',
10
+ 'Large red sweater',
11
+ 'Small blue sweater',
12
+ 'Medium blue sweater',
13
+ 'Large blue sweater',
14
+ 'Small green sweater',
15
+ 'Medium green sweater',
16
+ 'Large green sweater',
17
+ 'Small white sweater',
18
+ 'Medium white sweater',
19
+ 'Large white sweater',
20
+ 'Small black sweater',
21
+ 'Medium black sweater',
22
+ 'Large black sweater',
23
+ 'Small yellow sweater',
24
+ 'Medium yellow sweater',
25
+ 'Large yellow sweater'
26
+ ],
27
+
28
+ /**
29
+ * @method
30
+ * @name init
31
+ * @memberof WORKAREA.styleGuideAutocompleteFields
32
+ */
33
+ init = function ($scope) {
34
+ $('[data-style-guide-autocomplete-field]', $scope).autocomplete({
35
+ source: AUTOCOMPLETE_DATA
36
+ });
37
+ };
38
+
39
+ return {
40
+ init: init
41
+ };
42
+ }()));
@@ -0,0 +1,105 @@
1
+ /**
2
+ * @namespace WORKAREA.timelineReportChart
3
+ */
4
+ WORKAREA.registerModule('timelineReportChart', (function () {
5
+ 'use strict';
6
+
7
+ var updateChart = function (chart, event) {
8
+ var $item = $(event.target).closest('.chart-legend__list-item'),
9
+ dataset = chart.data.datasets[event.target.value];
10
+
11
+ if (event.target.checked) {
12
+ dataset.hidden = false;
13
+ $item.removeClass('chart-legend__list-item--disabled');
14
+ } else {
15
+ dataset.hidden = true;
16
+ $item.addClass('chart-legend__list-item--disabled');
17
+ }
18
+
19
+ chart.update();
20
+ },
21
+
22
+ setupLegend = function (chart) {
23
+ var legend = JST['workarea/admin/templates/chart_legend']({
24
+ datasets: chart.data.datasets,
25
+ enabled: WORKAREA.config.timelineReportChart.initiallyActive
26
+ });
27
+
28
+ $('#timeline-report-chart-legend')
29
+ .html(legend)
30
+ .on('change', '[type=checkbox]', _.partial(updateChart, chart))
31
+ .find('[type=checkbox]')
32
+ .trigger('change');
33
+ },
34
+
35
+ transformDataset = function (dataset, type) {
36
+ return _.map(dataset, function (item) {
37
+ var data = { x: new Date(item.x) };
38
+
39
+ if (type === 'releases') {
40
+ data.y = item.y > 0 ? 0 : null;
41
+ data.releaseCount = item.y;
42
+ } else {
43
+ data.y = item.y || 0;
44
+ }
45
+
46
+ return data;
47
+ });
48
+ },
49
+
50
+ buildDatasets = function (datasets) {
51
+ return _.map(datasets, function (dataset, type) {
52
+ var config = WORKAREA.config.timelineReportChart.datasets,
53
+ color = WORKAREA.config.timelineReportChart.colors[type],
54
+ dataConfig = _.merge({}, config, {
55
+ label: I18n.t('workarea.admin.reports.timeline.' + type),
56
+ borderColor: color,
57
+ backgroundColor: color,
58
+ });
59
+
60
+ if (type === 'revenue') {
61
+ dataConfig.yAxisID = 'money-axis';
62
+ } else {
63
+ dataConfig.yAxisID = 'unit-axis';
64
+ }
65
+
66
+ if (type === 'releases') {
67
+ dataConfig.pointStyle = 'triangle';
68
+ dataConfig.radius = 10;
69
+ dataConfig.hoverRadius = 13;
70
+ }
71
+
72
+ dataConfig.data = transformDataset(dataset, type);
73
+
74
+ return dataConfig;
75
+ });
76
+ },
77
+
78
+ getConfig = function (data) {
79
+ return {
80
+ type: 'line',
81
+ data: {
82
+ labels: _.map(data.labels, function (value) {
83
+ return new Date(value);
84
+ }),
85
+ datasets: buildDatasets(data.datasets)
86
+ },
87
+ options: WORKAREA.config.timelineReportChart.options
88
+ };
89
+ },
90
+
91
+ setup = function (index, canvas) {
92
+ var data = $(canvas).data('timelineReportChart'),
93
+ chart = new Chart(canvas.getContext('2d'), getConfig(data));
94
+
95
+ setupLegend(chart);
96
+ },
97
+
98
+ init = function ($scope) {
99
+ $('[data-timeline-report-chart]', $scope).each(setup);
100
+ };
101
+
102
+ return {
103
+ init: init
104
+ };
105
+ }()));