Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bye bye spree] Bring base_helper and log_entry from spree core #5924

Merged
merged 5 commits into from
Sep 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
# frozen_string_literal: true

module Spree
module BaseHelper
# human readable list of variant options
# Override: Do not show out of stock text
def variant_options(variant, _options = {})
variant.options_text
end

# Overriden to eager-load :states
def available_countries
checkout_zone = Zone.find_by(name: Spree::Config[:checkout_zone])

Expand All @@ -21,5 +16,10 @@ def available_countries
country
end.sort { |a, b| a.name <=> b.name }
end

def pretty_time(time)
[I18n.l(time.to_date, format: :long),
time.strftime("%l:%M %p")].join(" ")
end
end
end
18 changes: 18 additions & 0 deletions app/models/spree/log_entry.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# frozen_string_literal: true

module Spree
class LogEntry < ActiveRecord::Base
belongs_to :source, polymorphic: true

# Fix for Spree #1767
# If a payment fails, we want to make sure we keep the record of it failing
after_rollback :save_anyway
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking out loud: It would've been much easier not to include this in the same DB transaction so it wouldn't have been rolled back.


def save_anyway
log = Spree::LogEntry.new
log.source = source
log.details = details
log.save!
end
end
end
58 changes: 58 additions & 0 deletions spec/helpers/spree/base_helper_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# frozen_string_literal: true

require 'spec_helper'

describe Spree::BaseHelper do
include Spree::BaseHelper

context "available_countries" do
let(:country) { create(:country) }

before do
3.times { create(:country) }
end

context "with no checkout zone defined" do
before do
Spree::Config[:checkout_zone] = nil
end

it "return complete list of countries" do
expect(available_countries.count).to eq Spree::Country.count
end
end

context "with a checkout zone defined" do
context "checkout zone is of type country" do
before do
@country_zone = create(:zone, name: "CountryZone")
@country_zone.members.create(zoneable: country)
Spree::Config[:checkout_zone] = @country_zone.name
end

it "return only the countries defined by the checkout zone" do
expect(available_countries).to eq [country]
end
end

context "checkout zone is of type state" do
before do
state_zone = create(:zone, name: "StateZone")
state = create(:state, country: country)
state_zone.members.create(zoneable: state)
Spree::Config[:checkout_zone] = state_zone.name
end

it "return complete list of countries" do
expect(available_countries.count).to eq Spree::Country.count
end
end
end
end

context "pretty_time" do
it "prints in a format" do
expect(pretty_time(DateTime.new(2012, 5, 6, 13, 33))).to eq "May 06, 2012 1:33 PM"
end
end
end