Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/obredux.rb
2017-07-28 03:44:24 +00:00

48 lines
760 B
Ruby

# frozen_string_literal: true
module Obredux
UNDEFINED = Object.new.freeze
class Action; end
class Init < Action; end
class Store
attr_reader :reducer_klass, :state
def initialize(reducer_klass)
@reducer_klass = reducer_klass
@state = UNDEFINED
dispatch Init.new
end
def dispatch(action)
@state = reducer_klass.new(state, action).call
end
end
class Reducer
def initialize(state, action)
@state = state
@action = action
end
def call
@state = initial_state if state.equal? UNDEFINED
@state ||= {}.freeze
reduce
end
private
attr_reader :state, :action
def initial_state
{}.freeze
end
def reduce
state
end
end
end