├── test ├── dummy │ ├── log │ │ └── .keep │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── public │ │ ├── favicon.ico │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── 500.html │ │ ├── 422.html │ │ └── 404.html │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── models │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_record.rb │ │ ├── controllers │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_controller.rb │ │ ├── views │ │ │ └── layouts │ │ │ │ ├── mailer.text.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── application.html.erb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ └── javascript │ │ │ └── packs │ │ │ └── application.js │ ├── .ruby-version │ ├── bin │ │ ├── rake │ │ ├── rails │ │ └── setup │ ├── config │ │ ├── routes.rb │ │ ├── spring.rb │ │ ├── environment.rb │ │ ├── initializers │ │ │ ├── mime_types.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── application_controller_renderer.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── assets.rb │ │ │ ├── wrap_parameters.rb │ │ │ ├── inflections.rb │ │ │ └── content_security_policy.rb │ │ ├── cable.yml │ │ ├── boot.rb │ │ ├── application.rb │ │ ├── database.yml │ │ ├── locales │ │ │ └── en.yml │ │ ├── storage.yml │ │ ├── puma.rb │ │ └── environments │ │ │ ├── test.rb │ │ │ ├── development.rb │ │ │ └── production.rb │ ├── config.ru │ └── Rakefile ├── integration │ └── navigation_test.rb ├── polaris │ └── html_test.rb └── test_helper.rb ├── app ├── assets │ ├── images │ │ └── polaris │ │ │ └── html │ │ │ └── .keep │ ├── config │ │ └── polaris_html_manifest.js │ └── stylesheets │ │ └── polaris │ │ └── html │ │ └── application.css ├── components │ ├── titles │ │ ├── heading.html.erb │ │ └── heading.rb │ ├── form │ │ ├── submit.html.erb │ │ ├── tag.rb │ │ ├── submit.rb │ │ ├── password.rb │ │ ├── text_area.rb │ │ ├── select.rb │ │ ├── number.rb │ │ ├── text.rb │ │ ├── checkbox.rb │ │ ├── checkbox_list.rb │ │ ├── tag.html.erb │ │ ├── password.html.erb │ │ ├── number.html.erb │ │ ├── text.html.erb │ │ ├── text_area.html.erb │ │ ├── select.html.erb │ │ ├── checkbox_list.html.erb │ │ └── checkbox.html.erb │ ├── polaris_navigation │ │ ├── footer_help.rb │ │ └── footer_help.html.erb │ ├── polaris_layouts │ │ ├── annotated_section.rb │ │ └── annotated_section.html.erb │ └── actions │ │ ├── button.html.erb │ │ └── button.rb ├── helpers │ └── polaris │ │ └── html │ │ └── application_helper.rb ├── jobs │ └── polaris │ │ └── html │ │ └── application_job.rb ├── models │ └── polaris │ │ └── html │ │ └── application_record.rb ├── controllers │ └── polaris │ │ └── html │ │ └── application_controller.rb ├── mailers │ └── polaris │ │ └── html │ │ └── application_mailer.rb └── views │ └── layouts │ └── polaris │ └── html │ └── application.html.erb ├── config └── routes.rb ├── lib ├── polaris │ ├── html │ │ ├── version.rb │ │ └── engine.rb │ └── html.rb └── tasks │ └── polaris │ └── html_tasks.rake ├── .gitignore ├── bin └── rails ├── Gemfile ├── Rakefile ├── MIT-LICENSE ├── polaris-html.gemspec ├── README.md └── Gemfile.lock /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/polaris/html/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.6.3 2 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Polaris::Html::Engine.routes.draw do 2 | end 3 | -------------------------------------------------------------------------------- /app/components/titles/heading.html.erb: -------------------------------------------------------------------------------- 1 |

<%= @text %>

-------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/assets/config/polaris_html_manifest.js: -------------------------------------------------------------------------------- 1 | //= link_directory ../stylesheets/polaris/html .css 2 | -------------------------------------------------------------------------------- /lib/polaris/html/version.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | VERSION = '0.1.9' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | mount Polaris::Html::Engine => "/polaris-html" 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/polaris/html_tasks.rake: -------------------------------------------------------------------------------- 1 | # desc "Explaining what the task does" 2 | # task :polaris_html do 3 | # # Task goes here 4 | # end 5 | -------------------------------------------------------------------------------- /app/helpers/polaris/html/application_helper.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | module ApplicationHelper 4 | end 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- 1 | Spring.watch( 2 | ".ruby-version", 3 | ".rbenv-vars", 4 | "tmp/restart.txt", 5 | "tmp/caching-dev.txt" 6 | ) 7 | -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../stylesheets .css 3 | //= link polaris_html_manifest.js 4 | -------------------------------------------------------------------------------- /app/jobs/polaris/html/application_job.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | class ApplicationJob < ActiveJob::Base 4 | end 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/components/form/submit.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= form.submit text, class: 'Polaris-Button Polaris-Button--primary' %> 3 |
-------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /lib/polaris/html/engine.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | class Engine < ::Rails::Engine 4 | isolate_namespace Polaris::Html 5 | end 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_PATH = File.expand_path('../config/application', __dir__) 3 | require_relative '../config/boot' 4 | require 'rails/commands' 5 | -------------------------------------------------------------------------------- /lib/polaris/html.rb: -------------------------------------------------------------------------------- 1 | require "polaris/html/engine" 2 | require "view_component/engine" 3 | 4 | module Polaris 5 | module Html 6 | # Your code goes here... 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative 'application' 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /app/components/polaris_navigation/footer_help.rb: -------------------------------------------------------------------------------- 1 | module PolarisNavigation 2 | class FooterHelp < ViewComponent::Base 3 | 4 | def initialize() 5 | end 6 | 7 | end 8 | end -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class NavigationTest < ActionDispatch::IntegrationTest 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /test/polaris/html_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class Polaris::Html::Test < ActiveSupport::TestCase 4 | test "truth" do 5 | assert_kind_of Module, Polaris::Html 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /app/models/polaris/html/application_record.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | class ApplicationRecord < ActiveRecord::Base 4 | self.abstract_class = true 5 | end 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle/ 2 | log/*.log 3 | pkg/ 4 | test/dummy/db/*.sqlite3 5 | test/dummy/db/*.sqlite3-journal 6 | test/dummy/db/*.sqlite3-* 7 | test/dummy/log/*.log 8 | test/dummy/storage/ 9 | test/dummy/tmp/ 10 | -------------------------------------------------------------------------------- /app/components/form/tag.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Tag < ViewComponent::Base 3 | attr_reader :path, :label 4 | def initialize( path: , label: ) 5 | @path, @label = path, label 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /app/components/form/submit.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Submit < ViewComponent::Base 3 | attr_reader :form, :text 4 | def initialize(form: , text: ) 5 | @form, @text = form, text 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /app/controllers/polaris/html/application_controller.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | class ApplicationController < ActionController::Base 4 | protect_from_forgery with: :exception 5 | end 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /app/components/titles/heading.rb: -------------------------------------------------------------------------------- 1 | module Titles 2 | 3 | class Heading < ViewComponent::Base 4 | 5 | attr_reader :text 6 | 7 | def initialize(text:) 8 | @text = text 9 | end 10 | 11 | end 12 | end -------------------------------------------------------------------------------- /app/mailers/polaris/html/application_mailer.rb: -------------------------------------------------------------------------------- 1 | module Polaris 2 | module Html 3 | class ApplicationMailer < ActionMailer::Base 4 | default from: 'from@example.com' 5 | layout 'mailer' 6 | end 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /app/components/polaris_layouts/annotated_section.rb: -------------------------------------------------------------------------------- 1 | module PolarisLayouts 2 | class AnnotatedSection < ViewComponent::Base 3 | 4 | def initialize(title: , description: ) 5 | @title, @description = title, description 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: async 3 | 4 | test: 5 | adapter: test 6 | 7 | production: 8 | adapter: redis 9 | url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> 10 | channel_prefix: dummy_production 11 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative 'config/application' 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- 1 | # Set up gems listed in the Gemfile. 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__) 3 | 4 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) 5 | $LOAD_PATH.unshift File.expand_path('../../../lib', __dir__) 6 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # ActiveSupport::Reloader.to_prepare do 4 | # ApplicationController.renderer.defaults.merge!( 5 | # http_host: 'example.org', 6 | # https: false 7 | # ) 8 | # end 9 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Specify a serializer for the signed and encrypted cookie jars. 4 | # Valid options are :json, :marshal, and :hybrid. 5 | Rails.application.config.action_dispatch.cookies_serializer = :json 6 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | # Automatically retry jobs that encountered a deadlock 3 | # retry_on ActiveRecord::Deadlocked 4 | 5 | # Most jobs are safe to ignore if the underlying records are no longer available 6 | # discard_on ActiveJob::DeserializationError 7 | end 8 | -------------------------------------------------------------------------------- /app/components/form/password.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Password < ViewComponent::Base 3 | attr_reader :form, :field, :placeholder, :help_text 4 | def initialize(form: , field: , placeholder: nil, help_text: nil) 5 | @form, @field, @placeholder, @help_text = form, field, placeholder, help_text 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /app/components/form/text_area.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class TextArea < ViewComponent::Base 3 | attr_reader :form, :field, :placeholder, :help_text 4 | def initialize(form: , field: , placeholder: nil, help_text: nil) 5 | @form, @field, @placeholder, @help_text = form, field, placeholder, help_text 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dummy 5 | <%= csrf_meta_tags %> 6 | <%= csp_meta_tag %> 7 | 8 | <%= stylesheet_link_tag 'application', media: 'all' %> 9 | 10 | 11 | 12 | <%= yield %> 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/views/layouts/polaris/html/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Polaris html 5 | <%= csrf_meta_tags %> 6 | <%= csp_meta_tag %> 7 | 8 | <%= stylesheet_link_tag "polaris/html/application", media: "all" %> 9 | 10 | 11 | 12 | <%= yield %> 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/components/form/select.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Select < ViewComponent::Base 3 | attr_reader :form, :field, :choices, :label_hidden, :class_extra , :inline 4 | def initialize(form: , field: , choices:, label_hidden: false , class_extra: '', inline: false) 5 | @form, @field, @choices, @label_hidden, @class_extra, @inline = form, field, choices, label_hidden, class_extra, inline 6 | end 7 | end 8 | end -------------------------------------------------------------------------------- /app/components/form/number.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Number < ViewComponent::Base 3 | attr_reader :form, :field, :help_text, :label_hidden, :class_extra_form_item 4 | def initialize(form: , field: , help_text: nil, label_hidden: false, class_extra_form_item: '') 5 | @form, @field, @help_text, @label_hidden, @class_extra_form_item = form, field, help_text, label_hidden, class_extra_form_item 6 | end 7 | end 8 | end -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /app/components/form/text.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | class Text < ViewComponent::Base 3 | attr_reader :form, :field, :placeholder, :help_text, :label_hidden, :class_extra_form_item 4 | def initialize(form: , field: , placeholder: nil, help_text: nil, label_hidden: false, class_extra_form_item: '') 5 | @form, @field, @placeholder, @help_text, @label_hidden, @class_extra_form_item = form, field, placeholder, help_text, label_hidden, class_extra_form_item 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /app/components/form/checkbox.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | 3 | class Checkbox < ViewComponent::Base 4 | 5 | attr_reader :form, :field, :label 6 | 7 | #disabled false 8 | def initialize(form: , field: , label:) 9 | @form, @field, @label = form, field, label 10 | 11 | end 12 | 13 | #render(Form::Checkbox.new(form: form, field: :run_daily, label: 'Run daily')) %> 14 | #render(Form::Checkbox.new(form: form, field: :auto_change, label: 'Auto apply changes')) %> 15 | end 16 | end -------------------------------------------------------------------------------- /app/components/form/checkbox_list.rb: -------------------------------------------------------------------------------- 1 | module Form 2 | 3 | class CheckboxList < ViewComponent::Base 4 | 5 | attr_reader :form, :field, :label 6 | 7 | #disabled false 8 | def initialize(form: , field: , label:) 9 | @form, @field, @label = form, field, label 10 | 11 | end 12 | 13 | #render(Form::Checkbox.new(form: form, field: :run_daily, label: 'Run daily')) %> 14 | #render(Form::Checkbox.new(form: form, field: :auto_change, label: 'Auto apply changes')) %> 15 | end 16 | end -------------------------------------------------------------------------------- /app/components/actions/button.html.erb: -------------------------------------------------------------------------------- 1 | <% if url %> 2 | 4 | data-confirm="Are you sure?" rel="nofollow" data-method="delete" 5 | <%end%> 6 | <%else%> 7 | <%end%> -------------------------------------------------------------------------------- /app/components/polaris_layouts/annotated_section.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

<%= @title %>

6 |

<%= @description %>

7 |
8 |
9 |
10 |
11 | 12 | <%= content %> 13 | 14 |
15 |
16 |
17 |
-------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | Rails.application.config.assets.version = '1.0' 5 | 6 | # Add additional assets to the asset load path. 7 | # Rails.application.config.assets.paths << Emoji.images_path 8 | 9 | # Precompile additional assets. 10 | # application.js, application.css, and all non-JS/CSS in the app/assets 11 | # folder are already added. 12 | # Rails.application.config.assets.precompile += %w( admin.js admin.css ) 13 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This command will automatically be run when you run "rails" with Rails gems 3 | # installed from the root of your application. 4 | 5 | ENGINE_ROOT = File.expand_path('..', __dir__) 6 | ENGINE_PATH = File.expand_path('../lib/polaris/html/engine', __dir__) 7 | APP_PATH = File.expand_path('../test/dummy/config/application', __dir__) 8 | 9 | # Set up gems listed in the Gemfile. 10 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 11 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) 12 | 13 | require 'rails/all' 14 | require 'rails/engine/commands' 15 | -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative 'boot' 2 | 3 | require 'rails/all' 4 | 5 | Bundler.require(*Rails.groups) 6 | require "polaris/html" 7 | 8 | module Dummy 9 | class Application < Rails::Application 10 | # Initialize configuration defaults for originally generated Rails version. 11 | config.load_defaults 6.0 12 | 13 | # Settings in config/environments/* take precedence over those specified here. 14 | # Application configuration can go into files in config/initializers 15 | # -- all .rb files in that directory are automatically loaded after loading 16 | # the framework and any gems in your application. 17 | end 18 | end 19 | 20 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 | 4 | # Declare your gem's dependencies in polaris-html.gemspec. 5 | # Bundler will treat runtime dependencies like base dependencies, and 6 | # development dependencies will be added by default to the :development group. 7 | gemspec 8 | 9 | # Declare any dependencies that are still in development here instead of in 10 | # your gemspec. These might include edge Rails or gems from your path or 11 | # Git. Remember to move these dependencies to your gemspec before releasing 12 | # your gem to rubygems.org. 13 | 14 | # To use a debugger 15 | # gem 'byebug', group: [:development, :test] 16 | -------------------------------------------------------------------------------- /app/components/form/tag.html.erb: -------------------------------------------------------------------------------- 1 | 2 | <%= label %> 3 | <%= link_to path, {method: :delete, remote: true}, class: "Polaris-Tag__Button" do %> 4 | 5 | 8 | 9 | <% end %> 10 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- 1 | # SQLite. Versions 3.8.0 and up are supported. 2 | # gem install sqlite3 3 | # 4 | # Ensure the SQLite 3 gem is defined in your Gemfile 5 | # gem 'sqlite3' 6 | # 7 | default: &default 8 | adapter: sqlite3 9 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 10 | timeout: 5000 11 | 12 | development: 13 | <<: *default 14 | database: db/development.sqlite3 15 | 16 | # Warning: The database defined as "test" will be erased and 17 | # re-generated from your development database when you run "rake". 18 | # Do not set this db to the same as development or production. 19 | test: 20 | <<: *default 21 | database: db/test.sqlite3 22 | 23 | production: 24 | <<: *default 25 | database: db/production.sqlite3 26 | -------------------------------------------------------------------------------- /app/components/form/password.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
<%= form.label field ,class: 'Polaris-Label__Text' %>
5 |
6 |
7 |
8 |
<%= form.text_field field , {class: 'Polaris-TextField__Input', type: 'password', placeholder: placeholder} %> 9 |
10 |
11 |
12 |
13 | <% if defined?(help_text) %> 14 |
<%= help_text %>
15 | <% end %> 16 |
17 |
-------------------------------------------------------------------------------- /test/dummy/app/javascript/packs/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. JavaScript code in this file should be added after the last require_* statement. 9 | // 10 | // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require rails-ujs 14 | //= require activestorage 15 | //= require_tree . 16 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | begin 2 | require 'bundler/setup' 3 | rescue LoadError 4 | puts 'You must `gem install bundler` and `bundle install` to run rake tasks' 5 | end 6 | 7 | require 'rdoc/task' 8 | 9 | RDoc::Task.new(:rdoc) do |rdoc| 10 | rdoc.rdoc_dir = 'rdoc' 11 | rdoc.title = 'Polaris::Html' 12 | rdoc.options << '--line-numbers' 13 | rdoc.rdoc_files.include('README.md') 14 | rdoc.rdoc_files.include('lib/**/*.rb') 15 | end 16 | 17 | APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__) 18 | load 'rails/tasks/engine.rake' 19 | 20 | load 'rails/tasks/statistics.rake' 21 | 22 | require 'bundler/gem_tasks' 23 | 24 | require 'rake/testtask' 25 | 26 | Rake::TestTask.new(:test) do |t| 27 | t.libs << 'test' 28 | t.pattern = 'test/**/*_test.rb' 29 | t.verbose = false 30 | end 31 | 32 | task default: :test 33 | -------------------------------------------------------------------------------- /app/assets/stylesheets/polaris/html/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS 10 | * files in this directory. Styles in this file should be added after the last require_* statement. 11 | * It is generally better to create a new file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS 10 | * files in this directory. Styles in this file should be added after the last require_* statement. 11 | * It is generally better to create a new file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /app/components/form/number.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
<%= form.label field ,class: 'Polaris-Label__Text' %>
5 |
6 |
7 |
8 |
<%= form.number_field field , {class: 'Polaris-TextField__Input'} %> 9 |
10 |
11 |
12 |
13 | <% if defined?(help_text) %> 14 |
<%= help_text %>
15 | <% end %> 16 |
17 |
-------------------------------------------------------------------------------- /app/components/form/text.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
<%= form.label field ,class: 'Polaris-Label__Text' %>
5 |
6 |
7 |
8 |
<%= form.text_field field , {class: 'Polaris-TextField__Input', placeholder: placeholder} %> 9 |
10 |
11 |
12 |
13 | <% if defined?(help_text) %> 14 |
<%= help_text %>
15 | <% end %> 16 |
17 |
-------------------------------------------------------------------------------- /app/components/polaris_navigation/footer_help.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
7 |
<%= content %>
8 |
9 |
-------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | # Configure Rails Environment 2 | ENV["RAILS_ENV"] = "test" 3 | 4 | require_relative "../test/dummy/config/environment" 5 | ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)] 6 | ActiveRecord::Migrator.migrations_paths << File.expand_path('../db/migrate', __dir__) 7 | require "rails/test_help" 8 | 9 | # Filter out the backtrace from minitest while preserving the one from other libraries. 10 | Minitest.backtrace_filter = Minitest::BacktraceFilter.new 11 | 12 | 13 | # Load fixtures from the engine 14 | if ActiveSupport::TestCase.respond_to?(:fixture_path=) 15 | ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__) 16 | ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path 17 | ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files" 18 | ActiveSupport::TestCase.fixtures :all 19 | end 20 | -------------------------------------------------------------------------------- /app/components/form/text_area.html.erb: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
<%= form.label field , class: 'Polaris-Label__Text' %>
6 |
7 |
8 |
9 |
10 | <%= form.text_area field , {class: 'Polaris-TextField__Input', placeholder: placeholder}%> 11 |
12 | 16 |
17 |
18 |
19 |
20 |
-------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # 'true': 'foo' 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at https://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /app/components/form/select.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
<%= form.label field ,class: "Polaris-Label__Text" %>
5 |
6 |
7 | <%= form.select field, choices , {} ,class: "Polaris-Select__Input #{class_extra}" %> 8 | 13 |
14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2019 Craig 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'fileutils' 3 | 4 | # path to your application root. 5 | APP_ROOT = File.expand_path('..', __dir__) 6 | 7 | def system!(*args) 8 | system(*args) || abort("\n== Command #{args} failed ==") 9 | end 10 | 11 | FileUtils.chdir APP_ROOT do 12 | # This script is a way to setup or update your development environment automatically. 13 | # This script is idempotent, so that you can run it at anytime and get an expectable outcome. 14 | # Add necessary setup steps to this file. 15 | 16 | puts '== Installing dependencies ==' 17 | system! 'gem install bundler --conservative' 18 | system('bundle check') || system!('bundle install') 19 | 20 | # puts "\n== Copying sample files ==" 21 | # unless File.exist?('config/database.yml') 22 | # FileUtils.cp 'config/database.yml.sample', 'config/database.yml' 23 | # end 24 | 25 | puts "\n== Preparing database ==" 26 | system! 'bin/rails db:prepare' 27 | 28 | puts "\n== Removing old logs and tempfiles ==" 29 | system! 'bin/rails log:clear tmp:clear' 30 | 31 | puts "\n== Restarting application server ==" 32 | system! 'bin/rails restart' 33 | end 34 | -------------------------------------------------------------------------------- /app/components/form/checkbox_list.html.erb: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | 22 |
  • -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: <%= Rails.root.join("tmp/storage") %> 4 | 5 | local: 6 | service: Disk 7 | root: <%= Rails.root.join("storage") %> 8 | 9 | # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) 10 | # amazon: 11 | # service: S3 12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> 13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> 14 | # region: us-east-1 15 | # bucket: your_own_bucket 16 | 17 | # Remember not to checkin your GCS keyfile to a repository 18 | # google: 19 | # service: GCS 20 | # project: your_project 21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> 22 | # bucket: your_own_bucket 23 | 24 | # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) 25 | # microsoft: 26 | # service: AzureStorage 27 | # storage_account_name: your_account_name 28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> 29 | # container: your_container_name 30 | 31 | # mirror: 32 | # service: Mirror 33 | # primary: local 34 | # mirrors: [ amazon, google, microsoft ] 35 | -------------------------------------------------------------------------------- /app/components/actions/button.rb: -------------------------------------------------------------------------------- 1 | module Actions 2 | 3 | class Button < ViewComponent::Base 4 | STYLE_CLASS_MAPPINGS = { 5 | default: "", 6 | primary: "Polaris-Button--primary", 7 | outline: "Polaris-Button--outline", 8 | plain: "Polaris-Button--plain", 9 | plain_destructive: "Polaris-Button--plain Polaris-Button--destructive", 10 | destructive: "Polaris-Button--destructive", 11 | slim: "Polaris-Button--sizeSlim", 12 | large: "Polaris-Button--sizeLarge" 13 | }.freeze 14 | 15 | attr_reader :style, :disabled, :label, :submit, :url , :method 16 | 17 | #validates :style, inclusion: {in: STYLE_CLASS_MAPPINGS.keys} 18 | #todo cannot have submit and url? 19 | #<%= render(Actions::Button.new(style: :plain , label: 'Show', url: task_url(task))) %> 20 | #<%= render(Actions::Button.new(style: :plain , label: 'Edit', url: edit_task_url(task))) %> 21 | #<%= render(Actions::Button.new(style: :plain_destructive , label: 'Destroy', url: task_url(task), method: :destroy)) %> 22 | def initialize(style: :default, disabled: false, label: , submit: false, url: nil, method: nil) 23 | @style, @disabled, @label, @submit, @url, @method = style, disabled, label, submit, url, method 24 | end 25 | end 26 | end 27 | 28 | -------------------------------------------------------------------------------- /polaris-html.gemspec: -------------------------------------------------------------------------------- 1 | $:.push File.expand_path("lib", __dir__) 2 | 3 | # Maintain your gem's version: 4 | require "polaris/html/version" 5 | 6 | # Describe your gem and declare its dependencies: 7 | Gem::Specification.new do |spec| 8 | spec.name = "polaris-html" 9 | spec.version = Polaris::Html::VERSION 10 | spec.authors = ["Craig"] 11 | spec.email = ["craig@bravetheskies.com"] 12 | spec.homepage = "https://github.com/BTSCraig/Polaris-html" 13 | spec.summary = "Summary of Polaris::Html." 14 | spec.description = "Description of Polaris::Html." 15 | spec.license = "MIT" 16 | 17 | # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' 18 | # to allow pushing to a single host or delete this section to allow pushing to any host. 19 | if spec.respond_to?(:metadata) 20 | spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" 21 | else 22 | raise "RubyGems 2.0 or newer is required to protect against " \ 23 | "public gem pushes." 24 | end 25 | 26 | spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] 27 | 28 | spec.add_dependency "rails", "~> 6.0.1" 29 | spec.add_dependency "actionview-component" 30 | 31 | spec.add_development_dependency "sqlite3" 32 | end 33 | -------------------------------------------------------------------------------- /app/components/form/checkbox.html.erb: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 22 |
    23 |
    24 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Define an application-wide content security policy 4 | # For further information see the following documentation 5 | # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy 6 | 7 | # Rails.application.config.content_security_policy do |policy| 8 | # policy.default_src :self, :https 9 | # policy.font_src :self, :https, :data 10 | # policy.img_src :self, :https, :data 11 | # policy.object_src :none 12 | # policy.script_src :self, :https 13 | # policy.style_src :self, :https 14 | 15 | # # Specify URI for violation reports 16 | # # policy.report_uri "/csp-violation-report-endpoint" 17 | # end 18 | 19 | # If you are using UJS then enable automatic nonce generation 20 | # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) } 21 | 22 | # Set the nonce only to specific directives 23 | # Rails.application.config.content_security_policy_nonce_directives = %w(script-src) 24 | 25 | # Report CSP violations to a specified URI 26 | # For further information see the following documentation: 27 | # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only 28 | # Rails.application.config.content_security_policy_report_only = true 29 | -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } 8 | min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count } 9 | threads min_threads_count, max_threads_count 10 | 11 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 12 | # 13 | port ENV.fetch("PORT") { 3000 } 14 | 15 | # Specifies the `environment` that Puma will run in. 16 | # 17 | environment ENV.fetch("RAILS_ENV") { "development" } 18 | 19 | # Specifies the `pidfile` that Puma will use. 20 | pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" } 21 | 22 | # Specifies the number of `workers` to boot in clustered mode. 23 | # Workers are forked web server processes. If using threads and workers together 24 | # the concurrency of the application would be max `threads` * `workers`. 25 | # Workers do not work on JRuby or Windows (both of which do not support 26 | # processes). 27 | # 28 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 29 | 30 | # Use the `preload_app!` method when specifying a `workers` number. 31 | # This directive tells Puma to first boot the application and load code 32 | # before forking the application. This takes advantage of Copy On Write 33 | # process behavior so workers use less memory. 34 | # 35 | # preload_app! 36 | 37 | # Allow puma to be restarted by `rails restart` command. 38 | plugin :tmp_restart 39 | -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
    60 |
    61 |

    We're sorry, but something went wrong.

    62 |
    63 |

    If you are the application owner check the logs for more information.

    64 |
    65 | 66 | 67 | -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
    60 |
    61 |

    The change you wanted was rejected.

    62 |

    Maybe you tried to change something you didn't have access to.

    63 |
    64 |

    If you are the application owner check the logs for more information.

    65 |
    66 | 67 | 68 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
    60 |
    61 |

    The page you were looking for doesn't exist.

    62 |

    You may have mistyped the address or the page may have moved.

    63 |
    64 |

    If you are the application owner check the logs for more information.

    65 |
    66 | 67 | 68 | -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- 1 | # The test environment is used exclusively to run your application's 2 | # test suite. You never need to work with it otherwise. Remember that 3 | # your test database is "scratch space" for the test suite and is wiped 4 | # and recreated between test runs. Don't rely on the data there! 5 | 6 | Rails.application.configure do 7 | # Settings specified here will take precedence over those in config/application.rb. 8 | 9 | config.cache_classes = false 10 | 11 | # Do not eager load code on boot. This avoids loading your whole application 12 | # just for the purpose of running a single test. If you are using a tool that 13 | # preloads Rails for running tests, you may have to set it to true. 14 | config.eager_load = false 15 | 16 | # Configure public file server for tests with Cache-Control for performance. 17 | config.public_file_server.enabled = true 18 | config.public_file_server.headers = { 19 | 'Cache-Control' => "public, max-age=#{1.hour.to_i}" 20 | } 21 | 22 | # Show full error reports and disable caching. 23 | config.consider_all_requests_local = true 24 | config.action_controller.perform_caching = false 25 | config.cache_store = :null_store 26 | 27 | # Raise exceptions instead of rendering exception templates. 28 | config.action_dispatch.show_exceptions = false 29 | 30 | # Disable request forgery protection in test environment. 31 | config.action_controller.allow_forgery_protection = false 32 | 33 | # Store uploaded files on the local file system in a temporary directory. 34 | config.active_storage.service = :test 35 | 36 | config.action_mailer.perform_caching = false 37 | 38 | # Tell Action Mailer not to deliver emails to the real world. 39 | # The :test delivery method accumulates sent emails in the 40 | # ActionMailer::Base.deliveries array. 41 | config.action_mailer.delivery_method = :test 42 | 43 | # Print deprecation notices to the stderr. 44 | config.active_support.deprecation = :stderr 45 | 46 | # Raises error for missing translations. 47 | # config.action_view.raise_on_missing_translations = true 48 | end 49 | -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Do not eager load code on boot. 10 | config.eager_load = false 11 | 12 | # Show full error reports. 13 | config.consider_all_requests_local = true 14 | 15 | # Enable/disable caching. By default caching is disabled. 16 | # Run rails dev:cache to toggle caching. 17 | if Rails.root.join('tmp', 'caching-dev.txt').exist? 18 | config.action_controller.perform_caching = true 19 | config.action_controller.enable_fragment_cache_logging = true 20 | 21 | config.cache_store = :memory_store 22 | config.public_file_server.headers = { 23 | 'Cache-Control' => "public, max-age=#{2.days.to_i}" 24 | } 25 | else 26 | config.action_controller.perform_caching = false 27 | 28 | config.cache_store = :null_store 29 | end 30 | 31 | # Store uploaded files on the local file system (see config/storage.yml for options). 32 | config.active_storage.service = :local 33 | 34 | # Don't care if the mailer can't send. 35 | config.action_mailer.raise_delivery_errors = false 36 | 37 | config.action_mailer.perform_caching = false 38 | 39 | # Print deprecation notices to the Rails logger. 40 | config.active_support.deprecation = :log 41 | 42 | # Raise an error on page load if there are pending migrations. 43 | config.active_record.migration_error = :page_load 44 | 45 | # Highlight code that triggered database queries in logs. 46 | config.active_record.verbose_query_logs = true 47 | 48 | # Debug mode disables concatenation and preprocessing of assets. 49 | # This option may cause significant delays in view rendering with a large 50 | # number of complex assets. 51 | config.assets.debug = true 52 | 53 | # Suppress logger output for asset requests. 54 | config.assets.quiet = true 55 | 56 | # Raises error for missing translations. 57 | # config.action_view.raise_on_missing_translations = true 58 | 59 | # Use an evented file watcher to asynchronously detect changes in source code, 60 | # routes, locales, etc. This feature depends on the listen gem. 61 | # config.file_watcher = ActiveSupport::EventedFileUpdateChecker 62 | end 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Polaris::Html 2 | ActionView components for Shopify's Polaris components: https://polaris.shopify.com/ 3 | 4 | ## Usage 5 | This gem is under active development. It is indeed as a drop-in solution for adding Polaris components to Ruby on Rails Shopify apps. 6 | 7 | ## Installation 8 | Add this line to your application's Gemfile: 9 | 10 | ```ruby 11 | gem 'polaris-html', git: 'https://github.com/bravetheskies/Polaris-html' 12 | ``` 13 | 14 | Add actionview comonents: https://github.com/github/actionview-component 15 | 16 | Add this line to your application's Gemfile: 17 | 18 | ```ruby 19 | gem "actionview-component" 20 | ``` 21 | 22 | And then execute: 23 | ```bash 24 | $ bundle 25 | ``` 26 | 27 | In `config/application.rb`, add: 28 | 29 | ```bash 30 | require "action_view/component/railtie" 31 | ``` 32 | 33 | ## Components 34 | ### Forms components 35 | ```ruby 36 | textbox = form: , field: , placeholder: nil, help_text: nil, label_hidden: false, class_extra_form_item: '' 37 | <%= render(Form::Text, form: form , field: :email) %> 38 | <%= render(Form::Checkbox, form: form , label: 'Enabled', field: :enabled ) %> 39 | ``` 40 | 41 | tags - path , label -> defualt to delete path. Need to add as option 42 | 43 | ### Layouts 44 | ```ruby 45 | <%= render(PolarisLayouts::AnnotatedSection, title: 'Operations', description: 'Past operations showing the alterations made ') do %> 46 | <% end %> 47 | ``` 48 | 49 | ### Navigation 50 | ```ruby 51 | <%= render(PolarisNavigation::FooterHelp) do %> 52 | <% end %> 53 | ``` 54 | 55 | ### Select 56 | ```ruby 57 | <%= render(Form::Select.new(form: form, field: :field_name, choices: Example.all.collect {|example| [example.name, example.id]})) %> 58 | ``` 59 | 60 | You will also need to add some Javascript to your `app/javascript/packs/application.js` to change the text in the select box. Example here: 61 | 62 | ```javascript 63 | document.addEventListener("turbolinks:load", function() { 64 | const selectboxes = document.querySelectorAll('.Polaris-Select__Input'); 65 | selectboxes.forEach((element) => { 66 | element.parentNode.querySelector('.Polaris-Select__SelectedOption').textContent = element.options[element.selectedIndex].text 67 | element.onchange = function(){ 68 | element.parentNode.querySelector('.Polaris-Select__SelectedOption').textContent = element.options[element.selectedIndex].text 69 | } 70 | }); 71 | }); 72 | ``` 73 | 74 | ### JavaScript 75 | 76 | #### Select Box 77 | 78 | Original select box javascript: 79 | 80 | ```javascript 81 | const selectboxes = document.querySelectorAll('.Polaris-Select__Input'); 82 | selectboxes.forEach((element) => { 83 | element.parentNode.querySelector('.Polaris-Select__SelectedOption').textContent = element.value 84 | }); 85 | ``` 86 | 87 | ## TODO 88 | Tags, change to lable and link. 89 | ## Contributing 90 | Contribution directions go here. 91 | 92 | ## License 93 | The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). 94 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | PATH 2 | remote: . 3 | specs: 4 | polaris-html (0.1.7) 5 | actionview-component 6 | rails (~> 6.0.1) 7 | 8 | GEM 9 | remote: https://rubygems.org/ 10 | specs: 11 | actioncable (6.0.3.2) 12 | actionpack (= 6.0.3.2) 13 | nio4r (~> 2.0) 14 | websocket-driver (>= 0.6.1) 15 | actionmailbox (6.0.3.2) 16 | actionpack (= 6.0.3.2) 17 | activejob (= 6.0.3.2) 18 | activerecord (= 6.0.3.2) 19 | activestorage (= 6.0.3.2) 20 | activesupport (= 6.0.3.2) 21 | mail (>= 2.7.1) 22 | actionmailer (6.0.3.2) 23 | actionpack (= 6.0.3.2) 24 | actionview (= 6.0.3.2) 25 | activejob (= 6.0.3.2) 26 | mail (~> 2.5, >= 2.5.4) 27 | rails-dom-testing (~> 2.0) 28 | actionpack (6.0.3.2) 29 | actionview (= 6.0.3.2) 30 | activesupport (= 6.0.3.2) 31 | rack (~> 2.0, >= 2.0.8) 32 | rack-test (>= 0.6.3) 33 | rails-dom-testing (~> 2.0) 34 | rails-html-sanitizer (~> 1.0, >= 1.2.0) 35 | actiontext (6.0.3.2) 36 | actionpack (= 6.0.3.2) 37 | activerecord (= 6.0.3.2) 38 | activestorage (= 6.0.3.2) 39 | activesupport (= 6.0.3.2) 40 | nokogiri (>= 1.8.5) 41 | actionview (6.0.3.2) 42 | activesupport (= 6.0.3.2) 43 | builder (~> 3.1) 44 | erubi (~> 1.4) 45 | rails-dom-testing (~> 2.0) 46 | rails-html-sanitizer (~> 1.1, >= 1.2.0) 47 | actionview-component (1.14.1) 48 | capybara (>= 3) 49 | activejob (6.0.3.2) 50 | activesupport (= 6.0.3.2) 51 | globalid (>= 0.3.6) 52 | activemodel (6.0.3.2) 53 | activesupport (= 6.0.3.2) 54 | activerecord (6.0.3.2) 55 | activemodel (= 6.0.3.2) 56 | activesupport (= 6.0.3.2) 57 | activestorage (6.0.3.2) 58 | actionpack (= 6.0.3.2) 59 | activejob (= 6.0.3.2) 60 | activerecord (= 6.0.3.2) 61 | marcel (~> 0.3.1) 62 | activesupport (6.0.3.2) 63 | concurrent-ruby (~> 1.0, >= 1.0.2) 64 | i18n (>= 0.7, < 2) 65 | minitest (~> 5.1) 66 | tzinfo (~> 1.1) 67 | zeitwerk (~> 2.2, >= 2.2.2) 68 | addressable (2.7.0) 69 | public_suffix (>= 2.0.2, < 5.0) 70 | builder (3.2.4) 71 | capybara (3.31.0) 72 | addressable 73 | mini_mime (>= 0.1.3) 74 | nokogiri (~> 1.8) 75 | rack (>= 1.6.0) 76 | rack-test (>= 0.6.3) 77 | regexp_parser (~> 1.5) 78 | xpath (~> 3.2) 79 | concurrent-ruby (1.1.6) 80 | crass (1.0.6) 81 | erubi (1.9.0) 82 | globalid (0.4.2) 83 | activesupport (>= 4.2.0) 84 | i18n (1.8.3) 85 | concurrent-ruby (~> 1.0) 86 | loofah (2.6.0) 87 | crass (~> 1.0.2) 88 | nokogiri (>= 1.5.9) 89 | mail (2.7.1) 90 | mini_mime (>= 0.1.1) 91 | marcel (0.3.3) 92 | mimemagic (~> 0.3.2) 93 | method_source (1.0.0) 94 | mimemagic (0.3.5) 95 | mini_mime (1.0.2) 96 | mini_portile2 (2.4.0) 97 | minitest (5.14.1) 98 | nio4r (2.5.2) 99 | nokogiri (1.10.9) 100 | mini_portile2 (~> 2.4.0) 101 | public_suffix (4.0.3) 102 | rack (2.2.3) 103 | rack-test (1.1.0) 104 | rack (>= 1.0, < 3) 105 | rails (6.0.3.2) 106 | actioncable (= 6.0.3.2) 107 | actionmailbox (= 6.0.3.2) 108 | actionmailer (= 6.0.3.2) 109 | actionpack (= 6.0.3.2) 110 | actiontext (= 6.0.3.2) 111 | actionview (= 6.0.3.2) 112 | activejob (= 6.0.3.2) 113 | activemodel (= 6.0.3.2) 114 | activerecord (= 6.0.3.2) 115 | activestorage (= 6.0.3.2) 116 | activesupport (= 6.0.3.2) 117 | bundler (>= 1.3.0) 118 | railties (= 6.0.3.2) 119 | sprockets-rails (>= 2.0.0) 120 | rails-dom-testing (2.0.3) 121 | activesupport (>= 4.2.0) 122 | nokogiri (>= 1.6) 123 | rails-html-sanitizer (1.3.0) 124 | loofah (~> 2.3) 125 | railties (6.0.3.2) 126 | actionpack (= 6.0.3.2) 127 | activesupport (= 6.0.3.2) 128 | method_source 129 | rake (>= 0.8.7) 130 | thor (>= 0.20.3, < 2.0) 131 | rake (13.0.1) 132 | regexp_parser (1.7.0) 133 | sprockets (4.0.2) 134 | concurrent-ruby (~> 1.0) 135 | rack (> 1, < 3) 136 | sprockets-rails (3.2.1) 137 | actionpack (>= 4.0) 138 | activesupport (>= 4.0) 139 | sprockets (>= 3.0.0) 140 | sqlite3 (1.4.1) 141 | thor (1.0.1) 142 | thread_safe (0.3.6) 143 | tzinfo (1.2.7) 144 | thread_safe (~> 0.1) 145 | websocket-driver (0.7.2) 146 | websocket-extensions (>= 0.1.0) 147 | websocket-extensions (0.1.5) 148 | xpath (3.2.0) 149 | nokogiri (~> 1.8) 150 | zeitwerk (2.3.0) 151 | 152 | PLATFORMS 153 | ruby 154 | 155 | DEPENDENCIES 156 | polaris-html! 157 | sqlite3 158 | 159 | BUNDLED WITH 160 | 2.1.1 161 | -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # Code is not reloaded between requests. 5 | config.cache_classes = true 6 | 7 | # Eager load code on boot. This eager loads most of Rails and 8 | # your application in memory, allowing both threaded web servers 9 | # and those relying on copy on write to perform better. 10 | # Rake tasks automatically ignore this option for performance. 11 | config.eager_load = true 12 | 13 | # Full error reports are disabled and caching is turned on. 14 | config.consider_all_requests_local = false 15 | config.action_controller.perform_caching = true 16 | 17 | # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] 18 | # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). 19 | # config.require_master_key = true 20 | 21 | # Disable serving static files from the `/public` folder by default since 22 | # Apache or NGINX already handles this. 23 | config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? 24 | 25 | # Compress CSS using a preprocessor. 26 | # config.assets.css_compressor = :sass 27 | 28 | # Do not fallback to assets pipeline if a precompiled asset is missed. 29 | config.assets.compile = false 30 | 31 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 32 | # config.action_controller.asset_host = 'http://assets.example.com' 33 | 34 | # Specifies the header that your server uses for sending files. 35 | # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache 36 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX 37 | 38 | # Store uploaded files on the local file system (see config/storage.yml for options). 39 | config.active_storage.service = :local 40 | 41 | # Mount Action Cable outside main process or domain. 42 | # config.action_cable.mount_path = nil 43 | # config.action_cable.url = 'wss://example.com/cable' 44 | # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] 45 | 46 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 47 | # config.force_ssl = true 48 | 49 | # Use the lowest log level to ensure availability of diagnostic information 50 | # when problems arise. 51 | config.log_level = :debug 52 | 53 | # Prepend all log lines with the following tags. 54 | config.log_tags = [ :request_id ] 55 | 56 | # Use a different cache store in production. 57 | # config.cache_store = :mem_cache_store 58 | 59 | # Use a real queuing backend for Active Job (and separate queues per environment). 60 | # config.active_job.queue_adapter = :resque 61 | # config.active_job.queue_name_prefix = "dummy_production" 62 | 63 | config.action_mailer.perform_caching = false 64 | 65 | # Ignore bad email addresses and do not raise email delivery errors. 66 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 67 | # config.action_mailer.raise_delivery_errors = false 68 | 69 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 70 | # the I18n.default_locale when a translation cannot be found). 71 | config.i18n.fallbacks = true 72 | 73 | # Send deprecation notices to registered listeners. 74 | config.active_support.deprecation = :notify 75 | 76 | # Use default logging formatter so that PID and timestamp are not suppressed. 77 | config.log_formatter = ::Logger::Formatter.new 78 | 79 | # Use a different logger for distributed setups. 80 | # require 'syslog/logger' 81 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') 82 | 83 | if ENV["RAILS_LOG_TO_STDOUT"].present? 84 | logger = ActiveSupport::Logger.new(STDOUT) 85 | logger.formatter = config.log_formatter 86 | config.logger = ActiveSupport::TaggedLogging.new(logger) 87 | end 88 | 89 | # Do not dump schema after migrations. 90 | config.active_record.dump_schema_after_migration = false 91 | 92 | # Inserts middleware to perform automatic connection switching. 93 | # The `database_selector` hash is used to pass options to the DatabaseSelector 94 | # middleware. The `delay` is used to determine how long to wait after a write 95 | # to send a subsequent read to the primary. 96 | # 97 | # The `database_resolver` class is used by the middleware to determine which 98 | # database is appropriate to use based on the time delay. 99 | # 100 | # The `database_resolver_context` class is used by the middleware to set 101 | # timestamps for the last write to the primary. The resolver uses the context 102 | # class timestamps to determine how long to wait before reading from the 103 | # replica. 104 | # 105 | # By default Rails will store a last write timestamp in the session. The 106 | # DatabaseSelector middleware is designed as such you can define your own 107 | # strategy for connection switching and pass that into the middleware through 108 | # these configuration options. 109 | # config.active_record.database_selector = { delay: 2.seconds } 110 | # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver 111 | # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session 112 | end 113 | --------------------------------------------------------------------------------