require 'page-object/javascript/jquery'
require 'page-object/javascript/prototype'
require 'page-object/javascript/yui'


module PageObject
  #
  # Provide hooks into different common Javascript Frameworks.
  # Currently this module only supports jQuery and Prototype but it
  # has the ability for you to plug your own framework into it and
  # therefore have it work with this gem.  You do this by calling the
  # #add_framework method.  The module you provide must implement the
  # necessary methods.  Please look at the jQuery or Prototype
  # implementations to determine the necessary methods
  #
  module JavascriptFrameworkFacade

    class << self
      #
      # Set the framework to use.
      #
      # @param[Symbol] the framework to use.  :jquery and :prototype
      # are supported
      #
      def framework=(framework)
        initialize_script_builder unless @builder
        raise unknown_framework(framework) unless @builder[framework]
        @framework = framework
      end

      #
      # Get the framework that will be used
      #
      def framework
        @framework
      end

      #
      # Add a framework and make it available to the system.
      #
      def add_framework(key, value)
        raise invalid_framework unless value.respond_to? :pending_requests
        initialize_script_builder unless @builder
        @builder[key] = value
      end

      #
      # get the javascript to determine number of pending requests
      #
      def pending_requests
        script_builder.pending_requests
      end

      def script_builder
        initialize_script_builder unless @builder
        @builder[@framework]
      end

      private

      def initialize_script_builder
        @builder = {
          :jquery => ::PageObject::Javascript::JQuery,
          :prototype => ::PageObject::Javascript::Prototype,
          :yui => ::PageObject::Javascript::YUI,
        }
      end

      def unknown_framework(framework)
        "You specified the Javascript framework #{framework} and it is unknow to the system"
      end

      def invalid_framework
        "The Javascript framework you provided does not implement the necessary methods"
      end
    end
  end
end