harpiya_core 4.3.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +26 -0
- data/Rakefile +15 -0
- data/app/assets/config/harpiya_core_manifest.js +1 -0
- data/app/assets/images/logo/harpiya_50.png +0 -0
- data/app/assets/images/noimage/large.png +0 -0
- data/app/assets/images/noimage/mini.png +0 -0
- data/app/assets/images/noimage/product.png +0 -0
- data/app/assets/images/noimage/small.png +0 -0
- data/app/assets/javascripts/harpiya.js +78 -0
- data/app/controllers/harpiya/base_controller.rb +14 -0
- data/app/controllers/harpiya/errors_controller.rb +11 -0
- data/app/finders/concerns/harpiya/product_filterable.rb +9 -0
- data/app/finders/harpiya/addresses/find.rb +6 -0
- data/app/finders/harpiya/base_finder.rb +14 -0
- data/app/finders/harpiya/countries/find.rb +39 -0
- data/app/finders/harpiya/credit_cards/find.rb +12 -0
- data/app/finders/harpiya/line_items/find_by_variant.rb +13 -0
- data/app/finders/harpiya/menus/find.rb +11 -0
- data/app/finders/harpiya/option_values/find_available.rb +20 -0
- data/app/finders/harpiya/orders/find_complete.rb +69 -0
- data/app/finders/harpiya/orders/find_current.rb +34 -0
- data/app/finders/harpiya/product_properties/find_available.rb +20 -0
- data/app/finders/harpiya/products/find.rb +242 -0
- data/app/finders/harpiya/taxons/find.rb +82 -0
- data/app/finders/harpiya/variants/option_types_finder.rb +21 -0
- data/app/finders/harpiya/variants/visible_finder.rb +22 -0
- data/app/helpers/harpiya/base_helper.rb +228 -0
- data/app/helpers/harpiya/currency_helper.rb +34 -0
- data/app/helpers/harpiya/locale_helper.rb +35 -0
- data/app/helpers/harpiya/mail_helper.rb +29 -0
- data/app/helpers/harpiya/products_helper.rb +182 -0
- data/app/mailers/harpiya/base_mailer.rb +46 -0
- data/app/mailers/harpiya/order_mailer.rb +26 -0
- data/app/mailers/harpiya/reimbursement_mailer.rb +12 -0
- data/app/mailers/harpiya/shipment_mailer.rb +12 -0
- data/app/mailers/harpiya/test_mailer.rb +8 -0
- data/app/models/concerns/harpiya/adjustment_source.rb +58 -0
- data/app/models/concerns/harpiya/calculated_adjustments.rb +35 -0
- data/app/models/concerns/harpiya/default_price.rb +36 -0
- data/app/models/concerns/harpiya/display_link.rb +34 -0
- data/app/models/concerns/harpiya/display_money.rb +32 -0
- data/app/models/concerns/harpiya/filter_param.rb +21 -0
- data/app/models/concerns/harpiya/named_type.rb +12 -0
- data/app/models/concerns/harpiya/number_as_param.rb +9 -0
- data/app/models/concerns/harpiya/product_scopes.rb +310 -0
- data/app/models/concerns/harpiya/ransackable_attributes.rb +23 -0
- data/app/models/concerns/harpiya/user_address.rb +51 -0
- data/app/models/concerns/harpiya/user_methods.rb +90 -0
- data/app/models/concerns/harpiya/user_payment_source.rb +21 -0
- data/app/models/concerns/harpiya/user_reporting.rb +22 -0
- data/app/models/concerns/harpiya/vat_price_calculation.rb +48 -0
- data/app/models/friendly_id/slug_decorator.rb +9 -0
- data/app/models/harpiya/ability.rb +93 -0
- data/app/models/harpiya/address.rb +245 -0
- data/app/models/harpiya/adjustable/adjuster/base.rb +25 -0
- data/app/models/harpiya/adjustable/adjuster/promotion.rb +41 -0
- data/app/models/harpiya/adjustable/adjuster/tax.rb +26 -0
- data/app/models/harpiya/adjustable/adjustments_updater.rb +51 -0
- data/app/models/harpiya/adjustable/promotion_accumulator.rb +78 -0
- data/app/models/harpiya/adjustment.rb +109 -0
- data/app/models/harpiya/app_configuration.rb +85 -0
- data/app/models/harpiya/app_dependencies.rb +87 -0
- data/app/models/harpiya/asset.rb +8 -0
- data/app/models/harpiya/asset/support/active_storage.rb +25 -0
- data/app/models/harpiya/base.rb +41 -0
- data/app/models/harpiya/calculator.rb +44 -0
- data/app/models/harpiya/calculator/default_tax.rb +58 -0
- data/app/models/harpiya/calculator/flat_percent_item_total.rb +22 -0
- data/app/models/harpiya/calculator/flat_rate.rb +20 -0
- data/app/models/harpiya/calculator/flexi_rate.rb +30 -0
- data/app/models/harpiya/calculator/percent_on_line_item.rb +22 -0
- data/app/models/harpiya/calculator/price_sack.rb +29 -0
- data/app/models/harpiya/calculator/returns/default_refund_amount.rb +40 -0
- data/app/models/harpiya/calculator/shipping/flat_percent_item_total.rb +22 -0
- data/app/models/harpiya/calculator/shipping/flat_rate.rb +18 -0
- data/app/models/harpiya/calculator/shipping/flexi_rate.rb +35 -0
- data/app/models/harpiya/calculator/shipping/per_item.rb +22 -0
- data/app/models/harpiya/calculator/shipping/price_sack.rb +28 -0
- data/app/models/harpiya/calculator/tiered_flat_rate.rb +38 -0
- data/app/models/harpiya/calculator/tiered_percent.rb +45 -0
- data/app/models/harpiya/classification.rb +15 -0
- data/app/models/harpiya/country.rb +58 -0
- data/app/models/harpiya/credit_card.rb +193 -0
- data/app/models/harpiya/customer_return.rb +68 -0
- data/app/models/harpiya/exchange.rb +50 -0
- data/app/models/harpiya/fulfilment_changer.rb +159 -0
- data/app/models/harpiya/gateway.rb +81 -0
- data/app/models/harpiya/gateway/bogus.rb +92 -0
- data/app/models/harpiya/gateway/bogus_simple.rb +24 -0
- data/app/models/harpiya/icon.rb +9 -0
- data/app/models/harpiya/image.rb +74 -0
- data/app/models/harpiya/image/configuration/active_storage.rb +53 -0
- data/app/models/harpiya/inventory_unit.rb +132 -0
- data/app/models/harpiya/legacy_user.rb +13 -0
- data/app/models/harpiya/line_item.rb +178 -0
- data/app/models/harpiya/log_entry.rb +17 -0
- data/app/models/harpiya/menu.rb +62 -0
- data/app/models/harpiya/menu_item.rb +76 -0
- data/app/models/harpiya/option_type.rb +42 -0
- data/app/models/harpiya/option_type_prototype.rb +9 -0
- data/app/models/harpiya/option_value.rb +37 -0
- data/app/models/harpiya/option_value_variant.rb +9 -0
- data/app/models/harpiya/order.rb +751 -0
- data/app/models/harpiya/order/address_book.rb +73 -0
- data/app/models/harpiya/order/checkout.rb +319 -0
- data/app/models/harpiya/order/currency_updater.rb +37 -0
- data/app/models/harpiya/order/payments.rb +74 -0
- data/app/models/harpiya/order/store_credit.rb +64 -0
- data/app/models/harpiya/order_inventory.rb +135 -0
- data/app/models/harpiya/order_merger.rb +66 -0
- data/app/models/harpiya/order_promotion.rb +16 -0
- data/app/models/harpiya/order_updater.rb +179 -0
- data/app/models/harpiya/payment.rb +285 -0
- data/app/models/harpiya/payment/gateway_options.rb +90 -0
- data/app/models/harpiya/payment/processing.rb +176 -0
- data/app/models/harpiya/payment_capture_event.rb +9 -0
- data/app/models/harpiya/payment_method.rb +87 -0
- data/app/models/harpiya/payment_method/check.rb +43 -0
- data/app/models/harpiya/payment_method/store_credit.rb +134 -0
- data/app/models/harpiya/preference.rb +5 -0
- data/app/models/harpiya/preferences/configuration.rb +68 -0
- data/app/models/harpiya/preferences/preferable.rb +133 -0
- data/app/models/harpiya/preferences/preferable_class_methods.rb +50 -0
- data/app/models/harpiya/preferences/scoped_store.rb +34 -0
- data/app/models/harpiya/preferences/store.rb +105 -0
- data/app/models/harpiya/price.rb +72 -0
- data/app/models/harpiya/product.rb +508 -0
- data/app/models/harpiya/product_option_type.rb +12 -0
- data/app/models/harpiya/product_promotion_rule.rb +9 -0
- data/app/models/harpiya/product_property.rb +43 -0
- data/app/models/harpiya/promotion.rb +241 -0
- data/app/models/harpiya/promotion/actions/create_adjustment.rb +26 -0
- data/app/models/harpiya/promotion/actions/create_item_adjustments.rb +33 -0
- data/app/models/harpiya/promotion/actions/create_line_items.rb +85 -0
- data/app/models/harpiya/promotion/actions/free_shipping.rb +19 -0
- data/app/models/harpiya/promotion/rules/country.rb +23 -0
- data/app/models/harpiya/promotion/rules/first_order.rb +38 -0
- data/app/models/harpiya/promotion/rules/item_total.rb +59 -0
- data/app/models/harpiya/promotion/rules/one_use_per_user.rb +23 -0
- data/app/models/harpiya/promotion/rules/option_value.rb +44 -0
- data/app/models/harpiya/promotion/rules/product.rb +67 -0
- data/app/models/harpiya/promotion/rules/taxon.rb +72 -0
- data/app/models/harpiya/promotion/rules/user.rb +31 -0
- data/app/models/harpiya/promotion/rules/user_logged_in.rb +18 -0
- data/app/models/harpiya/promotion_action.rb +25 -0
- data/app/models/harpiya/promotion_action_line_item.rb +9 -0
- data/app/models/harpiya/promotion_category.rb +6 -0
- data/app/models/harpiya/promotion_handler/cart.rb +41 -0
- data/app/models/harpiya/promotion_handler/coupon.rb +144 -0
- data/app/models/harpiya/promotion_handler/free_shipping.rb +31 -0
- data/app/models/harpiya/promotion_handler/page.rb +24 -0
- data/app/models/harpiya/promotion_handler/promotion_duplicator.rb +58 -0
- data/app/models/harpiya/promotion_rule.rb +44 -0
- data/app/models/harpiya/promotion_rule_taxon.rb +9 -0
- data/app/models/harpiya/promotion_rule_user.rb +9 -0
- data/app/models/harpiya/property.rb +50 -0
- data/app/models/harpiya/property_prototype.rb +9 -0
- data/app/models/harpiya/prototype.rb +14 -0
- data/app/models/harpiya/prototype_taxon.rb +9 -0
- data/app/models/harpiya/refund.rb +89 -0
- data/app/models/harpiya/refund_reason.rb +13 -0
- data/app/models/harpiya/reimbursement.rb +163 -0
- data/app/models/harpiya/reimbursement/credit.rb +25 -0
- data/app/models/harpiya/reimbursement/reimbursement_type_engine.rb +44 -0
- data/app/models/harpiya/reimbursement/reimbursement_type_validator.rb +15 -0
- data/app/models/harpiya/reimbursement_performer.rb +34 -0
- data/app/models/harpiya/reimbursement_tax_calculator.rb +37 -0
- data/app/models/harpiya/reimbursement_type.rb +20 -0
- data/app/models/harpiya/reimbursement_type/credit.rb +13 -0
- data/app/models/harpiya/reimbursement_type/exchange.rb +9 -0
- data/app/models/harpiya/reimbursement_type/original_payment.rb +13 -0
- data/app/models/harpiya/reimbursement_type/reimbursement_helpers.rb +63 -0
- data/app/models/harpiya/reimbursement_type/store_credit.rb +20 -0
- data/app/models/harpiya/return_authorization.rb +95 -0
- data/app/models/harpiya/return_authorization_reason.rb +7 -0
- data/app/models/harpiya/return_item.rb +261 -0
- data/app/models/harpiya/return_item/eligibility_validator/base_validator.rb +24 -0
- data/app/models/harpiya/return_item/eligibility_validator/default.rb +30 -0
- data/app/models/harpiya/return_item/eligibility_validator/inventory_shipped.rb +16 -0
- data/app/models/harpiya/return_item/eligibility_validator/no_reimbursements.rb +16 -0
- data/app/models/harpiya/return_item/eligibility_validator/order_completed.rb +16 -0
- data/app/models/harpiya/return_item/eligibility_validator/rma_required.rb +16 -0
- data/app/models/harpiya/return_item/eligibility_validator/time_since_purchase.rb +16 -0
- data/app/models/harpiya/return_item/exchange_variant_eligibility/same_option_value.rb +34 -0
- data/app/models/harpiya/return_item/exchange_variant_eligibility/same_product.rb +9 -0
- data/app/models/harpiya/returns_calculator.rb +7 -0
- data/app/models/harpiya/role.rb +8 -0
- data/app/models/harpiya/role_user.rb +6 -0
- data/app/models/harpiya/shipment.rb +404 -0
- data/app/models/harpiya/shipment_handler.rb +41 -0
- data/app/models/harpiya/shipping_calculator.rb +21 -0
- data/app/models/harpiya/shipping_category.rb +11 -0
- data/app/models/harpiya/shipping_method.rb +69 -0
- data/app/models/harpiya/shipping_method_category.rb +6 -0
- data/app/models/harpiya/shipping_method_zone.rb +6 -0
- data/app/models/harpiya/shipping_rate.rb +50 -0
- data/app/models/harpiya/state.rb +41 -0
- data/app/models/harpiya/state_change.rb +10 -0
- data/app/models/harpiya/stock/adjuster.rb +56 -0
- data/app/models/harpiya/stock/availability_validator.rb +29 -0
- data/app/models/harpiya/stock/content_item.rb +54 -0
- data/app/models/harpiya/stock/coordinator.rb +67 -0
- data/app/models/harpiya/stock/differentiator.rb +45 -0
- data/app/models/harpiya/stock/estimator.rb +74 -0
- data/app/models/harpiya/stock/inventory_unit_builder.rb +23 -0
- data/app/models/harpiya/stock/package.rb +112 -0
- data/app/models/harpiya/stock/packer.rb +52 -0
- data/app/models/harpiya/stock/prioritizer.rb +58 -0
- data/app/models/harpiya/stock/quantifier.rb +40 -0
- data/app/models/harpiya/stock/splitter/backordered.rb +19 -0
- data/app/models/harpiya/stock/splitter/base.rb +30 -0
- data/app/models/harpiya/stock/splitter/shipping_category.rb +31 -0
- data/app/models/harpiya/stock/splitter/weight.rb +84 -0
- data/app/models/harpiya/stock_item.rb +101 -0
- data/app/models/harpiya/stock_location.rb +138 -0
- data/app/models/harpiya/stock_movement.rb +38 -0
- data/app/models/harpiya/stock_transfer.rb +50 -0
- data/app/models/harpiya/store.rb +165 -0
- data/app/models/harpiya/store_credit.rb +249 -0
- data/app/models/harpiya/store_credit_category.rb +35 -0
- data/app/models/harpiya/store_credit_event.rb +38 -0
- data/app/models/harpiya/store_credit_type.rb +6 -0
- data/app/models/harpiya/store_product.rb +11 -0
- data/app/models/harpiya/tax_category.rb +18 -0
- data/app/models/harpiya/tax_rate.rb +119 -0
- data/app/models/harpiya/taxon.rb +110 -0
- data/app/models/harpiya/taxon_image.rb +18 -0
- data/app/models/harpiya/taxon_image/configuration/active_storage.rb +36 -0
- data/app/models/harpiya/taxonomy.rb +25 -0
- data/app/models/harpiya/variant.rb +347 -0
- data/app/models/harpiya/zone.rb +204 -0
- data/app/models/harpiya/zone_member.rb +12 -0
- data/app/paginators/harpiya/shared/paginate.rb +26 -0
- data/app/presenters/harpiya/filters/options_presenter.rb +27 -0
- data/app/presenters/harpiya/filters/price_presenter.rb +22 -0
- data/app/presenters/harpiya/filters/price_range_presenter.rb +29 -0
- data/app/presenters/harpiya/filters/properties_presenter.rb +23 -0
- data/app/presenters/harpiya/filters/property_presenter.rb +22 -0
- data/app/presenters/harpiya/filters/quantified_price_range_presenter.rb +44 -0
- data/app/presenters/harpiya/product_summary_presenter.rb +26 -0
- data/app/presenters/harpiya/variant_presenter.rb +80 -0
- data/app/presenters/harpiya/variants/option_types_presenter.rb +87 -0
- data/app/presenters/harpiya/variants/options_presenter.rb +49 -0
- data/app/services/harpiya/account/addresses/create.rb +24 -0
- data/app/services/harpiya/account/addresses/helper.rb +43 -0
- data/app/services/harpiya/account/addresses/update.rb +23 -0
- data/app/services/harpiya/account/create.rb +17 -0
- data/app/services/harpiya/account/update.rb +15 -0
- data/app/services/harpiya/build_localized_redirect_url.rb +101 -0
- data/app/services/harpiya/cart/add_item.rb +45 -0
- data/app/services/harpiya/cart/create.rb +21 -0
- data/app/services/harpiya/cart/estimate_shipping_rates.rb +39 -0
- data/app/services/harpiya/cart/recalculate.rb +32 -0
- data/app/services/harpiya/cart/remove_item.rb +39 -0
- data/app/services/harpiya/cart/remove_line_item.rb +18 -0
- data/app/services/harpiya/cart/set_quantity.rb +22 -0
- data/app/services/harpiya/cart/update.rb +37 -0
- data/app/services/harpiya/checkout/add_store_credit.rb +51 -0
- data/app/services/harpiya/checkout/advance.rb +18 -0
- data/app/services/harpiya/checkout/complete.rb +23 -0
- data/app/services/harpiya/checkout/get_shipping_rates.rb +52 -0
- data/app/services/harpiya/checkout/next.rb +13 -0
- data/app/services/harpiya/checkout/remove_store_credit.rb +17 -0
- data/app/services/harpiya/checkout/update.rb +43 -0
- data/app/services/harpiya/compare_line_items.rb +23 -0
- data/app/services/harpiya/generate_token.rb +20 -0
- data/app/sorters/harpiya/base_sorter.rb +35 -0
- data/app/sorters/harpiya/orders/sort.rb +6 -0
- data/app/sorters/harpiya/products/sort.rb +35 -0
- data/app/validators/db_maximum_length_validator.rb +20 -0
- data/app/validators/email_validator.rb +9 -0
- data/app/views/harpiya/errors/forbidden.html.erb +0 -0
- data/app/views/harpiya/errors/unauthorized.html.erb +0 -0
- data/app/views/harpiya/order_mailer/cancel_email.html.erb +24 -0
- data/app/views/harpiya/order_mailer/cancel_email.text.erb +12 -0
- data/app/views/harpiya/order_mailer/confirm_email.html.erb +23 -0
- data/app/views/harpiya/order_mailer/confirm_email.text.erb +12 -0
- data/app/views/harpiya/order_mailer/store_owner_notification_email.html.erb +23 -0
- data/app/views/harpiya/order_mailer/store_owner_notification_email.text.erb +12 -0
- data/app/views/harpiya/reimbursement_mailer/reimbursement_email.html.erb +56 -0
- data/app/views/harpiya/reimbursement_mailer/reimbursement_email.text.erb +24 -0
- data/app/views/harpiya/shared/_base_mailer_footer.html.erb +12 -0
- data/app/views/harpiya/shared/_base_mailer_header.html.erb +13 -0
- data/app/views/harpiya/shared/_base_mailer_stylesheets.html.erb +456 -0
- data/app/views/harpiya/shared/_error_messages.html.erb +11 -0
- data/app/views/harpiya/shared/_mailer_line_item.html.erb +16 -0
- data/app/views/harpiya/shared/_paths.html.erb +8 -0
- data/app/views/harpiya/shared/_purchased_items_table.html.erb +64 -0
- data/app/views/harpiya/shared/_purchased_items_table.text.erb +25 -0
- data/app/views/harpiya/shared/purchased_items_table/_adjustment.html.erb +13 -0
- data/app/views/harpiya/shared/purchased_items_table/_line_item.html.erb +27 -0
- data/app/views/harpiya/shared/purchased_items_table/_subtotal.html.erb +13 -0
- data/app/views/harpiya/shared/purchased_items_table/_total.html.erb +13 -0
- data/app/views/harpiya/shipment_mailer/shipped_email.html.erb +36 -0
- data/app/views/harpiya/shipment_mailer/shipped_email.text.erb +17 -0
- data/app/views/harpiya/test_mailer/test_email.html.erb +40 -0
- data/app/views/harpiya/test_mailer/test_email.text.erb +4 -0
- data/app/views/layouts/harpiya/base_mailer.html.erb +46 -0
- data/config/initializers/active_storage.rb +7 -0
- data/config/initializers/assets.rb +1 -0
- data/config/initializers/friendly_id.rb +7 -0
- data/config/initializers/inflections.rb +3 -0
- data/config/initializers/rails61_fixes.rb +3 -0
- data/config/initializers/state_machine.rb +37 -0
- data/config/locales/en.yml +1864 -0
- data/config/locales/tr.yml +1864 -0
- data/config/routes.rb +6 -0
- data/db/default/harpiya/countries.rb +24 -0
- data/db/default/harpiya/default_reimbursement_type.rb +1 -0
- data/db/default/harpiya/roles.rb +2 -0
- data/db/default/harpiya/states.rb +49 -0
- data/db/default/harpiya/store_credit_categories.rb +1 -0
- data/db/default/harpiya/stores.rb +21 -0
- data/db/default/harpiya/zones.rb +29 -0
- data/db/migrate/20120831092320_harpiya_one_two.rb +481 -0
- data/db/migrate/20120831092359_harpiya_promo_one_two.rb +45 -0
- data/db/migrate/20120905145253_add_tax_rate_label.rb +5 -0
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +5 -0
- data/db/migrate/20120929093553_remove_unused_preference_columns.rb +8 -0
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +5 -0
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +5 -0
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +6 -0
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +11 -0
- data/db/migrate/20121031162139_split_prices_from_variants.rb +31 -0
- data/db/migrate/20121107003422_remove_not_null_from_harpiya_prices_amount.rb +9 -0
- data/db/migrate/20121107184631_add_currency_to_line_items.rb +5 -0
- data/db/migrate/20121107194006_add_currency_to_orders.rb +5 -0
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +5 -0
- data/db/migrate/20121111231553_remove_display_on_from_payment_methods.rb +5 -0
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +5 -0
- data/db/migrate/20121126040517_add_last_ip_to_harpiya_orders.rb +5 -0
- data/db/migrate/20121213162028_add_state_to_harpiya_adjustments.rb +6 -0
- data/db/migrate/20130114053446_add_display_on_to_harpiya_payment_methods.rb +9 -0
- data/db/migrate/20130120201805_add_position_to_product_properties.harpiya.rb +6 -0
- data/db/migrate/20130203232234_add_identifier_to_harpiya_payments.rb +5 -0
- data/db/migrate/20130207155350_add_order_id_index_to_payments.rb +9 -0
- data/db/migrate/20130208032954_add_primary_to_harpiya_products_taxons.rb +5 -0
- data/db/migrate/20130211190146_create_harpiya_stock_items.rb +14 -0
- data/db/migrate/20130211191120_create_harpiya_stock_locations.rb +11 -0
- data/db/migrate/20130213191427_create_default_stock.rb +33 -0
- data/db/migrate/20130222032153_add_order_id_index_to_shipments.rb +5 -0
- data/db/migrate/20130226032817_change_meta_description_on_harpiya_products_to_text.rb +5 -0
- data/db/migrate/20130226191231_add_stock_location_id_to_harpiya_shipments.rb +5 -0
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +6 -0
- data/db/migrate/20130228164411_remove_on_demand_from_product_and_variant.rb +6 -0
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +21 -0
- data/db/migrate/20130301162745_remove_shipping_category_id_from_shipping_method.rb +5 -0
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +13 -0
- data/db/migrate/20130301205200_add_tracking_url_to_harpiya_shipping_methods.rb +5 -0
- data/db/migrate/20130304162240_create_harpiya_shipping_rates.rb +24 -0
- data/db/migrate/20130304192936_remove_category_match_attributes_from_shipping_method.rb +7 -0
- data/db/migrate/20130305143310_create_stock_movements.rb +12 -0
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +22 -0
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +5 -0
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +5 -0
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +5 -0
- data/db/migrate/20130318151756_add_source_and_destination_to_stock_movements.rb +8 -0
- data/db/migrate/20130319062004_change_orders_total_precision.rb +8 -0
- data/db/migrate/20130319063911_change_harpiya_payments_amount_precision.rb +7 -0
- data/db/migrate/20130319064308_change_harpiya_return_authorization_amount_precision.rb +7 -0
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +7 -0
- data/db/migrate/20130319183250_add_originator_to_stock_movement.rb +7 -0
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +15 -0
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +9 -0
- data/db/migrate/20130326175857_add_stock_location_to_rma.rb +5 -0
- data/db/migrate/20130328130308_update_shipment_state_for_canceled_orders.rb +15 -0
- data/db/migrate/20130328195253_add_seo_metas_to_taxons.rb +9 -0
- data/db/migrate/20130329134939_remove_stock_item_and_variant_lock.rb +14 -0
- data/db/migrate/20130413230529_add_name_to_harpiya_credit_cards.rb +5 -0
- data/db/migrate/20130414000512_update_name_fields_on_harpiya_credit_cards.rb +13 -0
- data/db/migrate/20130417120034_add_index_to_source_columns_on_adjustments.rb +5 -0
- data/db/migrate/20130417120035_update_adjustment_states.rb +16 -0
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +15 -0
- data/db/migrate/20130418125341_create_harpiya_stock_transfers.rb +14 -0
- data/db/migrate/20130423110707_drop_products_count_on_hand.rb +5 -0
- data/db/migrate/20130423223847_set_default_shipping_rate_cost.rb +5 -0
- data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +23 -0
- data/db/migrate/20130514151929_add_sku_index_to_harpiya_variants.rb +5 -0
- data/db/migrate/20130515180736_add_backorderable_default_to_harpiya_stock_location.rb +5 -0
- data/db/migrate/20130516151222_add_propage_all_variants_to_harpiya_stock_location.rb +5 -0
- data/db/migrate/20130611054351_rename_shipping_methods_zones_to_harpiya_shipping_methods_zones.rb +5 -0
- data/db/migrate/20130611185927_add_user_id_index_to_harpiya_orders.rb +5 -0
- data/db/migrate/20130618041418_add_updated_at_to_harpiya_countries.rb +9 -0
- data/db/migrate/20130619012236_add_updated_at_to_harpiya_states.rb +9 -0
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_harpiya_payments.rb +6 -0
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_harpiya_products.rb +5 -0
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +7 -0
- data/db/migrate/20130708052307_add_deleted_at_to_harpiya_tax_rates.rb +5 -0
- data/db/migrate/20130711200933_remove_lock_version_from_inventory_units.rb +6 -0
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +5 -0
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +6 -0
- data/db/migrate/20130725031716_add_created_by_id_to_harpiya_orders.rb +5 -0
- data/db/migrate/20130729214043_index_completed_at_on_harpiya_orders.rb +5 -0
- data/db/migrate/20130802014537_add_tax_category_id_to_harpiya_line_items.rb +5 -0
- data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +10 -0
- data/db/migrate/20130806022521_drop_harpiya_mail_methods.rb +12 -0
- data/db/migrate/20130806145853_set_default_stock_location_on_shipments.rb +8 -0
- data/db/migrate/20130807024301_upgrade_adjustments.rb +46 -0
- data/db/migrate/20130807024302_rename_adjustment_fields.rb +20 -0
- data/db/migrate/20130809164245_add_admin_name_column_to_harpiya_shipping_methods.rb +5 -0
- data/db/migrate/20130809164330_add_admin_name_column_to_harpiya_stock_locations.rb +5 -0
- data/db/migrate/20130813004002_add_shipment_total_to_harpiya_orders.rb +5 -0
- data/db/migrate/20130813140619_expand_order_number_size.rb +9 -0
- data/db/migrate/20130813232134_rename_activators_to_promotions.rb +5 -0
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +5 -0
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +5 -0
- data/db/migrate/20130826062534_add_depth_to_harpiya_taxons.rb +16 -0
- data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +8 -0
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +15 -0
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +19 -0
- data/db/migrate/20130903183026_add_code_to_harpiya_promotion_rules.rb +5 -0
- data/db/migrate/20130909115621_change_states_required_for_countries.rb +9 -0
- data/db/migrate/20130915032339_add_deleted_at_to_harpiya_stock_items.rb +5 -0
- data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +5 -0
- data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +7 -0
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +16 -0
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +5 -0
- data/db/migrate/20131107132123_add_tax_category_to_variants.rb +6 -0
- data/db/migrate/20131113035136_add_channel_to_harpiya_orders.rb +5 -0
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +5 -0
- data/db/migrate/20131118050234_rename_tax_total_fields.rb +11 -0
- data/db/migrate/20131118183431_add_line_item_id_to_harpiya_inventory_units.rb +21 -0
- data/db/migrate/20131120234456_add_updated_at_to_variants.rb +5 -0
- data/db/migrate/20131127001002_add_position_to_classifications.rb +5 -0
- data/db/migrate/20131211112807_create_harpiya_orders_promotions.rb +8 -0
- data/db/migrate/20131211192741_unique_shipping_method_categories.rb +24 -0
- data/db/migrate/20131218054603_add_item_count_to_harpiya_orders.rb +5 -0
- data/db/migrate/20140106065820_remove_value_type_from_harpiya_preferences.rb +8 -0
- data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +5 -0
- data/db/migrate/20140120160805_add_index_to_variant_id_and_currency_on_prices.rb +5 -0
- data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +6 -0
- data/db/migrate/20140129024326_add_deleted_at_to_harpiya_prices.rb +5 -0
- data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +6 -0
- data/db/migrate/20140204115338_add_confirmation_delivered_to_harpiya_orders.rb +5 -0
- data/db/migrate/20140204192230_add_auto_capture_to_payment_methods.rb +5 -0
- data/db/migrate/20140205120320_create_harpiya_payment_capture_events.rb +12 -0
- data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +5 -0
- data/db/migrate/20140205181631_default_variant_weight_to_zero.rb +11 -0
- data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +5 -0
- data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +5 -0
- data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +6 -0
- data/db/migrate/20140213184916_add_more_indexes.rb +13 -0
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +5 -0
- data/db/migrate/20140227112348_add_preference_store_to_everything.rb +8 -0
- data/db/migrate/20140307235515_add_user_id_to_harpiya_credit_cards.rb +13 -0
- data/db/migrate/20140309023735_migrate_old_preferences.rb +27 -0
- data/db/migrate/20140309024355_create_harpiya_stores.rb +25 -0
- data/db/migrate/20140309033438_create_store_from_preferences.rb +42 -0
- data/db/migrate/20140315053743_add_timestamps_to_harpiya_assets.rb +6 -0
- data/db/migrate/20140318191500_create_harpiya_taxons_promotion_rules.rb +8 -0
- data/db/migrate/20140331100557_add_additional_store_fields.rb +8 -0
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +18 -0
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +66 -0
- data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +5 -0
- data/db/migrate/20140508151342_change_harpiya_price_amount_precision.rb +8 -0
- data/db/migrate/20140518174634_add_token_to_harpiya_orders.rb +5 -0
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +29 -0
- data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +10 -0
- data/db/migrate/20140604135309_drop_credit_card_first_name_and_last_name.rb +6 -0
- data/db/migrate/20140609201656_add_deleted_at_to_harpiya_promotion_actions.rb +6 -0
- data/db/migrate/20140616202624_remove_uncaptured_amount_from_harpiya_payments.rb +5 -0
- data/db/migrate/20140625214618_create_harpiya_refunds.rb +12 -0
- data/db/migrate/20140702140656_create_harpiya_return_authorization_inventory_unit.rb +12 -0
- data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +5 -0
- data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +10 -0
- data/db/migrate/20140710041921_recreate_harpiya_return_authorizations.rb +55 -0
- data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +7 -0
- data/db/migrate/20140710190048_drop_return_authorization_amount.rb +5 -0
- data/db/migrate/20140713140455_create_harpiya_return_authorization_reasons.rb +28 -0
- data/db/migrate/20140713140527_create_harpiya_refund_reasons.rb +14 -0
- data/db/migrate/20140713142214_rename_return_authorization_reason.rb +5 -0
- data/db/migrate/20140715182625_create_harpiya_promotion_categories.rb +11 -0
- data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +9 -0
- data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +6 -0
- data/db/migrate/20140717155155_create_default_refund_reason.rb +9 -0
- data/db/migrate/20140717185932_add_default_to_harpiya_stock_locations.rb +7 -0
- data/db/migrate/20140718133010_create_harpiya_customer_returns.rb +9 -0
- data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +6 -0
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +15 -0
- data/db/migrate/20140723004419_rename_harpiya_refund_return_authorization_id.rb +5 -0
- data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +13 -0
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +15 -0
- data/db/migrate/20140725131539_create_harpiya_reimbursements.rb +21 -0
- data/db/migrate/20140728225422_add_promotionable_to_harpiya_products.rb +5 -0
- data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +7 -0
- data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +5 -0
- data/db/migrate/20140731150017_create_harpiya_reimbursement_types.rb +20 -0
- data/db/migrate/20140804185157_add_default_to_shipment_cost.rb +10 -0
- data/db/migrate/20140805171035_add_default_to_harpiya_credit_cards.rb +5 -0
- data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +10 -0
- data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +9 -0
- data/db/migrate/20140808184039_create_harpiya_reimbursement_credits.rb +10 -0
- data/db/migrate/20140827170513_add_meta_title_to_harpiya_products.rb +7 -0
- data/db/migrate/20140911173301_add_kind_to_zone.rb +11 -0
- data/db/migrate/20140924164824_add_code_to_harpiya_tax_categories.rb +5 -0
- data/db/migrate/20140927193717_default_pre_tax_amount_should_be_zero.rb +6 -0
- data/db/migrate/20141002191113_add_code_to_harpiya_shipping_methods.rb +5 -0
- data/db/migrate/20141007230328_add_cancel_audit_fields_to_harpiya_orders.rb +6 -0
- data/db/migrate/20141009204607_add_store_id_to_orders.rb +8 -0
- data/db/migrate/20141012083513_create_harpiya_taxons_prototypes.rb +8 -0
- data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +5 -0
- data/db/migrate/20141023005240_add_counter_cache_from_harpiya_variants_to_harpiya_stock_items.rb +8 -0
- data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +13 -0
- data/db/migrate/20141105213646_update_classifications_positions.rb +9 -0
- data/db/migrate/20141120135441_add_guest_token_index_to_harpiya_orders.rb +5 -0
- data/db/migrate/20141215232040_remove_token_permissions_table.rb +6 -0
- data/db/migrate/20141215235502_remove_extra_products_slug_index.rb +5 -0
- data/db/migrate/20141217215630_update_product_slug_index.rb +6 -0
- data/db/migrate/20141218025915_rename_identifier_to_number_for_payment.rb +5 -0
- data/db/migrate/20150118210639_create_harpiya_store_credits.rb +24 -0
- data/db/migrate/20150118211500_create_harpiya_store_credit_categories.rb +8 -0
- data/db/migrate/20150118212051_create_harpiya_store_credit_events.rb +17 -0
- data/db/migrate/20150118212101_create_harpiya_store_credit_types.rb +10 -0
- data/db/migrate/20150121022521_remove_environment_from_payment_method.rb +6 -0
- data/db/migrate/20150122145607_add_resellable_to_return_items.rb +5 -0
- data/db/migrate/20150122202432_add_code_to_harpiya_promotion_categories.rb +5 -0
- data/db/migrate/20150128032538_remove_environment_from_tracker.rb +8 -0
- data/db/migrate/20150128060325_remove_harpiya_configurations.rb +16 -0
- data/db/migrate/20150216173445_add_index_to_harpiya_stock_items_variant_id.rb +13 -0
- data/db/migrate/20150309161154_ensure_payments_have_numbers.rb +13 -0
- data/db/migrate/20150314013438_add_missing_indexes_on_harpiya_tables.rb +67 -0
- data/db/migrate/20150317174308_remove_duplicated_indexes_from_multi_columns.rb +18 -0
- data/db/migrate/20150324104002_remove_user_index_from_harpiya_state_changes.rb +14 -0
- data/db/migrate/20150515211137_fix_adjustment_order_id.rb +70 -0
- data/db/migrate/20150522071831_add_position_to_harpiya_payment_methods.rb +5 -0
- data/db/migrate/20150522181728_add_deleted_at_to_friendly_id_slugs.rb +6 -0
- data/db/migrate/20150609093816_increase_scale_on_pre_tax_amounts.rb +16 -0
- data/db/migrate/20150626181949_add_taxable_adjustment_total_to_line_item.rb +19 -0
- data/db/migrate/20150627090949_migrate_payment_methods_display.rb +12 -0
- data/db/migrate/20150707204155_enable_acts_as_paranoid_on_calculators.rb +6 -0
- data/db/migrate/20150714154102_harpiya_payment_method_store_credits.rb +12 -0
- data/db/migrate/20150726141425_rename_has_and_belongs_to_associations_to_model_names.rb +18 -0
- data/db/migrate/20150727191614_harpiya_store_credit_types.rb +11 -0
- data/db/migrate/20150819154308_add_discontinued_to_products_and_variants.rb +68 -0
- data/db/migrate/20151220072838_remove_shipping_method_id_from_harpiya_orders.rb +13 -0
- data/db/migrate/20160207191757_add_id_column_to_earlier_habtm_tables.rb +16 -0
- data/db/migrate/20160219165458_add_indexes.rb +14 -0
- data/db/migrate/20160509064646_remove_counter_cache_from_harpiya_variants_to_harpiya_stock_items.rb +10 -0
- data/db/migrate/20160608090604_add_zipcode_required_to_harpiya_countries.rb +7 -0
- data/db/migrate/20161014145148_add_created_at_to_variant.rb +8 -0
- data/db/migrate/20161014152814_add_null_false_to_harpiya_variants_timestamps.rb +6 -0
- data/db/migrate/20161125065505_add_quantity_to_inventory_units.rb +5 -0
- data/db/migrate/20170119122701_add_original_return_item_id_to_harpiya_inventory_units.rb +29 -0
- data/db/migrate/20170315152755_add_unique_index_on_number_to_harpiya_orders.rb +16 -0
- data/db/migrate/20170316154338_add_unique_index_on_number_to_harpiya_stock_transfer.rb +16 -0
- data/db/migrate/20170316205511_add_unique_index_on_number_to_harpiya_shipment.rb +16 -0
- data/db/migrate/20170320134043_add_unique_index_on_number_to_harpiya_payments.rb +17 -0
- data/db/migrate/20170320142750_add_unique_index_on_number_to_harpiya_return_authorizations.rb +16 -0
- data/db/migrate/20170320145040_add_unique_index_on_number_to_harpiya_customer_returns.rb +16 -0
- data/db/migrate/20170320145518_add_unique_index_on_number_to_harpiya_reimbursements.rb +16 -0
- data/db/migrate/20170323151450_add_missing_unique_indexes_for_unique_attributes.rb +37 -0
- data/db/migrate/20170329110859_add_index_on_stock_location_to_harpiya_customer_returns.rb +5 -0
- data/db/migrate/20170329113917_add_index_on_prototype_to_harpiya_option_type_prototype.rb +19 -0
- data/db/migrate/20170330082155_add_indexes_to_harpiya_option_value_variant.rb +19 -0
- data/db/migrate/20170330132215_add_index_on_promotion_id_to_order_promotions.rb +5 -0
- data/db/migrate/20170331101758_add_indexes_for_property_prototype.rb +20 -0
- data/db/migrate/20170331103334_add_index_for_prototype_id_to_prototype_taxons.rb +5 -0
- data/db/migrate/20170331110454_add_indexes_to_refunds.rb +6 -0
- data/db/migrate/20170331111757_add_indexes_to_reimbursement_credits.rb +6 -0
- data/db/migrate/20170331115246_add_indexes_to_return_authorizations.rb +6 -0
- data/db/migrate/20170331120125_add_indexes_to_return_items.rb +11 -0
- data/db/migrate/20170331121725_add_index_to_role_users.rb +18 -0
- data/db/migrate/20170331123625_add_index_to_shipping_method_categories.rb +5 -0
- data/db/migrate/20170331123832_add_index_to_shipping_method_zones.rb +20 -0
- data/db/migrate/20170331124251_add_index_to_harpiya_shipping_rates.rb +6 -0
- data/db/migrate/20170331124513_add_index_to_harpiya_stock_items.rb +5 -0
- data/db/migrate/20170331124924_add_index_to_harpiya_stock_movement.rb +5 -0
- data/db/migrate/20170413211707_change_indexes_on_friendly_id_slugs.rb +10 -0
- data/db/migrate/20170722102643_add_analytics_kind_to_harpiya_trackers.rb +5 -0
- data/db/migrate/20170727103056_rename_tracker_kind_field.rb +5 -0
- data/db/migrate/20171004223836_remove_icon_from_taxons.rb +8 -0
- data/db/migrate/20180222133746_add_unique_index_on_harpiya_promotions_code.rb +6 -0
- data/db/migrate/20180613080857_rename_guest_token_to_token_in_orders.rb +5 -0
- data/db/migrate/20180915160001_add_timestamps_to_harpiya_prices.rb +12 -0
- data/db/migrate/20181024100754_add_deleted_at_to_harpiya_credit_cards.rb +6 -0
- data/db/migrate/20190305121659_add_iso_and_iso3_validation_on_presence_and_uniqueness.rb +18 -0
- data/db/migrate/20190523092729_add_user_id_and_deleted_at_to_harpiya_addresses.rb +12 -0
- data/db/migrate/20191005121504_add_store_id_to_payment_methods.rb +7 -0
- data/db/migrate/20191016134113_add_deafult_value_for_store_default_currency.rb +5 -0
- data/db/migrate/20191017121054_add_supported_currencies_to_store.rb +11 -0
- data/db/migrate/20200102141311_add_social_to_harpiya_stores.rb +10 -0
- data/db/migrate/20200212144523_add_hide_from_nav_to_taxons.rb +5 -0
- data/db/migrate/20200308210757_add_default_locale_to_harpiya_store.rb +7 -0
- data/db/migrate/20200310145140_add_customer_support_email_to_harpiya_store.rb +7 -0
- data/db/migrate/20200421095017_add_compare_at_amount_to_harpiya_prices.rb +7 -0
- data/db/migrate/20200423123001_add_default_country_id_to_harpiya_store.rb +9 -0
- data/db/migrate/20200430072209_add_footer_fields_to_harpiya_stores.rb +8 -0
- data/db/migrate/20200513154939_add_show_property_to_harpiya_product_properties.rb +5 -0
- data/db/migrate/20200607161221_add_store_owner_order_notification_delivered_to_harpiya_orders.rb +7 -0
- data/db/migrate/20200607161222_add_new_order_notifications_email_to_harpiya_stores.rb +7 -0
- data/db/migrate/20200610113542_add_label_to_harpiya_addresses.rb +5 -0
- data/db/migrate/20200826075557_add_unique_index_on_taxon_id_and_product_id_to_harpiya_products_taxons.rb +5 -0
- data/db/migrate/20201006110150_add_checkout_zone_field_to_store.rb +12 -0
- data/db/migrate/20201012091259_add_filterable_column_to_harpiya_option_types.rb +10 -0
- data/db/migrate/20201013084504_add_seo_robots_to_harpiya_stores.rb +5 -0
- data/db/migrate/20201023152810_add_filterable_to_harpiya_properties.rb +8 -0
- data/db/migrate/20201127084048_add_default_country_kind_to_harpiya_zones.rb +5 -0
- data/db/migrate/20210112193440_remove_contact_email_from_harpiya_stores.rb +5 -0
- data/db/migrate/20210114182625_create_harpiya_payment_methods_stores.rb +10 -0
- data/db/migrate/20210114220232_migrate_data_payment_methods_stores.rb +15 -0
- data/db/migrate/20210117112551_remove_store_id_from_harpiya_payment_methods.rb +5 -0
- data/db/migrate/20210120142527_ensure_default_locale_in_harpiya_stores.rb +5 -0
- data/db/migrate/20210205211040_add_supported_locales_to_harpiya_stores.rb +11 -0
- data/db/migrate/20210215202602_migrate_harpiya_i18n_globalize_config.rb +22 -0
- data/db/migrate/20210407200948_create_harpiya_menus.rb +16 -0
- data/db/migrate/20210408092939_create_harpiya_menu_items.rb +31 -0
- data/db/migrate/20210504163720_add_filter_param_to_harpiya_product_properties.rb +8 -0
- data/db/migrate/20210505114659_add_filter_param_to_harpiya_properties.rb +8 -0
- data/db/migrate/20210527094055_create_harpiya_products_stores.rb +29 -0
- data/db/migrate/20210608045519_ensure_store_default_country_is_set.rb +5 -0
- data/db/seeds.rb +5 -0
- data/harpiya_core.gemspec +59 -0
- data/lib/friendly_id/slug_rails5_patch.rb +11 -0
- data/lib/generators/harpiya/custom_user/custom_user_generator.rb +51 -0
- data/lib/generators/harpiya/custom_user/templates/authentication_helpers.rb.tt +36 -0
- data/lib/generators/harpiya/custom_user/templates/initializer.rb.tt +1 -0
- data/lib/generators/harpiya/custom_user/templates/migration.rb.tt +7 -0
- data/lib/generators/harpiya/dummy/dummy_generator.rb +154 -0
- data/lib/generators/harpiya/dummy/templates/initializers/bullet.rb +5 -0
- data/lib/generators/harpiya/dummy/templates/initializers/devise.rb +3 -0
- data/lib/generators/harpiya/dummy/templates/rails/application.rb +10 -0
- data/lib/generators/harpiya/dummy/templates/rails/boot.rb +6 -0
- data/lib/generators/harpiya/dummy/templates/rails/database.yml +80 -0
- data/lib/generators/harpiya/dummy/templates/rails/routes.rb +2 -0
- data/lib/generators/harpiya/dummy/templates/rails/script/rails +6 -0
- data/lib/generators/harpiya/dummy/templates/rails/test.rb +38 -0
- data/lib/generators/harpiya/dummy_model/dummy_model_generator.rb +23 -0
- data/lib/generators/harpiya/dummy_model/templates/migration.rb.tt +10 -0
- data/lib/generators/harpiya/dummy_model/templates/model.rb.tt +6 -0
- data/lib/generators/harpiya/install/install_generator.rb +249 -0
- data/lib/generators/harpiya/install/templates/config/initializers/harpiya.rb +31 -0
- data/lib/generators/harpiya/mailers_preview/mailers_preview_generator.rb +23 -0
- data/lib/generators/harpiya/mailers_preview/templates/mailers/previews/order_preview.rb +13 -0
- data/lib/generators/harpiya/mailers_preview/templates/mailers/previews/reimbursement_preview.rb +5 -0
- data/lib/generators/harpiya/mailers_preview/templates/mailers/previews/shipment_preview.rb +5 -0
- data/lib/generators/harpiya/mailers_preview/templates/mailers/previews/user_preview.rb +11 -0
- data/lib/harpiya/core.rb +116 -0
- data/lib/harpiya/core/components.rb +17 -0
- data/lib/harpiya/core/controller_helpers/auth.rb +93 -0
- data/lib/harpiya/core/controller_helpers/common.rb +65 -0
- data/lib/harpiya/core/controller_helpers/currency.rb +54 -0
- data/lib/harpiya/core/controller_helpers/locale.rb +58 -0
- data/lib/harpiya/core/controller_helpers/order.rb +108 -0
- data/lib/harpiya/core/controller_helpers/search.rb +14 -0
- data/lib/harpiya/core/controller_helpers/store.rb +55 -0
- data/lib/harpiya/core/controller_helpers/strong_parameters.rb +43 -0
- data/lib/harpiya/core/engine.rb +150 -0
- data/lib/harpiya/core/importer.rb +9 -0
- data/lib/harpiya/core/importer/order.rb +242 -0
- data/lib/harpiya/core/importer/product.rb +63 -0
- data/lib/harpiya/core/number_generator.rb +51 -0
- data/lib/harpiya/core/product_duplicator.rb +79 -0
- data/lib/harpiya/core/product_filters.rb +194 -0
- data/lib/harpiya/core/query_filters.rb +11 -0
- data/lib/harpiya/core/query_filters/comparable.rb +46 -0
- data/lib/harpiya/core/query_filters/date.rb +8 -0
- data/lib/harpiya/core/query_filters/number.rb +8 -0
- data/lib/harpiya/core/query_filters/text.rb +32 -0
- data/lib/harpiya/core/routes.rb +42 -0
- data/lib/harpiya/core/search/base.rb +138 -0
- data/lib/harpiya/core/token_generator.rb +22 -0
- data/lib/harpiya/core/version.rb +7 -0
- data/lib/harpiya/database_type_utilities.rb +12 -0
- data/lib/harpiya/dependencies_helper.rb +11 -0
- data/lib/harpiya/i18n.rb +33 -0
- data/lib/harpiya/localized_number.rb +23 -0
- data/lib/harpiya/migrations.rb +80 -0
- data/lib/harpiya/money.rb +77 -0
- data/lib/harpiya/permitted_attributes.rb +126 -0
- data/lib/harpiya/service_module.rb +102 -0
- data/lib/harpiya/testing_support/ability_helpers.rb +97 -0
- data/lib/harpiya/testing_support/authorization_helpers.rb +69 -0
- data/lib/harpiya/testing_support/bar_ability.rb +14 -0
- data/lib/harpiya/testing_support/caching.rb +47 -0
- data/lib/harpiya/testing_support/capybara_config.rb +26 -0
- data/lib/harpiya/testing_support/capybara_ext.rb +88 -0
- data/lib/harpiya/testing_support/common_rake.rb +54 -0
- data/lib/harpiya/testing_support/controller_requests.rb +103 -0
- data/lib/harpiya/testing_support/extension_rake.rb +9 -0
- data/lib/harpiya/testing_support/factories.rb +19 -0
- data/lib/harpiya/testing_support/factories/address_factory.rb +23 -0
- data/lib/harpiya/testing_support/factories/adjustment_factory.rb +28 -0
- data/lib/harpiya/testing_support/factories/calculator_factory.rb +20 -0
- data/lib/harpiya/testing_support/factories/classification_factory.rb +8 -0
- data/lib/harpiya/testing_support/factories/country_factory.rb +9 -0
- data/lib/harpiya/testing_support/factories/credit_card_factory.rb +12 -0
- data/lib/harpiya/testing_support/factories/customer_return_factory.rb +29 -0
- data/lib/harpiya/testing_support/factories/image_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/inventory_unit_factory.rb +18 -0
- data/lib/harpiya/testing_support/factories/line_item_factory.rb +12 -0
- data/lib/harpiya/testing_support/factories/menu_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/menu_item_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/options_factory.rb +27 -0
- data/lib/harpiya/testing_support/factories/order_factory.rb +102 -0
- data/lib/harpiya/testing_support/factories/order_promotion_factory.rb +6 -0
- data/lib/harpiya/testing_support/factories/payment_factory.rb +30 -0
- data/lib/harpiya/testing_support/factories/payment_method_factory.rb +36 -0
- data/lib/harpiya/testing_support/factories/price_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/product_factory.rb +49 -0
- data/lib/harpiya/testing_support/factories/product_option_type_factory.rb +6 -0
- data/lib/harpiya/testing_support/factories/product_property_factory.rb +6 -0
- data/lib/harpiya/testing_support/factories/promotion_category_factory.rb +5 -0
- data/lib/harpiya/testing_support/factories/promotion_factory.rb +73 -0
- data/lib/harpiya/testing_support/factories/promotion_rule_factory.rb +5 -0
- data/lib/harpiya/testing_support/factories/property_factory.rb +28 -0
- data/lib/harpiya/testing_support/factories/prototype_factory.rb +11 -0
- data/lib/harpiya/testing_support/factories/refund_factory.rb +22 -0
- data/lib/harpiya/testing_support/factories/reimbursement_factory.rb +16 -0
- data/lib/harpiya/testing_support/factories/reimbursement_type_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/return_authorization_factory.rb +21 -0
- data/lib/harpiya/testing_support/factories/return_item_factory.rb +14 -0
- data/lib/harpiya/testing_support/factories/role_factory.rb +9 -0
- data/lib/harpiya/testing_support/factories/shipment_factory.rb +21 -0
- data/lib/harpiya/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/harpiya/testing_support/factories/shipping_method_factory.rb +22 -0
- data/lib/harpiya/testing_support/factories/state_factory.rb +10 -0
- data/lib/harpiya/testing_support/factories/stock_factory.rb +31 -0
- data/lib/harpiya/testing_support/factories/stock_item_factory.rb +9 -0
- data/lib/harpiya/testing_support/factories/stock_location_factory.rb +28 -0
- data/lib/harpiya/testing_support/factories/stock_movement_factory.rb +11 -0
- data/lib/harpiya/testing_support/factories/store_credit_category_factory.rb +9 -0
- data/lib/harpiya/testing_support/factories/store_credit_event_factory.rb +8 -0
- data/lib/harpiya/testing_support/factories/store_credit_factory.rb +17 -0
- data/lib/harpiya/testing_support/factories/store_credit_type_factory.rb +11 -0
- data/lib/harpiya/testing_support/factories/store_factory.rb +27 -0
- data/lib/harpiya/testing_support/factories/tax_category_factory.rb +6 -0
- data/lib/harpiya/testing_support/factories/tax_rate_factory.rb +9 -0
- data/lib/harpiya/testing_support/factories/taxon_factory.rb +7 -0
- data/lib/harpiya/testing_support/factories/taxonomy_factory.rb +5 -0
- data/lib/harpiya/testing_support/factories/user_factory.rb +22 -0
- data/lib/harpiya/testing_support/factories/variant_factory.rb +38 -0
- data/lib/harpiya/testing_support/factories/zone_factory.rb +28 -0
- data/lib/harpiya/testing_support/factories/zone_member_factory.rb +6 -0
- data/lib/harpiya/testing_support/flash.rb +25 -0
- data/lib/harpiya/testing_support/flatpickr_capybara.rb +101 -0
- data/lib/harpiya/testing_support/i18n.rb +94 -0
- data/lib/harpiya/testing_support/image_helpers.rb +13 -0
- data/lib/harpiya/testing_support/kernel.rb +17 -0
- data/lib/harpiya/testing_support/locale_helpers.rb +78 -0
- data/lib/harpiya/testing_support/next_instance_of.rb +38 -0
- data/lib/harpiya/testing_support/order_walkthrough.rb +78 -0
- data/lib/harpiya/testing_support/preferences.rb +30 -0
- data/lib/harpiya/testing_support/rspec_retry_config.rb +10 -0
- data/lib/harpiya/testing_support/url_helpers.rb +9 -0
- data/lib/harpiya_core.rb +2 -0
- data/lib/tasks/core.rake +187 -0
- data/lib/tasks/email.rake +10 -0
- data/lib/tasks/exchanges.rake +66 -0
- data/script/rails +9 -0
- data/spec/fixtures/favicon.ico +0 -0
- data/spec/fixtures/files/icon_256x256.gif +0 -0
- data/spec/fixtures/files/icon_256x256.png +0 -0
- data/spec/fixtures/files/icon_512x512.png +0 -0
- data/spec/fixtures/files/img_256x128.png +0 -0
- data/spec/fixtures/text-file.txt +1 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/vendor/assets/javascripts/cleave.js +1669 -0
- data/vendor/assets/javascripts/fetch.umd.js +531 -0
- data/vendor/assets/javascripts/jquery.payment.js +652 -0
- data/vendor/assets/javascripts/jsuri.js +458 -0
- data/vendor/assets/javascripts/polyfill.min.js +1 -0
- metadata +1260 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
module Harpiya
|
2
|
+
module TestingSupport
|
3
|
+
module Preferences
|
4
|
+
# Resets all preferences to default values, you can
|
5
|
+
# pass a block to override the defaults with a block
|
6
|
+
#
|
7
|
+
# reset_harpiya_preferences do |config|
|
8
|
+
# config.track_inventory_levels = false
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
def reset_harpiya_preferences(&config_block)
|
12
|
+
Harpiya::Preferences::Store.instance.persistence = false
|
13
|
+
Harpiya::Preferences::Store.instance.clear_cache
|
14
|
+
|
15
|
+
config = Rails.application.config.harpiya.preferences
|
16
|
+
configure_harpiya_preferences &config_block if block_given?
|
17
|
+
end
|
18
|
+
|
19
|
+
def configure_harpiya_preferences
|
20
|
+
config = Rails.application.config.harpiya.preferences
|
21
|
+
yield(config) if block_given?
|
22
|
+
end
|
23
|
+
|
24
|
+
def assert_preference_unset(preference)
|
25
|
+
find("#preferences_#{preference}")['checked'].should be false
|
26
|
+
Harpiya::Config[preference].should be false
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'rspec/retry'
|
2
|
+
|
3
|
+
RSpec.configure do |config|
|
4
|
+
config.verbose_retry = true
|
5
|
+
config.display_try_failure_messages = true
|
6
|
+
|
7
|
+
config.around :each, type: :feature do |ex|
|
8
|
+
ex.run_with_retry retry: ENV.fetch('RSPEC_RETRY_RETRY_COUNT', 3).to_i
|
9
|
+
end
|
10
|
+
end
|
data/lib/harpiya_core.rb
ADDED
data/lib/tasks/core.rake
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
|
3
|
+
namespace :db do
|
4
|
+
desc %q{Loads a specified fixture file:
|
5
|
+
use rake db:load_file[/absolute/path/to/sample/filename.rb]}
|
6
|
+
|
7
|
+
task :load_file, [:file, :dir] => :environment do |_t, args|
|
8
|
+
file = Pathname.new(args.file)
|
9
|
+
|
10
|
+
puts "loading ruby #{file}"
|
11
|
+
load file
|
12
|
+
end
|
13
|
+
|
14
|
+
desc 'Loads fixtures from the the dir you specify using rake db:load_dir[loadfrom]'
|
15
|
+
task :load_dir, [:dir] => :environment do |_t, args|
|
16
|
+
dir = args.dir
|
17
|
+
dir = File.join(Rails.root, 'db', dir) if Pathname.new(dir).relative?
|
18
|
+
|
19
|
+
ruby_files = {}
|
20
|
+
Dir.glob(File.join(dir, '**/*.{rb}')).each do |fixture_file|
|
21
|
+
ext = File.extname fixture_file
|
22
|
+
ruby_files[File.basename(fixture_file, '.*')] = fixture_file
|
23
|
+
end
|
24
|
+
ruby_files.sort.each do |fixture, ruby_file|
|
25
|
+
# If file exists within application it takes precendence.
|
26
|
+
if File.exist?(File.join(Rails.root, 'db/default/harpiya', "#{fixture}.rb"))
|
27
|
+
ruby_file = File.expand_path(File.join(Rails.root, 'db/default/harpiya', "#{fixture}.rb"))
|
28
|
+
end
|
29
|
+
# an invoke will only execute the task once
|
30
|
+
Rake::Task['db:load_file'].execute(Rake::TaskArguments.new([:file], [ruby_file]))
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
desc 'Migrate schema to version 0 and back up again. WARNING: Destroys all data in tables!!'
|
35
|
+
task remigrate: :environment do
|
36
|
+
require 'highline/import'
|
37
|
+
|
38
|
+
if ENV['SKIP_NAG'] || ENV['OVERWRITE'].to_s.casecmp('true').zero? || agree("This task will destroy any data in the database. Are you sure you want to \ncontinue? [y/n] ")
|
39
|
+
|
40
|
+
# Drop all tables
|
41
|
+
ActiveRecord::Base.connection.tables.each { |t| ActiveRecord::Base.connection.drop_table t }
|
42
|
+
|
43
|
+
# Migrate upward
|
44
|
+
Rake::Task['db:migrate'].invoke
|
45
|
+
|
46
|
+
# Dump the schema
|
47
|
+
Rake::Task['db:schema:dump'].invoke
|
48
|
+
else
|
49
|
+
say 'Task cancelled.'
|
50
|
+
exit
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
desc 'Bootstrap is: migrating, loading defaults, sample data and seeding (for all extensions) and load_products tasks'
|
55
|
+
task :bootstrap do
|
56
|
+
require 'highline/import'
|
57
|
+
|
58
|
+
# remigrate unless production mode (as saftey check)
|
59
|
+
if %w[demo development test].include? Rails.env
|
60
|
+
if ENV['AUTO_ACCEPT'] || agree("This task will destroy any data in the database. Are you sure you want to \ncontinue? [y/n] ")
|
61
|
+
ENV['SKIP_NAG'] = 'yes'
|
62
|
+
Rake::Task['db:create'].invoke
|
63
|
+
Rake::Task['db:remigrate'].invoke
|
64
|
+
else
|
65
|
+
say 'Task cancelled, exiting.'
|
66
|
+
exit
|
67
|
+
end
|
68
|
+
else
|
69
|
+
say 'NOTE: Bootstrap in production mode will not drop database before migration'
|
70
|
+
Rake::Task['db:migrate'].invoke
|
71
|
+
end
|
72
|
+
|
73
|
+
ActiveRecord::Base.send(:subclasses).each(&:reset_column_information)
|
74
|
+
|
75
|
+
load_defaults = Harpiya::Country.count == 0
|
76
|
+
load_defaults ||= agree('Countries present, load sample data anyways? [y/n]: ')
|
77
|
+
Rake::Task['db:seed'].invoke if load_defaults
|
78
|
+
|
79
|
+
if Rails.env.production? && Harpiya::Product.count > 0
|
80
|
+
load_sample = agree('WARNING: In Production and products exist in database, load sample data anyways? [y/n]:')
|
81
|
+
else
|
82
|
+
load_sample = true if ENV['AUTO_ACCEPT']
|
83
|
+
load_sample ||= agree('Load Sample Data? [y/n]: ')
|
84
|
+
end
|
85
|
+
|
86
|
+
if load_sample
|
87
|
+
# Reload models' attributes in case they were loaded in old migrations with wrong attributes
|
88
|
+
ActiveRecord::Base.descendants.each(&:reset_column_information)
|
89
|
+
Rake::Task['harpiya_sample:load'].invoke
|
90
|
+
end
|
91
|
+
|
92
|
+
puts "Bootstrap Complete.\n\n"
|
93
|
+
end
|
94
|
+
|
95
|
+
desc 'Fix orphan line items after upgrading to Harpiya 3.1: only needed if you have line items attached to deleted records with Slug (product) and SKU (variant) duplicates of non-deleted records.'
|
96
|
+
task fix_orphan_line_items: :environment do |_t, _args|
|
97
|
+
def get_input
|
98
|
+
STDOUT.flush
|
99
|
+
input = STDIN.gets.chomp
|
100
|
+
case input.upcase
|
101
|
+
when 'Y'
|
102
|
+
return true
|
103
|
+
|
104
|
+
when 'N'
|
105
|
+
puts 'aborting .....'
|
106
|
+
return false
|
107
|
+
else
|
108
|
+
return true
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
puts 'WARNING: This task will re-associate any line_items associated with deleted variants to non-deleted variants with matching SKUs. Because other attributes and product associations may switch during the re-association, this may have unintended side-effects. If this task finishes successfully, line items for old order should no longer be orphaned from their varaints. You should run this task after you have already run the db migratoin AddDiscontinuedToProductsAndVariants. If the db migration did not warn you that it was leaving deleted records in place because of duplicate SKUs, then you do not need to run this rake task.'
|
113
|
+
puts 'Are you sure you want to continue? (Y/n):'
|
114
|
+
|
115
|
+
if get_input
|
116
|
+
puts 'looping through all your deleted variants ...'
|
117
|
+
|
118
|
+
# first verify that I can really fix all of your line items
|
119
|
+
|
120
|
+
no_live_variants_found = []
|
121
|
+
variants_to_fix = []
|
122
|
+
|
123
|
+
Harpiya::Variant.deleted.each do |variant|
|
124
|
+
# check if this variant has any line items at all
|
125
|
+
next if variant.line_items.none?
|
126
|
+
|
127
|
+
variants_to_fix << variant
|
128
|
+
dup_variant = Harpiya::Variant.find_by(sku: variant.sku)
|
129
|
+
if dup_variant
|
130
|
+
# this variant is OK
|
131
|
+
else
|
132
|
+
no_live_variants_found << variant
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
if variants_to_fix.none?
|
137
|
+
abort('ABORT: You have no deleted variants that are associated to line items. You do not need to run this raks task.')
|
138
|
+
end
|
139
|
+
|
140
|
+
if no_live_variants_found.any?
|
141
|
+
puts "ABORT: Unfortunately, I found some deleted variants in your database that do not have matching non-deleted variants to replace them with. This script can only be used to cleanup deleted variants that have SKUs that match non-deleted variants. To continue, you must either (1) un-delete these variants (hint: mark them 'discontinued' instead) or (2) create new variants with a matching SKU for each variant in the list below."
|
142
|
+
no_live_variants_found.each do |deleted_variant|
|
143
|
+
puts "variant id #{deleted_variant.id} (sku is '#{deleted_variant.sku}') ... no match found"
|
144
|
+
end
|
145
|
+
abort
|
146
|
+
end
|
147
|
+
|
148
|
+
puts 'Ready to fix...'
|
149
|
+
variants_to_fix.each do |variant|
|
150
|
+
dup_variant = Harpiya::Variant.find_by(sku: variant.sku)
|
151
|
+
puts "Changing all line items for #{variant.sku} variant id #{variant.id} (deleted) to variant id #{dup_variant.id} (not deleted) ..."
|
152
|
+
Harpiya::LineItem.unscoped.where(variant_id: variant.id).update_all(variant_id: dup_variant.id)
|
153
|
+
end
|
154
|
+
|
155
|
+
puts 'DONE ! Your database should no longer have line items that are associated with deleted variants.'
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
desc 'Migrates taxon icons to harpiya assets after upgrading to Harpiya 3.4: only needed if you used taxons icons.'
|
160
|
+
task migrate_taxon_icons: :environment do |_t, _args|
|
161
|
+
Harpiya::Taxon.where.not(icon_file_name: nil).find_each do |taxon|
|
162
|
+
taxon.create_icon(attachment_file_name: taxon.icon_file_name,
|
163
|
+
attachment_content_type: taxon.icon_content_type,
|
164
|
+
attachment_file_size: taxon.icon_file_size,
|
165
|
+
attachment_updated_at: taxon.icon_updated_at)
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
desc 'Migrates taxon icons to taxon images after upgrading to Harpiya 3.7: only needed if you used taxons icons.'
|
170
|
+
task migrate_taxon_icons_to_images: :environment do |_t, _args|
|
171
|
+
Harpiya::Asset.where(type: 'Harpiya::TaxonIcon').update_all(type: 'Harpiya::TaxonImage')
|
172
|
+
end
|
173
|
+
|
174
|
+
desc 'Ensure all Order associated with Store after upgrading to Harpiya 3.7'
|
175
|
+
task associate_orders_with_store: :environment do |_t, _args|
|
176
|
+
Harpiya::Order.where(store_id: nil).update_all(store_id: Harpiya::Store.default.id)
|
177
|
+
end
|
178
|
+
|
179
|
+
desc 'Ensure all Order has currency present after upgrading to Harpiya 3.7'
|
180
|
+
task ensure_order_currency_presence: :environment do |_t, _args|
|
181
|
+
Harpiya::Order.where(currency: nil).find_in_batches do |orders|
|
182
|
+
orders.each do |order|
|
183
|
+
order.update!(currency: order.store.default_currency || Harpiya::Config[:currency])
|
184
|
+
end
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
namespace :email do
|
2
|
+
desc 'Sends test email to specified address - Example: EMAIL=harpiya@example.com bundle exec rake email:test'
|
3
|
+
task test: :environment do
|
4
|
+
unless ENV['EMAIL'].present?
|
5
|
+
raise ArgumentError, 'Must pass EMAIL environment variable. ' \
|
6
|
+
'Example: EMAIL=harpiya@example.com bundle exec rake email:test'
|
7
|
+
end
|
8
|
+
Harpiya::TestMailer.test_email(ENV['EMAIL']).deliver_now
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
namespace :exchanges do
|
2
|
+
desc %q{Takes unreturned exchanged items and creates a new order to charge
|
3
|
+
the customer for not returning them}
|
4
|
+
task charge_unreturned_items: :environment do
|
5
|
+
unreturned_return_items_scope = Harpiya::ReturnItem.awaiting_return.exchange_processed
|
6
|
+
unreturned_return_items = unreturned_return_items_scope.joins(:exchange_inventory_units).where([
|
7
|
+
'harpiya_inventory_units.created_at < :days_ago AND harpiya_inventory_units.state = :iu_state',
|
8
|
+
days_ago: Harpiya::Config[:expedited_exchanges_days_window].days.ago, iu_state: 'shipped'
|
9
|
+
]).distinct.to_a
|
10
|
+
|
11
|
+
# Determine that a return item has already been deemed unreturned and therefore charged
|
12
|
+
# by the fact that its exchange inventory unit has popped off to a different order
|
13
|
+
unreturned_return_items.select! { |ri| ri.exchange_inventory_units.exists?(order_id: ri.inventory_unit.order_id) }
|
14
|
+
|
15
|
+
failed_orders = []
|
16
|
+
|
17
|
+
unreturned_return_items.group_by(&:exchange_shipments).each do |shipments, return_items|
|
18
|
+
original_order = shipments.first.order
|
19
|
+
order_attributes = {
|
20
|
+
bill_address: original_order.bill_address,
|
21
|
+
ship_address: original_order.ship_address,
|
22
|
+
email: original_order.email
|
23
|
+
}
|
24
|
+
order_attributes[:store_id] = original_order.store_id
|
25
|
+
order = Harpiya::Order.create!(order_attributes)
|
26
|
+
|
27
|
+
order.associate_user!(original_order.user) if original_order.user
|
28
|
+
|
29
|
+
return_items.group_by(&:exchange_variant).map do |variant, variant_return_items|
|
30
|
+
variant_inventory_units = variant_return_items.map(&:exchange_inventory_units).flatten
|
31
|
+
line_item = Harpiya::LineItem.create!(variant: variant, quantity: variant_return_items.count, order: order)
|
32
|
+
variant_inventory_units.each { |i| i.update!(line_item_id: line_item.id, order_id: order.id) }
|
33
|
+
end
|
34
|
+
|
35
|
+
order.reload.update_with_updater!
|
36
|
+
while order.state != order.checkout_steps[-2] && order.next; end
|
37
|
+
|
38
|
+
unless order.payments.present?
|
39
|
+
card_to_reuse = original_order.valid_credit_cards.first
|
40
|
+
card_to_reuse = original_order.user.credit_cards.default.first if !card_to_reuse && original_order.user
|
41
|
+
Harpiya::Payment.create!(order: order,
|
42
|
+
payment_method_id: card_to_reuse.try(:payment_method_id),
|
43
|
+
source: card_to_reuse,
|
44
|
+
amount: order.total)
|
45
|
+
end
|
46
|
+
|
47
|
+
# the order builds a shipment on its own on transition to delivery, but we want
|
48
|
+
# the original exchange shipment, not the built one
|
49
|
+
order.shipments.destroy_all
|
50
|
+
shipments.each { |shipment| shipment.update(order_id: order.id) }
|
51
|
+
order.update!(state: 'confirm')
|
52
|
+
|
53
|
+
order.reload.next!
|
54
|
+
order.update_with_updater!
|
55
|
+
order.finalize!
|
56
|
+
|
57
|
+
failed_orders << order unless order.completed? && order.valid?
|
58
|
+
rescue StandardError
|
59
|
+
failed_orders << order
|
60
|
+
end
|
61
|
+
failure_message = failed_orders.map { |o| "#{o.number} - #{o.errors.full_messages}" }.join(', ')
|
62
|
+
raise UnableToChargeForUnreturnedItems, failure_message if failed_orders.present?
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
class UnableToChargeForUnreturnedItems < StandardError; end
|
data/script/rails
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/harpiya/core/engine', __FILE__)
|
6
|
+
|
7
|
+
require 'rails/all'
|
8
|
+
require 'rails/engine/commands'
|
9
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
Binary file
|
@@ -0,0 +1,1669 @@
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
3
|
+
module.exports = factory();
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
5
|
+
define([], factory);
|
6
|
+
else if(typeof exports === 'object')
|
7
|
+
exports["Cleave"] = factory();
|
8
|
+
else
|
9
|
+
root["Cleave"] = factory();
|
10
|
+
})(this, function() {
|
11
|
+
return /******/ (function(modules) { // webpackBootstrap
|
12
|
+
/******/ // The module cache
|
13
|
+
/******/ var installedModules = {};
|
14
|
+
|
15
|
+
/******/ // The require function
|
16
|
+
/******/ function __webpack_require__(moduleId) {
|
17
|
+
|
18
|
+
/******/ // Check if module is in cache
|
19
|
+
/******/ if(installedModules[moduleId])
|
20
|
+
/******/ return installedModules[moduleId].exports;
|
21
|
+
|
22
|
+
/******/ // Create a new module (and put it into the cache)
|
23
|
+
/******/ var module = installedModules[moduleId] = {
|
24
|
+
/******/ exports: {},
|
25
|
+
/******/ id: moduleId,
|
26
|
+
/******/ loaded: false
|
27
|
+
/******/ };
|
28
|
+
|
29
|
+
/******/ // Execute the module function
|
30
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
31
|
+
|
32
|
+
/******/ // Flag the module as loaded
|
33
|
+
/******/ module.loaded = true;
|
34
|
+
|
35
|
+
/******/ // Return the exports of the module
|
36
|
+
/******/ return module.exports;
|
37
|
+
/******/ }
|
38
|
+
|
39
|
+
|
40
|
+
/******/ // expose the modules object (__webpack_modules__)
|
41
|
+
/******/ __webpack_require__.m = modules;
|
42
|
+
|
43
|
+
/******/ // expose the module cache
|
44
|
+
/******/ __webpack_require__.c = installedModules;
|
45
|
+
|
46
|
+
/******/ // __webpack_public_path__
|
47
|
+
/******/ __webpack_require__.p = "";
|
48
|
+
|
49
|
+
/******/ // Load entry module and return exports
|
50
|
+
/******/ return __webpack_require__(0);
|
51
|
+
/******/ })
|
52
|
+
/************************************************************************/
|
53
|
+
/******/ ([
|
54
|
+
/* 0 */
|
55
|
+
/***/ (function(module, exports, __webpack_require__) {
|
56
|
+
|
57
|
+
/* WEBPACK VAR INJECTION */(function(global) {'use strict';
|
58
|
+
|
59
|
+
/**
|
60
|
+
* Construct a new Cleave instance by passing the configuration object
|
61
|
+
*
|
62
|
+
* @param {String | HTMLElement} element
|
63
|
+
* @param {Object} opts
|
64
|
+
*/
|
65
|
+
var Cleave = function (element, opts) {
|
66
|
+
var owner = this;
|
67
|
+
var hasMultipleElements = false;
|
68
|
+
|
69
|
+
if (typeof element === 'string') {
|
70
|
+
owner.element = document.querySelector(element);
|
71
|
+
hasMultipleElements = document.querySelectorAll(element).length > 1;
|
72
|
+
} else {
|
73
|
+
if (typeof element.length !== 'undefined' && element.length > 0) {
|
74
|
+
owner.element = element[0];
|
75
|
+
hasMultipleElements = element.length > 1;
|
76
|
+
} else {
|
77
|
+
owner.element = element;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
if (!owner.element) {
|
82
|
+
throw new Error('[cleave.js] Please check the element');
|
83
|
+
}
|
84
|
+
|
85
|
+
if (hasMultipleElements) {
|
86
|
+
try {
|
87
|
+
// eslint-disable-next-line
|
88
|
+
console.warn('[cleave.js] Multiple input fields matched, cleave.js will only take the first one.');
|
89
|
+
} catch (e) {
|
90
|
+
// Old IE
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
opts.initValue = owner.element.value;
|
95
|
+
|
96
|
+
owner.properties = Cleave.DefaultProperties.assign({}, opts);
|
97
|
+
|
98
|
+
owner.init();
|
99
|
+
};
|
100
|
+
|
101
|
+
Cleave.prototype = {
|
102
|
+
init: function () {
|
103
|
+
var owner = this, pps = owner.properties;
|
104
|
+
|
105
|
+
// no need to use this lib
|
106
|
+
if (!pps.numeral && !pps.phone && !pps.creditCard && !pps.time && !pps.date && (pps.blocksLength === 0 && !pps.prefix)) {
|
107
|
+
owner.onInput(pps.initValue);
|
108
|
+
|
109
|
+
return;
|
110
|
+
}
|
111
|
+
|
112
|
+
pps.maxLength = Cleave.Util.getMaxLength(pps.blocks);
|
113
|
+
|
114
|
+
owner.isAndroid = Cleave.Util.isAndroid();
|
115
|
+
owner.lastInputValue = '';
|
116
|
+
owner.isBackward = '';
|
117
|
+
|
118
|
+
owner.onChangeListener = owner.onChange.bind(owner);
|
119
|
+
owner.onKeyDownListener = owner.onKeyDown.bind(owner);
|
120
|
+
owner.onFocusListener = owner.onFocus.bind(owner);
|
121
|
+
owner.onCutListener = owner.onCut.bind(owner);
|
122
|
+
owner.onCopyListener = owner.onCopy.bind(owner);
|
123
|
+
|
124
|
+
owner.initSwapHiddenInput();
|
125
|
+
|
126
|
+
owner.element.addEventListener('input', owner.onChangeListener);
|
127
|
+
owner.element.addEventListener('keydown', owner.onKeyDownListener);
|
128
|
+
owner.element.addEventListener('focus', owner.onFocusListener);
|
129
|
+
owner.element.addEventListener('cut', owner.onCutListener);
|
130
|
+
owner.element.addEventListener('copy', owner.onCopyListener);
|
131
|
+
|
132
|
+
|
133
|
+
owner.initPhoneFormatter();
|
134
|
+
owner.initDateFormatter();
|
135
|
+
owner.initTimeFormatter();
|
136
|
+
owner.initNumeralFormatter();
|
137
|
+
|
138
|
+
// avoid touch input field if value is null
|
139
|
+
// otherwise Firefox will add red box-shadow for <input required />
|
140
|
+
if (pps.initValue || (pps.prefix && !pps.noImmediatePrefix)) {
|
141
|
+
owner.onInput(pps.initValue);
|
142
|
+
}
|
143
|
+
},
|
144
|
+
|
145
|
+
initSwapHiddenInput: function () {
|
146
|
+
var owner = this, pps = owner.properties;
|
147
|
+
if (!pps.swapHiddenInput) return;
|
148
|
+
|
149
|
+
var inputFormatter = owner.element.cloneNode(true);
|
150
|
+
owner.element.parentNode.insertBefore(inputFormatter, owner.element);
|
151
|
+
|
152
|
+
owner.elementSwapHidden = owner.element;
|
153
|
+
owner.elementSwapHidden.type = 'hidden';
|
154
|
+
|
155
|
+
owner.element = inputFormatter;
|
156
|
+
owner.element.id = '';
|
157
|
+
},
|
158
|
+
|
159
|
+
initNumeralFormatter: function () {
|
160
|
+
var owner = this, pps = owner.properties;
|
161
|
+
|
162
|
+
if (!pps.numeral) {
|
163
|
+
return;
|
164
|
+
}
|
165
|
+
|
166
|
+
pps.numeralFormatter = new Cleave.NumeralFormatter(
|
167
|
+
pps.numeralDecimalMark,
|
168
|
+
pps.numeralIntegerScale,
|
169
|
+
pps.numeralDecimalScale,
|
170
|
+
pps.numeralThousandsGroupStyle,
|
171
|
+
pps.numeralPositiveOnly,
|
172
|
+
pps.stripLeadingZeroes,
|
173
|
+
pps.prefix,
|
174
|
+
pps.signBeforePrefix,
|
175
|
+
pps.tailPrefix,
|
176
|
+
pps.delimiter
|
177
|
+
);
|
178
|
+
},
|
179
|
+
|
180
|
+
initTimeFormatter: function() {
|
181
|
+
var owner = this, pps = owner.properties;
|
182
|
+
|
183
|
+
if (!pps.time) {
|
184
|
+
return;
|
185
|
+
}
|
186
|
+
|
187
|
+
pps.timeFormatter = new Cleave.TimeFormatter(pps.timePattern, pps.timeFormat);
|
188
|
+
pps.blocks = pps.timeFormatter.getBlocks();
|
189
|
+
pps.blocksLength = pps.blocks.length;
|
190
|
+
pps.maxLength = Cleave.Util.getMaxLength(pps.blocks);
|
191
|
+
},
|
192
|
+
|
193
|
+
initDateFormatter: function () {
|
194
|
+
var owner = this, pps = owner.properties;
|
195
|
+
|
196
|
+
if (!pps.date) {
|
197
|
+
return;
|
198
|
+
}
|
199
|
+
|
200
|
+
pps.dateFormatter = new Cleave.DateFormatter(pps.datePattern, pps.dateMin, pps.dateMax);
|
201
|
+
pps.blocks = pps.dateFormatter.getBlocks();
|
202
|
+
pps.blocksLength = pps.blocks.length;
|
203
|
+
pps.maxLength = Cleave.Util.getMaxLength(pps.blocks);
|
204
|
+
},
|
205
|
+
|
206
|
+
initPhoneFormatter: function () {
|
207
|
+
var owner = this, pps = owner.properties;
|
208
|
+
|
209
|
+
if (!pps.phone) {
|
210
|
+
return;
|
211
|
+
}
|
212
|
+
|
213
|
+
// Cleave.AsYouTypeFormatter should be provided by
|
214
|
+
// external google closure lib
|
215
|
+
try {
|
216
|
+
pps.phoneFormatter = new Cleave.PhoneFormatter(
|
217
|
+
new pps.root.Cleave.AsYouTypeFormatter(pps.phoneRegionCode),
|
218
|
+
pps.delimiter
|
219
|
+
);
|
220
|
+
} catch (ex) {
|
221
|
+
throw new Error('[cleave.js] Please include phone-type-formatter.{country}.js lib');
|
222
|
+
}
|
223
|
+
},
|
224
|
+
|
225
|
+
onKeyDown: function (event) {
|
226
|
+
var owner = this,
|
227
|
+
charCode = event.which || event.keyCode;
|
228
|
+
|
229
|
+
owner.lastInputValue = owner.element.value;
|
230
|
+
owner.isBackward = charCode === 8;
|
231
|
+
},
|
232
|
+
|
233
|
+
onChange: function (event) {
|
234
|
+
var owner = this, pps = owner.properties,
|
235
|
+
Util = Cleave.Util;
|
236
|
+
|
237
|
+
owner.isBackward = owner.isBackward || event.inputType === 'deleteContentBackward';
|
238
|
+
|
239
|
+
var postDelimiter = Util.getPostDelimiter(owner.lastInputValue, pps.delimiter, pps.delimiters);
|
240
|
+
|
241
|
+
if (owner.isBackward && postDelimiter) {
|
242
|
+
pps.postDelimiterBackspace = postDelimiter;
|
243
|
+
} else {
|
244
|
+
pps.postDelimiterBackspace = false;
|
245
|
+
}
|
246
|
+
|
247
|
+
this.onInput(this.element.value);
|
248
|
+
},
|
249
|
+
|
250
|
+
onFocus: function () {
|
251
|
+
var owner = this,
|
252
|
+
pps = owner.properties;
|
253
|
+
owner.lastInputValue = owner.element.value;
|
254
|
+
|
255
|
+
if (pps.prefix && pps.noImmediatePrefix && !owner.element.value) {
|
256
|
+
this.onInput(pps.prefix);
|
257
|
+
}
|
258
|
+
|
259
|
+
Cleave.Util.fixPrefixCursor(owner.element, pps.prefix, pps.delimiter, pps.delimiters);
|
260
|
+
},
|
261
|
+
|
262
|
+
onCut: function (e) {
|
263
|
+
if (!Cleave.Util.checkFullSelection(this.element.value)) return;
|
264
|
+
this.copyClipboardData(e);
|
265
|
+
this.onInput('');
|
266
|
+
},
|
267
|
+
|
268
|
+
onCopy: function (e) {
|
269
|
+
if (!Cleave.Util.checkFullSelection(this.element.value)) return;
|
270
|
+
this.copyClipboardData(e);
|
271
|
+
},
|
272
|
+
|
273
|
+
copyClipboardData: function (e) {
|
274
|
+
var owner = this,
|
275
|
+
pps = owner.properties,
|
276
|
+
Util = Cleave.Util,
|
277
|
+
inputValue = owner.element.value,
|
278
|
+
textToCopy = '';
|
279
|
+
|
280
|
+
if (!pps.copyDelimiter) {
|
281
|
+
textToCopy = Util.stripDelimiters(inputValue, pps.delimiter, pps.delimiters);
|
282
|
+
} else {
|
283
|
+
textToCopy = inputValue;
|
284
|
+
}
|
285
|
+
|
286
|
+
try {
|
287
|
+
if (e.clipboardData) {
|
288
|
+
e.clipboardData.setData('Text', textToCopy);
|
289
|
+
} else {
|
290
|
+
window.clipboardData.setData('Text', textToCopy);
|
291
|
+
}
|
292
|
+
|
293
|
+
e.preventDefault();
|
294
|
+
} catch (ex) {
|
295
|
+
// empty
|
296
|
+
}
|
297
|
+
},
|
298
|
+
|
299
|
+
onInput: function (value) {
|
300
|
+
var owner = this, pps = owner.properties,
|
301
|
+
Util = Cleave.Util;
|
302
|
+
|
303
|
+
// case 1: delete one more character "4"
|
304
|
+
// 1234*| -> hit backspace -> 123|
|
305
|
+
// case 2: last character is not delimiter which is:
|
306
|
+
// 12|34* -> hit backspace -> 1|34*
|
307
|
+
// note: no need to apply this for numeral mode
|
308
|
+
var postDelimiterAfter = Util.getPostDelimiter(value, pps.delimiter, pps.delimiters);
|
309
|
+
if (!pps.numeral && pps.postDelimiterBackspace && !postDelimiterAfter) {
|
310
|
+
value = Util.headStr(value, value.length - pps.postDelimiterBackspace.length);
|
311
|
+
}
|
312
|
+
|
313
|
+
// phone formatter
|
314
|
+
if (pps.phone) {
|
315
|
+
if (pps.prefix && (!pps.noImmediatePrefix || value.length)) {
|
316
|
+
pps.result = pps.prefix + pps.phoneFormatter.format(value).slice(pps.prefix.length);
|
317
|
+
} else {
|
318
|
+
pps.result = pps.phoneFormatter.format(value);
|
319
|
+
}
|
320
|
+
owner.updateValueState();
|
321
|
+
|
322
|
+
return;
|
323
|
+
}
|
324
|
+
|
325
|
+
// numeral formatter
|
326
|
+
if (pps.numeral) {
|
327
|
+
// Do not show prefix when noImmediatePrefix is specified
|
328
|
+
// This mostly because we need to show user the native input placeholder
|
329
|
+
if (pps.prefix && pps.noImmediatePrefix && value.length === 0) {
|
330
|
+
pps.result = '';
|
331
|
+
} else {
|
332
|
+
pps.result = pps.numeralFormatter.format(value);
|
333
|
+
}
|
334
|
+
owner.updateValueState();
|
335
|
+
|
336
|
+
return;
|
337
|
+
}
|
338
|
+
|
339
|
+
// date
|
340
|
+
if (pps.date) {
|
341
|
+
value = pps.dateFormatter.getValidatedDate(value);
|
342
|
+
}
|
343
|
+
|
344
|
+
// time
|
345
|
+
if (pps.time) {
|
346
|
+
value = pps.timeFormatter.getValidatedTime(value);
|
347
|
+
}
|
348
|
+
|
349
|
+
// strip delimiters
|
350
|
+
value = Util.stripDelimiters(value, pps.delimiter, pps.delimiters);
|
351
|
+
|
352
|
+
// strip prefix
|
353
|
+
value = Util.getPrefixStrippedValue(value, pps.prefix, pps.prefixLength, pps.result, pps.delimiter, pps.delimiters, pps.noImmediatePrefix, pps.tailPrefix, pps.signBeforePrefix);
|
354
|
+
|
355
|
+
// strip non-numeric characters
|
356
|
+
value = pps.numericOnly ? Util.strip(value, /[^\d]/g) : value;
|
357
|
+
|
358
|
+
// convert case
|
359
|
+
value = pps.uppercase ? value.toUpperCase() : value;
|
360
|
+
value = pps.lowercase ? value.toLowerCase() : value;
|
361
|
+
|
362
|
+
// prevent from showing prefix when no immediate option enabled with empty input value
|
363
|
+
if (pps.prefix) {
|
364
|
+
if (pps.tailPrefix) {
|
365
|
+
value = value + pps.prefix;
|
366
|
+
} else {
|
367
|
+
value = pps.prefix + value;
|
368
|
+
}
|
369
|
+
|
370
|
+
|
371
|
+
// no blocks specified, no need to do formatting
|
372
|
+
if (pps.blocksLength === 0) {
|
373
|
+
pps.result = value;
|
374
|
+
owner.updateValueState();
|
375
|
+
|
376
|
+
return;
|
377
|
+
}
|
378
|
+
}
|
379
|
+
|
380
|
+
// update credit card props
|
381
|
+
if (pps.creditCard) {
|
382
|
+
owner.updateCreditCardPropsByValue(value);
|
383
|
+
}
|
384
|
+
|
385
|
+
// strip over length characters
|
386
|
+
value = Util.headStr(value, pps.maxLength);
|
387
|
+
|
388
|
+
// apply blocks
|
389
|
+
pps.result = Util.getFormattedValue(
|
390
|
+
value,
|
391
|
+
pps.blocks, pps.blocksLength,
|
392
|
+
pps.delimiter, pps.delimiters, pps.delimiterLazyShow
|
393
|
+
);
|
394
|
+
|
395
|
+
owner.updateValueState();
|
396
|
+
},
|
397
|
+
|
398
|
+
updateCreditCardPropsByValue: function (value) {
|
399
|
+
var owner = this, pps = owner.properties,
|
400
|
+
Util = Cleave.Util,
|
401
|
+
creditCardInfo;
|
402
|
+
|
403
|
+
// At least one of the first 4 characters has changed
|
404
|
+
if (Util.headStr(pps.result, 4) === Util.headStr(value, 4)) {
|
405
|
+
return;
|
406
|
+
}
|
407
|
+
|
408
|
+
creditCardInfo = Cleave.CreditCardDetector.getInfo(value, pps.creditCardStrictMode);
|
409
|
+
|
410
|
+
pps.blocks = creditCardInfo.blocks;
|
411
|
+
pps.blocksLength = pps.blocks.length;
|
412
|
+
pps.maxLength = Util.getMaxLength(pps.blocks);
|
413
|
+
|
414
|
+
// credit card type changed
|
415
|
+
if (pps.creditCardType !== creditCardInfo.type) {
|
416
|
+
pps.creditCardType = creditCardInfo.type;
|
417
|
+
|
418
|
+
pps.onCreditCardTypeChanged.call(owner, pps.creditCardType);
|
419
|
+
}
|
420
|
+
},
|
421
|
+
|
422
|
+
updateValueState: function () {
|
423
|
+
var owner = this,
|
424
|
+
Util = Cleave.Util,
|
425
|
+
pps = owner.properties;
|
426
|
+
|
427
|
+
if (!owner.element) {
|
428
|
+
return;
|
429
|
+
}
|
430
|
+
|
431
|
+
var endPos = owner.element.selectionEnd;
|
432
|
+
var oldValue = owner.element.value;
|
433
|
+
var newValue = pps.result;
|
434
|
+
|
435
|
+
endPos = Util.getNextCursorPosition(endPos, oldValue, newValue, pps.delimiter, pps.delimiters);
|
436
|
+
|
437
|
+
// fix Android browser type="text" input field
|
438
|
+
// cursor not jumping issue
|
439
|
+
if (owner.isAndroid) {
|
440
|
+
window.setTimeout(function () {
|
441
|
+
owner.element.value = newValue;
|
442
|
+
Util.setSelection(owner.element, endPos, pps.document, false);
|
443
|
+
owner.callOnValueChanged();
|
444
|
+
}, 1);
|
445
|
+
|
446
|
+
return;
|
447
|
+
}
|
448
|
+
|
449
|
+
owner.element.value = newValue;
|
450
|
+
if (pps.swapHiddenInput) owner.elementSwapHidden.value = owner.getRawValue();
|
451
|
+
|
452
|
+
Util.setSelection(owner.element, endPos, pps.document, false);
|
453
|
+
owner.callOnValueChanged();
|
454
|
+
},
|
455
|
+
|
456
|
+
callOnValueChanged: function () {
|
457
|
+
var owner = this,
|
458
|
+
pps = owner.properties;
|
459
|
+
|
460
|
+
pps.onValueChanged.call(owner, {
|
461
|
+
target: {
|
462
|
+
name: owner.element.name,
|
463
|
+
value: pps.result,
|
464
|
+
rawValue: owner.getRawValue()
|
465
|
+
}
|
466
|
+
});
|
467
|
+
},
|
468
|
+
|
469
|
+
setPhoneRegionCode: function (phoneRegionCode) {
|
470
|
+
var owner = this, pps = owner.properties;
|
471
|
+
|
472
|
+
pps.phoneRegionCode = phoneRegionCode;
|
473
|
+
owner.initPhoneFormatter();
|
474
|
+
owner.onChange();
|
475
|
+
},
|
476
|
+
|
477
|
+
setRawValue: function (value) {
|
478
|
+
var owner = this, pps = owner.properties;
|
479
|
+
|
480
|
+
value = value !== undefined && value !== null ? value.toString() : '';
|
481
|
+
|
482
|
+
if (pps.numeral) {
|
483
|
+
value = value.replace('.', pps.numeralDecimalMark);
|
484
|
+
}
|
485
|
+
|
486
|
+
pps.postDelimiterBackspace = false;
|
487
|
+
|
488
|
+
owner.element.value = value;
|
489
|
+
owner.onInput(value);
|
490
|
+
},
|
491
|
+
|
492
|
+
getRawValue: function () {
|
493
|
+
var owner = this,
|
494
|
+
pps = owner.properties,
|
495
|
+
Util = Cleave.Util,
|
496
|
+
rawValue = owner.element.value;
|
497
|
+
|
498
|
+
if (pps.rawValueTrimPrefix) {
|
499
|
+
rawValue = Util.getPrefixStrippedValue(rawValue, pps.prefix, pps.prefixLength, pps.result, pps.delimiter, pps.delimiters, pps.noImmediatePrefix, pps.tailPrefix, pps.signBeforePrefix);
|
500
|
+
}
|
501
|
+
|
502
|
+
if (pps.numeral) {
|
503
|
+
rawValue = pps.numeralFormatter.getRawValue(rawValue);
|
504
|
+
} else {
|
505
|
+
rawValue = Util.stripDelimiters(rawValue, pps.delimiter, pps.delimiters);
|
506
|
+
}
|
507
|
+
|
508
|
+
return rawValue;
|
509
|
+
},
|
510
|
+
|
511
|
+
getISOFormatDate: function () {
|
512
|
+
var owner = this,
|
513
|
+
pps = owner.properties;
|
514
|
+
|
515
|
+
return pps.date ? pps.dateFormatter.getISOFormatDate() : '';
|
516
|
+
},
|
517
|
+
|
518
|
+
getISOFormatTime: function () {
|
519
|
+
var owner = this,
|
520
|
+
pps = owner.properties;
|
521
|
+
|
522
|
+
return pps.time ? pps.timeFormatter.getISOFormatTime() : '';
|
523
|
+
},
|
524
|
+
|
525
|
+
getFormattedValue: function () {
|
526
|
+
return this.element.value;
|
527
|
+
},
|
528
|
+
|
529
|
+
destroy: function () {
|
530
|
+
var owner = this;
|
531
|
+
|
532
|
+
owner.element.removeEventListener('input', owner.onChangeListener);
|
533
|
+
owner.element.removeEventListener('keydown', owner.onKeyDownListener);
|
534
|
+
owner.element.removeEventListener('focus', owner.onFocusListener);
|
535
|
+
owner.element.removeEventListener('cut', owner.onCutListener);
|
536
|
+
owner.element.removeEventListener('copy', owner.onCopyListener);
|
537
|
+
},
|
538
|
+
|
539
|
+
toString: function () {
|
540
|
+
return '[Cleave Object]';
|
541
|
+
}
|
542
|
+
};
|
543
|
+
|
544
|
+
Cleave.NumeralFormatter = __webpack_require__(1);
|
545
|
+
Cleave.DateFormatter = __webpack_require__(2);
|
546
|
+
Cleave.TimeFormatter = __webpack_require__(3);
|
547
|
+
Cleave.PhoneFormatter = __webpack_require__(4);
|
548
|
+
Cleave.CreditCardDetector = __webpack_require__(5);
|
549
|
+
Cleave.Util = __webpack_require__(6);
|
550
|
+
Cleave.DefaultProperties = __webpack_require__(7);
|
551
|
+
|
552
|
+
// for angular directive
|
553
|
+
((typeof global === 'object' && global) ? global : window)['Cleave'] = Cleave;
|
554
|
+
|
555
|
+
// CommonJS
|
556
|
+
module.exports = Cleave;
|
557
|
+
|
558
|
+
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
|
559
|
+
|
560
|
+
/***/ }),
|
561
|
+
/* 1 */
|
562
|
+
/***/ (function(module, exports) {
|
563
|
+
|
564
|
+
'use strict';
|
565
|
+
|
566
|
+
var NumeralFormatter = function (numeralDecimalMark,
|
567
|
+
numeralIntegerScale,
|
568
|
+
numeralDecimalScale,
|
569
|
+
numeralThousandsGroupStyle,
|
570
|
+
numeralPositiveOnly,
|
571
|
+
stripLeadingZeroes,
|
572
|
+
prefix,
|
573
|
+
signBeforePrefix,
|
574
|
+
tailPrefix,
|
575
|
+
delimiter) {
|
576
|
+
var owner = this;
|
577
|
+
|
578
|
+
owner.numeralDecimalMark = numeralDecimalMark || '.';
|
579
|
+
owner.numeralIntegerScale = numeralIntegerScale > 0 ? numeralIntegerScale : 0;
|
580
|
+
owner.numeralDecimalScale = numeralDecimalScale >= 0 ? numeralDecimalScale : 2;
|
581
|
+
owner.numeralThousandsGroupStyle = numeralThousandsGroupStyle || NumeralFormatter.groupStyle.thousand;
|
582
|
+
owner.numeralPositiveOnly = !!numeralPositiveOnly;
|
583
|
+
owner.stripLeadingZeroes = stripLeadingZeroes !== false;
|
584
|
+
owner.prefix = (prefix || prefix === '') ? prefix : '';
|
585
|
+
owner.signBeforePrefix = !!signBeforePrefix;
|
586
|
+
owner.tailPrefix = !!tailPrefix;
|
587
|
+
owner.delimiter = (delimiter || delimiter === '') ? delimiter : ',';
|
588
|
+
owner.delimiterRE = delimiter ? new RegExp('\\' + delimiter, 'g') : '';
|
589
|
+
};
|
590
|
+
|
591
|
+
NumeralFormatter.groupStyle = {
|
592
|
+
thousand: 'thousand',
|
593
|
+
lakh: 'lakh',
|
594
|
+
wan: 'wan',
|
595
|
+
none: 'none'
|
596
|
+
};
|
597
|
+
|
598
|
+
NumeralFormatter.prototype = {
|
599
|
+
getRawValue: function (value) {
|
600
|
+
return value.replace(this.delimiterRE, '').replace(this.numeralDecimalMark, '.');
|
601
|
+
},
|
602
|
+
|
603
|
+
format: function (value) {
|
604
|
+
var owner = this, parts, partSign, partSignAndPrefix, partInteger, partDecimal = '';
|
605
|
+
|
606
|
+
// strip alphabet letters
|
607
|
+
value = value.replace(/[A-Za-z]/g, '')
|
608
|
+
// replace the first decimal mark with reserved placeholder
|
609
|
+
.replace(owner.numeralDecimalMark, 'M')
|
610
|
+
|
611
|
+
// strip non numeric letters except minus and "M"
|
612
|
+
// this is to ensure prefix has been stripped
|
613
|
+
.replace(/[^\dM-]/g, '')
|
614
|
+
|
615
|
+
// replace the leading minus with reserved placeholder
|
616
|
+
.replace(/^\-/, 'N')
|
617
|
+
|
618
|
+
// strip the other minus sign (if present)
|
619
|
+
.replace(/\-/g, '')
|
620
|
+
|
621
|
+
// replace the minus sign (if present)
|
622
|
+
.replace('N', owner.numeralPositiveOnly ? '' : '-')
|
623
|
+
|
624
|
+
// replace decimal mark
|
625
|
+
.replace('M', owner.numeralDecimalMark);
|
626
|
+
|
627
|
+
// strip any leading zeros
|
628
|
+
if (owner.stripLeadingZeroes) {
|
629
|
+
value = value.replace(/^(-)?0+(?=\d)/, '$1');
|
630
|
+
}
|
631
|
+
|
632
|
+
partSign = value.slice(0, 1) === '-' ? '-' : '';
|
633
|
+
if (typeof owner.prefix != 'undefined') {
|
634
|
+
if (owner.signBeforePrefix) {
|
635
|
+
partSignAndPrefix = partSign + owner.prefix;
|
636
|
+
} else {
|
637
|
+
partSignAndPrefix = owner.prefix + partSign;
|
638
|
+
}
|
639
|
+
} else {
|
640
|
+
partSignAndPrefix = partSign;
|
641
|
+
}
|
642
|
+
|
643
|
+
partInteger = value;
|
644
|
+
|
645
|
+
if (value.indexOf(owner.numeralDecimalMark) >= 0) {
|
646
|
+
parts = value.split(owner.numeralDecimalMark);
|
647
|
+
partInteger = parts[0];
|
648
|
+
partDecimal = owner.numeralDecimalMark + parts[1].slice(0, owner.numeralDecimalScale);
|
649
|
+
}
|
650
|
+
|
651
|
+
if(partSign === '-') {
|
652
|
+
partInteger = partInteger.slice(1);
|
653
|
+
}
|
654
|
+
|
655
|
+
if (owner.numeralIntegerScale > 0) {
|
656
|
+
partInteger = partInteger.slice(0, owner.numeralIntegerScale);
|
657
|
+
}
|
658
|
+
|
659
|
+
switch (owner.numeralThousandsGroupStyle) {
|
660
|
+
case NumeralFormatter.groupStyle.lakh:
|
661
|
+
partInteger = partInteger.replace(/(\d)(?=(\d\d)+\d$)/g, '$1' + owner.delimiter);
|
662
|
+
|
663
|
+
break;
|
664
|
+
|
665
|
+
case NumeralFormatter.groupStyle.wan:
|
666
|
+
partInteger = partInteger.replace(/(\d)(?=(\d{4})+$)/g, '$1' + owner.delimiter);
|
667
|
+
|
668
|
+
break;
|
669
|
+
|
670
|
+
case NumeralFormatter.groupStyle.thousand:
|
671
|
+
partInteger = partInteger.replace(/(\d)(?=(\d{3})+$)/g, '$1' + owner.delimiter);
|
672
|
+
|
673
|
+
break;
|
674
|
+
}
|
675
|
+
|
676
|
+
if (owner.tailPrefix) {
|
677
|
+
return partSign + partInteger.toString() + (owner.numeralDecimalScale > 0 ? partDecimal.toString() : '') + owner.prefix;
|
678
|
+
}
|
679
|
+
|
680
|
+
return partSignAndPrefix + partInteger.toString() + (owner.numeralDecimalScale > 0 ? partDecimal.toString() : '');
|
681
|
+
}
|
682
|
+
};
|
683
|
+
|
684
|
+
module.exports = NumeralFormatter;
|
685
|
+
|
686
|
+
|
687
|
+
/***/ }),
|
688
|
+
/* 2 */
|
689
|
+
/***/ (function(module, exports) {
|
690
|
+
|
691
|
+
'use strict';
|
692
|
+
|
693
|
+
var DateFormatter = function (datePattern, dateMin, dateMax) {
|
694
|
+
var owner = this;
|
695
|
+
|
696
|
+
owner.date = [];
|
697
|
+
owner.blocks = [];
|
698
|
+
owner.datePattern = datePattern;
|
699
|
+
owner.dateMin = dateMin
|
700
|
+
.split('-')
|
701
|
+
.reverse()
|
702
|
+
.map(function(x) {
|
703
|
+
return parseInt(x, 10);
|
704
|
+
});
|
705
|
+
if (owner.dateMin.length === 2) owner.dateMin.unshift(0);
|
706
|
+
|
707
|
+
owner.dateMax = dateMax
|
708
|
+
.split('-')
|
709
|
+
.reverse()
|
710
|
+
.map(function(x) {
|
711
|
+
return parseInt(x, 10);
|
712
|
+
});
|
713
|
+
if (owner.dateMax.length === 2) owner.dateMax.unshift(0);
|
714
|
+
|
715
|
+
owner.initBlocks();
|
716
|
+
};
|
717
|
+
|
718
|
+
DateFormatter.prototype = {
|
719
|
+
initBlocks: function () {
|
720
|
+
var owner = this;
|
721
|
+
owner.datePattern.forEach(function (value) {
|
722
|
+
if (value === 'Y') {
|
723
|
+
owner.blocks.push(4);
|
724
|
+
} else {
|
725
|
+
owner.blocks.push(2);
|
726
|
+
}
|
727
|
+
});
|
728
|
+
},
|
729
|
+
|
730
|
+
getISOFormatDate: function () {
|
731
|
+
var owner = this,
|
732
|
+
date = owner.date;
|
733
|
+
|
734
|
+
return date[2] ? (
|
735
|
+
date[2] + '-' + owner.addLeadingZero(date[1]) + '-' + owner.addLeadingZero(date[0])
|
736
|
+
) : '';
|
737
|
+
},
|
738
|
+
|
739
|
+
getBlocks: function () {
|
740
|
+
return this.blocks;
|
741
|
+
},
|
742
|
+
|
743
|
+
getValidatedDate: function (value) {
|
744
|
+
var owner = this, result = '';
|
745
|
+
|
746
|
+
value = value.replace(/[^\d]/g, '');
|
747
|
+
|
748
|
+
owner.blocks.forEach(function (length, index) {
|
749
|
+
if (value.length > 0) {
|
750
|
+
var sub = value.slice(0, length),
|
751
|
+
sub0 = sub.slice(0, 1),
|
752
|
+
rest = value.slice(length);
|
753
|
+
|
754
|
+
switch (owner.datePattern[index]) {
|
755
|
+
case 'd':
|
756
|
+
if (sub === '00') {
|
757
|
+
sub = '01';
|
758
|
+
} else if (parseInt(sub0, 10) > 3) {
|
759
|
+
sub = '0' + sub0;
|
760
|
+
} else if (parseInt(sub, 10) > 31) {
|
761
|
+
sub = '31';
|
762
|
+
}
|
763
|
+
|
764
|
+
break;
|
765
|
+
|
766
|
+
case 'm':
|
767
|
+
if (sub === '00') {
|
768
|
+
sub = '01';
|
769
|
+
} else if (parseInt(sub0, 10) > 1) {
|
770
|
+
sub = '0' + sub0;
|
771
|
+
} else if (parseInt(sub, 10) > 12) {
|
772
|
+
sub = '12';
|
773
|
+
}
|
774
|
+
|
775
|
+
break;
|
776
|
+
}
|
777
|
+
|
778
|
+
result += sub;
|
779
|
+
|
780
|
+
// update remaining string
|
781
|
+
value = rest;
|
782
|
+
}
|
783
|
+
});
|
784
|
+
|
785
|
+
return this.getFixedDateString(result);
|
786
|
+
},
|
787
|
+
|
788
|
+
getFixedDateString: function (value) {
|
789
|
+
var owner = this, datePattern = owner.datePattern, date = [],
|
790
|
+
dayIndex = 0, monthIndex = 0, yearIndex = 0,
|
791
|
+
dayStartIndex = 0, monthStartIndex = 0, yearStartIndex = 0,
|
792
|
+
day, month, year, fullYearDone = false;
|
793
|
+
|
794
|
+
// mm-dd || dd-mm
|
795
|
+
if (value.length === 4 && datePattern[0].toLowerCase() !== 'y' && datePattern[1].toLowerCase() !== 'y') {
|
796
|
+
dayStartIndex = datePattern[0] === 'd' ? 0 : 2;
|
797
|
+
monthStartIndex = 2 - dayStartIndex;
|
798
|
+
day = parseInt(value.slice(dayStartIndex, dayStartIndex + 2), 10);
|
799
|
+
month = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);
|
800
|
+
|
801
|
+
date = this.getFixedDate(day, month, 0);
|
802
|
+
}
|
803
|
+
|
804
|
+
// yyyy-mm-dd || yyyy-dd-mm || mm-dd-yyyy || dd-mm-yyyy || dd-yyyy-mm || mm-yyyy-dd
|
805
|
+
if (value.length === 8) {
|
806
|
+
datePattern.forEach(function (type, index) {
|
807
|
+
switch (type) {
|
808
|
+
case 'd':
|
809
|
+
dayIndex = index;
|
810
|
+
break;
|
811
|
+
case 'm':
|
812
|
+
monthIndex = index;
|
813
|
+
break;
|
814
|
+
default:
|
815
|
+
yearIndex = index;
|
816
|
+
break;
|
817
|
+
}
|
818
|
+
});
|
819
|
+
|
820
|
+
yearStartIndex = yearIndex * 2;
|
821
|
+
dayStartIndex = (dayIndex <= yearIndex) ? dayIndex * 2 : (dayIndex * 2 + 2);
|
822
|
+
monthStartIndex = (monthIndex <= yearIndex) ? monthIndex * 2 : (monthIndex * 2 + 2);
|
823
|
+
|
824
|
+
day = parseInt(value.slice(dayStartIndex, dayStartIndex + 2), 10);
|
825
|
+
month = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);
|
826
|
+
year = parseInt(value.slice(yearStartIndex, yearStartIndex + 4), 10);
|
827
|
+
|
828
|
+
fullYearDone = value.slice(yearStartIndex, yearStartIndex + 4).length === 4;
|
829
|
+
|
830
|
+
date = this.getFixedDate(day, month, year);
|
831
|
+
}
|
832
|
+
|
833
|
+
// mm-yy || yy-mm
|
834
|
+
if (value.length === 4 && (datePattern[0] === 'y' || datePattern[1] === 'y')) {
|
835
|
+
monthStartIndex = datePattern[0] === 'm' ? 0 : 2;
|
836
|
+
yearStartIndex = 2 - monthStartIndex;
|
837
|
+
month = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);
|
838
|
+
year = parseInt(value.slice(yearStartIndex, yearStartIndex + 2), 10);
|
839
|
+
|
840
|
+
fullYearDone = value.slice(yearStartIndex, yearStartIndex + 2).length === 2;
|
841
|
+
|
842
|
+
date = [0, month, year];
|
843
|
+
}
|
844
|
+
|
845
|
+
// mm-yyyy || yyyy-mm
|
846
|
+
if (value.length === 6 && (datePattern[0] === 'Y' || datePattern[1] === 'Y')) {
|
847
|
+
monthStartIndex = datePattern[0] === 'm' ? 0 : 4;
|
848
|
+
yearStartIndex = 2 - 0.5 * monthStartIndex;
|
849
|
+
month = parseInt(value.slice(monthStartIndex, monthStartIndex + 2), 10);
|
850
|
+
year = parseInt(value.slice(yearStartIndex, yearStartIndex + 4), 10);
|
851
|
+
|
852
|
+
fullYearDone = value.slice(yearStartIndex, yearStartIndex + 4).length === 4;
|
853
|
+
|
854
|
+
date = [0, month, year];
|
855
|
+
}
|
856
|
+
|
857
|
+
date = owner.getRangeFixedDate(date);
|
858
|
+
owner.date = date;
|
859
|
+
|
860
|
+
var result = date.length === 0 ? value : datePattern.reduce(function (previous, current) {
|
861
|
+
switch (current) {
|
862
|
+
case 'd':
|
863
|
+
return previous + (date[0] === 0 ? '' : owner.addLeadingZero(date[0]));
|
864
|
+
case 'm':
|
865
|
+
return previous + (date[1] === 0 ? '' : owner.addLeadingZero(date[1]));
|
866
|
+
case 'y':
|
867
|
+
return previous + (fullYearDone ? owner.addLeadingZeroForYear(date[2], false) : '');
|
868
|
+
case 'Y':
|
869
|
+
return previous + (fullYearDone ? owner.addLeadingZeroForYear(date[2], true) : '');
|
870
|
+
}
|
871
|
+
}, '');
|
872
|
+
|
873
|
+
return result;
|
874
|
+
},
|
875
|
+
|
876
|
+
getRangeFixedDate: function (date) {
|
877
|
+
var owner = this,
|
878
|
+
datePattern = owner.datePattern,
|
879
|
+
dateMin = owner.dateMin || [],
|
880
|
+
dateMax = owner.dateMax || [];
|
881
|
+
|
882
|
+
if (!date.length || (dateMin.length < 3 && dateMax.length < 3)) return date;
|
883
|
+
|
884
|
+
if (
|
885
|
+
datePattern.find(function(x) {
|
886
|
+
return x.toLowerCase() === 'y';
|
887
|
+
}) &&
|
888
|
+
date[2] === 0
|
889
|
+
) return date;
|
890
|
+
|
891
|
+
if (dateMax.length && (dateMax[2] < date[2] || (
|
892
|
+
dateMax[2] === date[2] && (dateMax[1] < date[1] || (
|
893
|
+
dateMax[1] === date[1] && dateMax[0] < date[0]
|
894
|
+
))
|
895
|
+
))) return dateMax;
|
896
|
+
|
897
|
+
if (dateMin.length && (dateMin[2] > date[2] || (
|
898
|
+
dateMin[2] === date[2] && (dateMin[1] > date[1] || (
|
899
|
+
dateMin[1] === date[1] && dateMin[0] > date[0]
|
900
|
+
))
|
901
|
+
))) return dateMin;
|
902
|
+
|
903
|
+
return date;
|
904
|
+
},
|
905
|
+
|
906
|
+
getFixedDate: function (day, month, year) {
|
907
|
+
day = Math.min(day, 31);
|
908
|
+
month = Math.min(month, 12);
|
909
|
+
year = parseInt((year || 0), 10);
|
910
|
+
|
911
|
+
if ((month < 7 && month % 2 === 0) || (month > 8 && month % 2 === 1)) {
|
912
|
+
day = Math.min(day, month === 2 ? (this.isLeapYear(year) ? 29 : 28) : 30);
|
913
|
+
}
|
914
|
+
|
915
|
+
return [day, month, year];
|
916
|
+
},
|
917
|
+
|
918
|
+
isLeapYear: function (year) {
|
919
|
+
return ((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0);
|
920
|
+
},
|
921
|
+
|
922
|
+
addLeadingZero: function (number) {
|
923
|
+
return (number < 10 ? '0' : '') + number;
|
924
|
+
},
|
925
|
+
|
926
|
+
addLeadingZeroForYear: function (number, fullYearMode) {
|
927
|
+
if (fullYearMode) {
|
928
|
+
return (number < 10 ? '000' : (number < 100 ? '00' : (number < 1000 ? '0' : ''))) + number;
|
929
|
+
}
|
930
|
+
|
931
|
+
return (number < 10 ? '0' : '') + number;
|
932
|
+
}
|
933
|
+
};
|
934
|
+
|
935
|
+
module.exports = DateFormatter;
|
936
|
+
|
937
|
+
|
938
|
+
/***/ }),
|
939
|
+
/* 3 */
|
940
|
+
/***/ (function(module, exports) {
|
941
|
+
|
942
|
+
'use strict';
|
943
|
+
|
944
|
+
var TimeFormatter = function (timePattern, timeFormat) {
|
945
|
+
var owner = this;
|
946
|
+
|
947
|
+
owner.time = [];
|
948
|
+
owner.blocks = [];
|
949
|
+
owner.timePattern = timePattern;
|
950
|
+
owner.timeFormat = timeFormat;
|
951
|
+
owner.initBlocks();
|
952
|
+
};
|
953
|
+
|
954
|
+
TimeFormatter.prototype = {
|
955
|
+
initBlocks: function () {
|
956
|
+
var owner = this;
|
957
|
+
owner.timePattern.forEach(function () {
|
958
|
+
owner.blocks.push(2);
|
959
|
+
});
|
960
|
+
},
|
961
|
+
|
962
|
+
getISOFormatTime: function () {
|
963
|
+
var owner = this,
|
964
|
+
time = owner.time;
|
965
|
+
|
966
|
+
return time[2] ? (
|
967
|
+
owner.addLeadingZero(time[0]) + ':' + owner.addLeadingZero(time[1]) + ':' + owner.addLeadingZero(time[2])
|
968
|
+
) : '';
|
969
|
+
},
|
970
|
+
|
971
|
+
getBlocks: function () {
|
972
|
+
return this.blocks;
|
973
|
+
},
|
974
|
+
|
975
|
+
getTimeFormatOptions: function () {
|
976
|
+
var owner = this;
|
977
|
+
if (String(owner.timeFormat) === '12') {
|
978
|
+
return {
|
979
|
+
maxHourFirstDigit: 1,
|
980
|
+
maxHours: 12,
|
981
|
+
maxMinutesFirstDigit: 5,
|
982
|
+
maxMinutes: 60
|
983
|
+
};
|
984
|
+
}
|
985
|
+
|
986
|
+
return {
|
987
|
+
maxHourFirstDigit: 2,
|
988
|
+
maxHours: 23,
|
989
|
+
maxMinutesFirstDigit: 5,
|
990
|
+
maxMinutes: 60
|
991
|
+
};
|
992
|
+
},
|
993
|
+
|
994
|
+
getValidatedTime: function (value) {
|
995
|
+
var owner = this, result = '';
|
996
|
+
|
997
|
+
value = value.replace(/[^\d]/g, '');
|
998
|
+
|
999
|
+
var timeFormatOptions = owner.getTimeFormatOptions();
|
1000
|
+
|
1001
|
+
owner.blocks.forEach(function (length, index) {
|
1002
|
+
if (value.length > 0) {
|
1003
|
+
var sub = value.slice(0, length),
|
1004
|
+
sub0 = sub.slice(0, 1),
|
1005
|
+
rest = value.slice(length);
|
1006
|
+
|
1007
|
+
switch (owner.timePattern[index]) {
|
1008
|
+
|
1009
|
+
case 'h':
|
1010
|
+
if (parseInt(sub0, 10) > timeFormatOptions.maxHourFirstDigit) {
|
1011
|
+
sub = '0' + sub0;
|
1012
|
+
} else if (parseInt(sub, 10) > timeFormatOptions.maxHours) {
|
1013
|
+
sub = timeFormatOptions.maxHours + '';
|
1014
|
+
}
|
1015
|
+
|
1016
|
+
break;
|
1017
|
+
|
1018
|
+
case 'm':
|
1019
|
+
case 's':
|
1020
|
+
if (parseInt(sub0, 10) > timeFormatOptions.maxMinutesFirstDigit) {
|
1021
|
+
sub = '0' + sub0;
|
1022
|
+
} else if (parseInt(sub, 10) > timeFormatOptions.maxMinutes) {
|
1023
|
+
sub = timeFormatOptions.maxMinutes + '';
|
1024
|
+
}
|
1025
|
+
break;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
result += sub;
|
1029
|
+
|
1030
|
+
// update remaining string
|
1031
|
+
value = rest;
|
1032
|
+
}
|
1033
|
+
});
|
1034
|
+
|
1035
|
+
return this.getFixedTimeString(result);
|
1036
|
+
},
|
1037
|
+
|
1038
|
+
getFixedTimeString: function (value) {
|
1039
|
+
var owner = this, timePattern = owner.timePattern, time = [],
|
1040
|
+
secondIndex = 0, minuteIndex = 0, hourIndex = 0,
|
1041
|
+
secondStartIndex = 0, minuteStartIndex = 0, hourStartIndex = 0,
|
1042
|
+
second, minute, hour;
|
1043
|
+
|
1044
|
+
if (value.length === 6) {
|
1045
|
+
timePattern.forEach(function (type, index) {
|
1046
|
+
switch (type) {
|
1047
|
+
case 's':
|
1048
|
+
secondIndex = index * 2;
|
1049
|
+
break;
|
1050
|
+
case 'm':
|
1051
|
+
minuteIndex = index * 2;
|
1052
|
+
break;
|
1053
|
+
case 'h':
|
1054
|
+
hourIndex = index * 2;
|
1055
|
+
break;
|
1056
|
+
}
|
1057
|
+
});
|
1058
|
+
|
1059
|
+
hourStartIndex = hourIndex;
|
1060
|
+
minuteStartIndex = minuteIndex;
|
1061
|
+
secondStartIndex = secondIndex;
|
1062
|
+
|
1063
|
+
second = parseInt(value.slice(secondStartIndex, secondStartIndex + 2), 10);
|
1064
|
+
minute = parseInt(value.slice(minuteStartIndex, minuteStartIndex + 2), 10);
|
1065
|
+
hour = parseInt(value.slice(hourStartIndex, hourStartIndex + 2), 10);
|
1066
|
+
|
1067
|
+
time = this.getFixedTime(hour, minute, second);
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
if (value.length === 4 && owner.timePattern.indexOf('s') < 0) {
|
1071
|
+
timePattern.forEach(function (type, index) {
|
1072
|
+
switch (type) {
|
1073
|
+
case 'm':
|
1074
|
+
minuteIndex = index * 2;
|
1075
|
+
break;
|
1076
|
+
case 'h':
|
1077
|
+
hourIndex = index * 2;
|
1078
|
+
break;
|
1079
|
+
}
|
1080
|
+
});
|
1081
|
+
|
1082
|
+
hourStartIndex = hourIndex;
|
1083
|
+
minuteStartIndex = minuteIndex;
|
1084
|
+
|
1085
|
+
second = 0;
|
1086
|
+
minute = parseInt(value.slice(minuteStartIndex, minuteStartIndex + 2), 10);
|
1087
|
+
hour = parseInt(value.slice(hourStartIndex, hourStartIndex + 2), 10);
|
1088
|
+
|
1089
|
+
time = this.getFixedTime(hour, minute, second);
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
owner.time = time;
|
1093
|
+
|
1094
|
+
return time.length === 0 ? value : timePattern.reduce(function (previous, current) {
|
1095
|
+
switch (current) {
|
1096
|
+
case 's':
|
1097
|
+
return previous + owner.addLeadingZero(time[2]);
|
1098
|
+
case 'm':
|
1099
|
+
return previous + owner.addLeadingZero(time[1]);
|
1100
|
+
case 'h':
|
1101
|
+
return previous + owner.addLeadingZero(time[0]);
|
1102
|
+
}
|
1103
|
+
}, '');
|
1104
|
+
},
|
1105
|
+
|
1106
|
+
getFixedTime: function (hour, minute, second) {
|
1107
|
+
second = Math.min(parseInt(second || 0, 10), 60);
|
1108
|
+
minute = Math.min(minute, 60);
|
1109
|
+
hour = Math.min(hour, 60);
|
1110
|
+
|
1111
|
+
return [hour, minute, second];
|
1112
|
+
},
|
1113
|
+
|
1114
|
+
addLeadingZero: function (number) {
|
1115
|
+
return (number < 10 ? '0' : '') + number;
|
1116
|
+
}
|
1117
|
+
};
|
1118
|
+
|
1119
|
+
module.exports = TimeFormatter;
|
1120
|
+
|
1121
|
+
|
1122
|
+
/***/ }),
|
1123
|
+
/* 4 */
|
1124
|
+
/***/ (function(module, exports) {
|
1125
|
+
|
1126
|
+
'use strict';
|
1127
|
+
|
1128
|
+
var PhoneFormatter = function (formatter, delimiter) {
|
1129
|
+
var owner = this;
|
1130
|
+
|
1131
|
+
owner.delimiter = (delimiter || delimiter === '') ? delimiter : ' ';
|
1132
|
+
owner.delimiterRE = delimiter ? new RegExp('\\' + delimiter, 'g') : '';
|
1133
|
+
|
1134
|
+
owner.formatter = formatter;
|
1135
|
+
};
|
1136
|
+
|
1137
|
+
PhoneFormatter.prototype = {
|
1138
|
+
setFormatter: function (formatter) {
|
1139
|
+
this.formatter = formatter;
|
1140
|
+
},
|
1141
|
+
|
1142
|
+
format: function (phoneNumber) {
|
1143
|
+
var owner = this;
|
1144
|
+
|
1145
|
+
owner.formatter.clear();
|
1146
|
+
|
1147
|
+
// only keep number and +
|
1148
|
+
phoneNumber = phoneNumber.replace(/[^\d+]/g, '');
|
1149
|
+
|
1150
|
+
// strip non-leading +
|
1151
|
+
phoneNumber = phoneNumber.replace(/^\+/, 'B').replace(/\+/g, '').replace('B', '+');
|
1152
|
+
|
1153
|
+
// strip delimiter
|
1154
|
+
phoneNumber = phoneNumber.replace(owner.delimiterRE, '');
|
1155
|
+
|
1156
|
+
var result = '', current, validated = false;
|
1157
|
+
|
1158
|
+
for (var i = 0, iMax = phoneNumber.length; i < iMax; i++) {
|
1159
|
+
current = owner.formatter.inputDigit(phoneNumber.charAt(i));
|
1160
|
+
|
1161
|
+
// has ()- or space inside
|
1162
|
+
if (/[\s()-]/g.test(current)) {
|
1163
|
+
result = current;
|
1164
|
+
|
1165
|
+
validated = true;
|
1166
|
+
} else {
|
1167
|
+
if (!validated) {
|
1168
|
+
result = current;
|
1169
|
+
}
|
1170
|
+
// else: over length input
|
1171
|
+
// it turns to invalid number again
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
// strip ()
|
1176
|
+
// e.g. US: 7161234567 returns (716) 123-4567
|
1177
|
+
result = result.replace(/[()]/g, '');
|
1178
|
+
// replace library delimiter with user customized delimiter
|
1179
|
+
result = result.replace(/[\s-]/g, owner.delimiter);
|
1180
|
+
|
1181
|
+
return result;
|
1182
|
+
}
|
1183
|
+
};
|
1184
|
+
|
1185
|
+
module.exports = PhoneFormatter;
|
1186
|
+
|
1187
|
+
|
1188
|
+
/***/ }),
|
1189
|
+
/* 5 */
|
1190
|
+
/***/ (function(module, exports) {
|
1191
|
+
|
1192
|
+
'use strict';
|
1193
|
+
|
1194
|
+
var CreditCardDetector = {
|
1195
|
+
blocks: {
|
1196
|
+
uatp: [4, 5, 6],
|
1197
|
+
amex: [4, 6, 5],
|
1198
|
+
diners: [4, 6, 4],
|
1199
|
+
discover: [4, 4, 4, 4],
|
1200
|
+
mastercard: [4, 4, 4, 4],
|
1201
|
+
dankort: [4, 4, 4, 4],
|
1202
|
+
instapayment: [4, 4, 4, 4],
|
1203
|
+
jcb15: [4, 6, 5],
|
1204
|
+
jcb: [4, 4, 4, 4],
|
1205
|
+
maestro: [4, 4, 4, 4],
|
1206
|
+
visa: [4, 4, 4, 4],
|
1207
|
+
mir: [4, 4, 4, 4],
|
1208
|
+
unionPay: [4, 4, 4, 4],
|
1209
|
+
general: [4, 4, 4, 4]
|
1210
|
+
},
|
1211
|
+
|
1212
|
+
re: {
|
1213
|
+
// starts with 1; 15 digits, not starts with 1800 (jcb card)
|
1214
|
+
uatp: /^(?!1800)1\d{0,14}/,
|
1215
|
+
|
1216
|
+
// starts with 34/37; 15 digits
|
1217
|
+
amex: /^3[47]\d{0,13}/,
|
1218
|
+
|
1219
|
+
// starts with 6011/65/644-649; 16 digits
|
1220
|
+
discover: /^(?:6011|65\d{0,2}|64[4-9]\d?)\d{0,12}/,
|
1221
|
+
|
1222
|
+
// starts with 300-305/309 or 36/38/39; 14 digits
|
1223
|
+
diners: /^3(?:0([0-5]|9)|[689]\d?)\d{0,11}/,
|
1224
|
+
|
1225
|
+
// starts with 51-55/2221–2720; 16 digits
|
1226
|
+
mastercard: /^(5[1-5]\d{0,2}|22[2-9]\d{0,1}|2[3-7]\d{0,2})\d{0,12}/,
|
1227
|
+
|
1228
|
+
// starts with 5019/4175/4571; 16 digits
|
1229
|
+
dankort: /^(5019|4175|4571)\d{0,12}/,
|
1230
|
+
|
1231
|
+
// starts with 637-639; 16 digits
|
1232
|
+
instapayment: /^63[7-9]\d{0,13}/,
|
1233
|
+
|
1234
|
+
// starts with 2131/1800; 15 digits
|
1235
|
+
jcb15: /^(?:2131|1800)\d{0,11}/,
|
1236
|
+
|
1237
|
+
// starts with 2131/1800/35; 16 digits
|
1238
|
+
jcb: /^(?:35\d{0,2})\d{0,12}/,
|
1239
|
+
|
1240
|
+
// starts with 50/56-58/6304/67; 16 digits
|
1241
|
+
maestro: /^(?:5[0678]\d{0,2}|6304|67\d{0,2})\d{0,12}/,
|
1242
|
+
|
1243
|
+
// starts with 22; 16 digits
|
1244
|
+
mir: /^220[0-4]\d{0,12}/,
|
1245
|
+
|
1246
|
+
// starts with 4; 16 digits
|
1247
|
+
visa: /^4\d{0,15}/,
|
1248
|
+
|
1249
|
+
// starts with 62/81; 16 digits
|
1250
|
+
unionPay: /^(62|81)\d{0,14}/
|
1251
|
+
},
|
1252
|
+
|
1253
|
+
getStrictBlocks: function (block) {
|
1254
|
+
var total = block.reduce(function (prev, current) {
|
1255
|
+
return prev + current;
|
1256
|
+
}, 0);
|
1257
|
+
|
1258
|
+
return block.concat(19 - total);
|
1259
|
+
},
|
1260
|
+
|
1261
|
+
getInfo: function (value, strictMode) {
|
1262
|
+
var blocks = CreditCardDetector.blocks,
|
1263
|
+
re = CreditCardDetector.re;
|
1264
|
+
|
1265
|
+
// Some credit card can have up to 19 digits number.
|
1266
|
+
// Set strictMode to true will remove the 16 max-length restrain,
|
1267
|
+
// however, I never found any website validate card number like
|
1268
|
+
// this, hence probably you don't want to enable this option.
|
1269
|
+
strictMode = !!strictMode;
|
1270
|
+
|
1271
|
+
for (var key in re) {
|
1272
|
+
if (re[key].test(value)) {
|
1273
|
+
var matchedBlocks = blocks[key];
|
1274
|
+
return {
|
1275
|
+
type: key,
|
1276
|
+
blocks: strictMode ? this.getStrictBlocks(matchedBlocks) : matchedBlocks
|
1277
|
+
};
|
1278
|
+
}
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
return {
|
1282
|
+
type: 'unknown',
|
1283
|
+
blocks: strictMode ? this.getStrictBlocks(blocks.general) : blocks.general
|
1284
|
+
};
|
1285
|
+
}
|
1286
|
+
};
|
1287
|
+
|
1288
|
+
module.exports = CreditCardDetector;
|
1289
|
+
|
1290
|
+
|
1291
|
+
/***/ }),
|
1292
|
+
/* 6 */
|
1293
|
+
/***/ (function(module, exports) {
|
1294
|
+
|
1295
|
+
'use strict';
|
1296
|
+
|
1297
|
+
var Util = {
|
1298
|
+
noop: function () {
|
1299
|
+
},
|
1300
|
+
|
1301
|
+
strip: function (value, re) {
|
1302
|
+
return value.replace(re, '');
|
1303
|
+
},
|
1304
|
+
|
1305
|
+
getPostDelimiter: function (value, delimiter, delimiters) {
|
1306
|
+
// single delimiter
|
1307
|
+
if (delimiters.length === 0) {
|
1308
|
+
return value.slice(-delimiter.length) === delimiter ? delimiter : '';
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
// multiple delimiters
|
1312
|
+
var matchedDelimiter = '';
|
1313
|
+
delimiters.forEach(function (current) {
|
1314
|
+
if (value.slice(-current.length) === current) {
|
1315
|
+
matchedDelimiter = current;
|
1316
|
+
}
|
1317
|
+
});
|
1318
|
+
|
1319
|
+
return matchedDelimiter;
|
1320
|
+
},
|
1321
|
+
|
1322
|
+
getDelimiterREByDelimiter: function (delimiter) {
|
1323
|
+
return new RegExp(delimiter.replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1'), 'g');
|
1324
|
+
},
|
1325
|
+
|
1326
|
+
getNextCursorPosition: function (prevPos, oldValue, newValue, delimiter, delimiters) {
|
1327
|
+
// If cursor was at the end of value, just place it back.
|
1328
|
+
// Because new value could contain additional chars.
|
1329
|
+
if (oldValue.length === prevPos) {
|
1330
|
+
return newValue.length;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
return prevPos + this.getPositionOffset(prevPos, oldValue, newValue, delimiter ,delimiters);
|
1334
|
+
},
|
1335
|
+
|
1336
|
+
getPositionOffset: function (prevPos, oldValue, newValue, delimiter, delimiters) {
|
1337
|
+
var oldRawValue, newRawValue, lengthOffset;
|
1338
|
+
|
1339
|
+
oldRawValue = this.stripDelimiters(oldValue.slice(0, prevPos), delimiter, delimiters);
|
1340
|
+
newRawValue = this.stripDelimiters(newValue.slice(0, prevPos), delimiter, delimiters);
|
1341
|
+
lengthOffset = oldRawValue.length - newRawValue.length;
|
1342
|
+
|
1343
|
+
return (lengthOffset !== 0) ? (lengthOffset / Math.abs(lengthOffset)) : 0;
|
1344
|
+
},
|
1345
|
+
|
1346
|
+
stripDelimiters: function (value, delimiter, delimiters) {
|
1347
|
+
var owner = this;
|
1348
|
+
|
1349
|
+
// single delimiter
|
1350
|
+
if (delimiters.length === 0) {
|
1351
|
+
var delimiterRE = delimiter ? owner.getDelimiterREByDelimiter(delimiter) : '';
|
1352
|
+
|
1353
|
+
return value.replace(delimiterRE, '');
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
// multiple delimiters
|
1357
|
+
delimiters.forEach(function (current) {
|
1358
|
+
current.split('').forEach(function (letter) {
|
1359
|
+
value = value.replace(owner.getDelimiterREByDelimiter(letter), '');
|
1360
|
+
});
|
1361
|
+
});
|
1362
|
+
|
1363
|
+
return value;
|
1364
|
+
},
|
1365
|
+
|
1366
|
+
headStr: function (str, length) {
|
1367
|
+
return str.slice(0, length);
|
1368
|
+
},
|
1369
|
+
|
1370
|
+
getMaxLength: function (blocks) {
|
1371
|
+
return blocks.reduce(function (previous, current) {
|
1372
|
+
return previous + current;
|
1373
|
+
}, 0);
|
1374
|
+
},
|
1375
|
+
|
1376
|
+
// strip prefix
|
1377
|
+
// Before type | After type | Return value
|
1378
|
+
// PEFIX-... | PEFIX-... | ''
|
1379
|
+
// PREFIX-123 | PEFIX-123 | 123
|
1380
|
+
// PREFIX-123 | PREFIX-23 | 23
|
1381
|
+
// PREFIX-123 | PREFIX-1234 | 1234
|
1382
|
+
getPrefixStrippedValue: function (value, prefix, prefixLength, prevResult, delimiter, delimiters, noImmediatePrefix, tailPrefix, signBeforePrefix) {
|
1383
|
+
// No prefix
|
1384
|
+
if (prefixLength === 0) {
|
1385
|
+
return value;
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
// Value is prefix
|
1389
|
+
if (value === prefix && value !== '') {
|
1390
|
+
return '';
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
if (signBeforePrefix && (value.slice(0, 1) == '-')) {
|
1394
|
+
var prev = (prevResult.slice(0, 1) == '-') ? prevResult.slice(1) : prevResult;
|
1395
|
+
return '-' + this.getPrefixStrippedValue(value.slice(1), prefix, prefixLength, prev, delimiter, delimiters, noImmediatePrefix, tailPrefix, signBeforePrefix);
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
// Pre result prefix string does not match pre-defined prefix
|
1399
|
+
if (prevResult.slice(0, prefixLength) !== prefix && !tailPrefix) {
|
1400
|
+
// Check if the first time user entered something
|
1401
|
+
if (noImmediatePrefix && !prevResult && value) return value;
|
1402
|
+
return '';
|
1403
|
+
} else if (prevResult.slice(-prefixLength) !== prefix && tailPrefix) {
|
1404
|
+
// Check if the first time user entered something
|
1405
|
+
if (noImmediatePrefix && !prevResult && value) return value;
|
1406
|
+
return '';
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
var prevValue = this.stripDelimiters(prevResult, delimiter, delimiters);
|
1410
|
+
|
1411
|
+
// New value has issue, someone typed in between prefix letters
|
1412
|
+
// Revert to pre value
|
1413
|
+
if (value.slice(0, prefixLength) !== prefix && !tailPrefix) {
|
1414
|
+
return prevValue.slice(prefixLength);
|
1415
|
+
} else if (value.slice(-prefixLength) !== prefix && tailPrefix) {
|
1416
|
+
return prevValue.slice(0, -prefixLength - 1);
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
// No issue, strip prefix for new value
|
1420
|
+
return tailPrefix ? value.slice(0, -prefixLength) : value.slice(prefixLength);
|
1421
|
+
},
|
1422
|
+
|
1423
|
+
getFirstDiffIndex: function (prev, current) {
|
1424
|
+
var index = 0;
|
1425
|
+
|
1426
|
+
while (prev.charAt(index) === current.charAt(index)) {
|
1427
|
+
if (prev.charAt(index++) === '') {
|
1428
|
+
return -1;
|
1429
|
+
}
|
1430
|
+
}
|
1431
|
+
|
1432
|
+
return index;
|
1433
|
+
},
|
1434
|
+
|
1435
|
+
getFormattedValue: function (value, blocks, blocksLength, delimiter, delimiters, delimiterLazyShow) {
|
1436
|
+
var result = '',
|
1437
|
+
multipleDelimiters = delimiters.length > 0,
|
1438
|
+
currentDelimiter = '';
|
1439
|
+
|
1440
|
+
// no options, normal input
|
1441
|
+
if (blocksLength === 0) {
|
1442
|
+
return value;
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
blocks.forEach(function (length, index) {
|
1446
|
+
if (value.length > 0) {
|
1447
|
+
var sub = value.slice(0, length),
|
1448
|
+
rest = value.slice(length);
|
1449
|
+
|
1450
|
+
if (multipleDelimiters) {
|
1451
|
+
currentDelimiter = delimiters[delimiterLazyShow ? (index - 1) : index] || currentDelimiter;
|
1452
|
+
} else {
|
1453
|
+
currentDelimiter = delimiter;
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
if (delimiterLazyShow) {
|
1457
|
+
if (index > 0) {
|
1458
|
+
result += currentDelimiter;
|
1459
|
+
}
|
1460
|
+
|
1461
|
+
result += sub;
|
1462
|
+
} else {
|
1463
|
+
result += sub;
|
1464
|
+
|
1465
|
+
if (sub.length === length && index < blocksLength - 1) {
|
1466
|
+
result += currentDelimiter;
|
1467
|
+
}
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
// update remaining string
|
1471
|
+
value = rest;
|
1472
|
+
}
|
1473
|
+
});
|
1474
|
+
|
1475
|
+
return result;
|
1476
|
+
},
|
1477
|
+
|
1478
|
+
// move cursor to the end
|
1479
|
+
// the first time user focuses on an input with prefix
|
1480
|
+
fixPrefixCursor: function (el, prefix, delimiter, delimiters) {
|
1481
|
+
if (!el) {
|
1482
|
+
return;
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
var val = el.value,
|
1486
|
+
appendix = delimiter || (delimiters[0] || ' ');
|
1487
|
+
|
1488
|
+
if (!el.setSelectionRange || !prefix || (prefix.length + appendix.length) <= val.length) {
|
1489
|
+
return;
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
var len = val.length * 2;
|
1493
|
+
|
1494
|
+
// set timeout to avoid blink
|
1495
|
+
setTimeout(function () {
|
1496
|
+
el.setSelectionRange(len, len);
|
1497
|
+
}, 1);
|
1498
|
+
},
|
1499
|
+
|
1500
|
+
// Check if input field is fully selected
|
1501
|
+
checkFullSelection: function(value) {
|
1502
|
+
try {
|
1503
|
+
var selection = window.getSelection() || document.getSelection() || {};
|
1504
|
+
return selection.toString().length === value.length;
|
1505
|
+
} catch (ex) {
|
1506
|
+
// Ignore
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
return false;
|
1510
|
+
},
|
1511
|
+
|
1512
|
+
setSelection: function (element, position, doc) {
|
1513
|
+
if (element !== this.getActiveElement(doc)) {
|
1514
|
+
return;
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
// cursor is already in the end
|
1518
|
+
if (element && element.value.length <= position) {
|
1519
|
+
return;
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
if (element.createTextRange) {
|
1523
|
+
var range = element.createTextRange();
|
1524
|
+
|
1525
|
+
range.move('character', position);
|
1526
|
+
range.select();
|
1527
|
+
} else {
|
1528
|
+
try {
|
1529
|
+
element.setSelectionRange(position, position);
|
1530
|
+
} catch (e) {
|
1531
|
+
// eslint-disable-next-line
|
1532
|
+
console.warn('The input element type does not support selection');
|
1533
|
+
}
|
1534
|
+
}
|
1535
|
+
},
|
1536
|
+
|
1537
|
+
getActiveElement: function(parent) {
|
1538
|
+
var activeElement = parent.activeElement;
|
1539
|
+
if (activeElement && activeElement.shadowRoot) {
|
1540
|
+
return this.getActiveElement(activeElement.shadowRoot);
|
1541
|
+
}
|
1542
|
+
return activeElement;
|
1543
|
+
},
|
1544
|
+
|
1545
|
+
isAndroid: function () {
|
1546
|
+
return navigator && /android/i.test(navigator.userAgent);
|
1547
|
+
},
|
1548
|
+
|
1549
|
+
// On Android chrome, the keyup and keydown events
|
1550
|
+
// always return key code 229 as a composition that
|
1551
|
+
// buffers the user’s keystrokes
|
1552
|
+
// see https://github.com/nosir/cleave.js/issues/147
|
1553
|
+
isAndroidBackspaceKeydown: function (lastInputValue, currentInputValue) {
|
1554
|
+
if (!this.isAndroid() || !lastInputValue || !currentInputValue) {
|
1555
|
+
return false;
|
1556
|
+
}
|
1557
|
+
|
1558
|
+
return currentInputValue === lastInputValue.slice(0, -1);
|
1559
|
+
}
|
1560
|
+
};
|
1561
|
+
|
1562
|
+
module.exports = Util;
|
1563
|
+
|
1564
|
+
|
1565
|
+
/***/ }),
|
1566
|
+
/* 7 */
|
1567
|
+
/***/ (function(module, exports) {
|
1568
|
+
|
1569
|
+
/* WEBPACK VAR INJECTION */(function(global) {'use strict';
|
1570
|
+
|
1571
|
+
/**
|
1572
|
+
* Props Assignment
|
1573
|
+
*
|
1574
|
+
* Separate this, so react module can share the usage
|
1575
|
+
*/
|
1576
|
+
var DefaultProperties = {
|
1577
|
+
// Maybe change to object-assign
|
1578
|
+
// for now just keep it as simple
|
1579
|
+
assign: function (target, opts) {
|
1580
|
+
target = target || {};
|
1581
|
+
opts = opts || {};
|
1582
|
+
|
1583
|
+
// credit card
|
1584
|
+
target.creditCard = !!opts.creditCard;
|
1585
|
+
target.creditCardStrictMode = !!opts.creditCardStrictMode;
|
1586
|
+
target.creditCardType = '';
|
1587
|
+
target.onCreditCardTypeChanged = opts.onCreditCardTypeChanged || (function () {});
|
1588
|
+
|
1589
|
+
// phone
|
1590
|
+
target.phone = !!opts.phone;
|
1591
|
+
target.phoneRegionCode = opts.phoneRegionCode || 'AU';
|
1592
|
+
target.phoneFormatter = {};
|
1593
|
+
|
1594
|
+
// time
|
1595
|
+
target.time = !!opts.time;
|
1596
|
+
target.timePattern = opts.timePattern || ['h', 'm', 's'];
|
1597
|
+
target.timeFormat = opts.timeFormat || '24';
|
1598
|
+
target.timeFormatter = {};
|
1599
|
+
|
1600
|
+
// date
|
1601
|
+
target.date = !!opts.date;
|
1602
|
+
target.datePattern = opts.datePattern || ['d', 'm', 'Y'];
|
1603
|
+
target.dateMin = opts.dateMin || '';
|
1604
|
+
target.dateMax = opts.dateMax || '';
|
1605
|
+
target.dateFormatter = {};
|
1606
|
+
|
1607
|
+
// numeral
|
1608
|
+
target.numeral = !!opts.numeral;
|
1609
|
+
target.numeralIntegerScale = opts.numeralIntegerScale > 0 ? opts.numeralIntegerScale : 0;
|
1610
|
+
target.numeralDecimalScale = opts.numeralDecimalScale >= 0 ? opts.numeralDecimalScale : 2;
|
1611
|
+
target.numeralDecimalMark = opts.numeralDecimalMark || '.';
|
1612
|
+
target.numeralThousandsGroupStyle = opts.numeralThousandsGroupStyle || 'thousand';
|
1613
|
+
target.numeralPositiveOnly = !!opts.numeralPositiveOnly;
|
1614
|
+
target.stripLeadingZeroes = opts.stripLeadingZeroes !== false;
|
1615
|
+
target.signBeforePrefix = !!opts.signBeforePrefix;
|
1616
|
+
target.tailPrefix = !!opts.tailPrefix;
|
1617
|
+
|
1618
|
+
// others
|
1619
|
+
target.swapHiddenInput = !!opts.swapHiddenInput;
|
1620
|
+
|
1621
|
+
target.numericOnly = target.creditCard || target.date || !!opts.numericOnly;
|
1622
|
+
|
1623
|
+
target.uppercase = !!opts.uppercase;
|
1624
|
+
target.lowercase = !!opts.lowercase;
|
1625
|
+
|
1626
|
+
target.prefix = (target.creditCard || target.date) ? '' : (opts.prefix || '');
|
1627
|
+
target.noImmediatePrefix = !!opts.noImmediatePrefix;
|
1628
|
+
target.prefixLength = target.prefix.length;
|
1629
|
+
target.rawValueTrimPrefix = !!opts.rawValueTrimPrefix;
|
1630
|
+
target.copyDelimiter = !!opts.copyDelimiter;
|
1631
|
+
|
1632
|
+
target.initValue = (opts.initValue !== undefined && opts.initValue !== null) ? opts.initValue.toString() : '';
|
1633
|
+
|
1634
|
+
target.delimiter =
|
1635
|
+
(opts.delimiter || opts.delimiter === '') ? opts.delimiter :
|
1636
|
+
(opts.date ? '/' :
|
1637
|
+
(opts.time ? ':' :
|
1638
|
+
(opts.numeral ? ',' :
|
1639
|
+
(opts.phone ? ' ' :
|
1640
|
+
' '))));
|
1641
|
+
target.delimiterLength = target.delimiter.length;
|
1642
|
+
target.delimiterLazyShow = !!opts.delimiterLazyShow;
|
1643
|
+
target.delimiters = opts.delimiters || [];
|
1644
|
+
|
1645
|
+
target.blocks = opts.blocks || [];
|
1646
|
+
target.blocksLength = target.blocks.length;
|
1647
|
+
|
1648
|
+
target.root = (typeof global === 'object' && global) ? global : window;
|
1649
|
+
target.document = opts.document || target.root.document;
|
1650
|
+
|
1651
|
+
target.maxLength = 0;
|
1652
|
+
|
1653
|
+
target.backspace = false;
|
1654
|
+
target.result = '';
|
1655
|
+
|
1656
|
+
target.onValueChanged = opts.onValueChanged || (function () {});
|
1657
|
+
|
1658
|
+
return target;
|
1659
|
+
}
|
1660
|
+
};
|
1661
|
+
|
1662
|
+
module.exports = DefaultProperties;
|
1663
|
+
|
1664
|
+
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
|
1665
|
+
|
1666
|
+
/***/ })
|
1667
|
+
/******/ ])
|
1668
|
+
});
|
1669
|
+
;
|