Class: FloorPlansController
- Inherits:
-
BasePortalController
- Object
- ActionController::Base
- ApplicationController
- BasePortalController
- FloorPlansController
- Defined in:
- app/controllers/floor_plans_controller.rb
Overview
Controller: floor plans.
Constant Summary
Constants included from Controllers::MasqueradeGuarded
Controllers::MasqueradeGuarded::DEFAULT_BLOCK_MESSAGE
Constants included from Controllers::AnalyticsEvents
Controllers::AnalyticsEvents::MAX_QUEUED_EVENTS, Controllers::AnalyticsEvents::SESSION_KEY
Constants included from Controllers::ErrorRendering
Controllers::ErrorRendering::NON_CONTENT_PATH_PREFIXES
Instance Method Summary collapse
-
#bathrooms ⇒ void
Lists published bathroom floor plans.
-
#project_index ⇒ void
Renders the project floor plan index for the requested room type.
-
#project_showcase_index ⇒ void
Renders the showcase floor plan index for the requested room type.
-
#show_countertop ⇒ void
Renders the countertop heating plan for the requested room configuration.
Methods inherited from BasePortalController
#current_ability, #portal_party, #set_catalog, #set_webpack
Methods included from Controllers::MasqueradeGuarded
block_while_masquerading, #masquerade_blocks?
Methods inherited from ApplicationController
#account_impersonated?, #add_to_flash, #after_sign_in_path_for, #bypass_forgery_protection?, #chat_enabled?, #cloudflare_cleared?, #default_catalog, #default_url_options, #enable_turbo_frames, #find_publication, #fix_invalid_accept_header, #init_js_utils, #is_globals_call?, #layout_by_resource, #locale_store, #redirect_to, #require_employee_for_crm, #set_base_host, #set_real_ip, #set_report_errors_for, #should_render_layout?, #skip_layout_for_turbo_frame?, #stamp_impersonation_context, #tab_frame_breakout_request?, #warmlyyours_canada_ip?, #warmlyyours_ip?, #y
Methods included from Controllers::ReturnPathHandling
#check_for_return_path, #redirect_to_return_path_or_default
Methods included from Controllers::AnalyticsEvents
#consume_queued_analytics_events, #registration_lead_type, #track_event
Methods included from Controllers::DeviceDetection
Methods included from Controllers::SubdomainDetection
#is_crm_request?, #is_www_request?, #json_request?
Methods included from Controllers::TurboSafeRedirect
Methods included from Controllers::TrackingDetection
#bot_request?, #gdpr_country?, #gdpr_country_data, #prevent_bots, #set_tracking_cookie, #track_visitor?
Methods included from Controllers::AcceleratedFileSending
#send_file_accelerated, #send_upload_accelerated
Methods included from Controllers::ErrorRendering
#excp_string, #mail_to_for_error_reporting, #render_400, #render_404, #render_406, #render_410, #render_500, #render_invalid_authenticity_token, #render_ip_spoof_error, #render_unpermitted_parameters, #safe_referer_or_fallback
Methods included from Controllers::TurnstileVerification
#load_turnstile_script_tag, #turnstile_lazy_widget, #turnstile_script_tag, #turnstile_widget, #validate_turnstile!
Methods included from Controllers::CloudflareCaching
edge_cached, #edge_cached_action?, #reset_cloudflare_cache, #set_cloudflare_cache, #skip_edge_cache!, #skip_session
Methods included from Controllers::Webpackable
#preload_webpack_fonts, #webpack_css_include, #webpack_css_url, #webpack_js_include, #wpd_is_running?
Methods included from Controllers::Localizable
#cloudflare_country_locale, #determine_request_locale, #geocoder_locale, #guest_user_locale_check, #locale_optional_www_auth_path?, #param_locale, #set_locale, #set_request_locale, #skip_localization?, #warmlyyours_ip_locale
Methods included from Controllers::Authenticable
#access_denied, #authenticate_account, #authenticate_account!, #authenticate_account_from_login_token!, #check_is_a_manager, #check_is_a_sales_manager, #check_is_an_admin, #check_is_an_employee, #check_party, #clear_mismatched_guest_user, #create_guest_user, #credentials?, #current_or_guest_user, #current_or_guest_user_id_read_only, #current_user, #devise_mapping, #fully_logged_in?, #generate_bot_id, #guest_user, #identifiable?, #init_current_user, #initialize_guest, #load_context_user, #logging_in, #resource, #resource_name, #restrict_access_for_non_employees, #scrubbed_request_path, #user_object, #warn_on_session_guest_id_leak
Methods included from UrlsHelper
#catalog_breadcrumb_links, #catalog_link, #catalog_link_for_product_line, #catalog_link_for_sku, #cms_link, #delocalized_path, #path_to_sales_product_sku, #path_to_sales_product_sku_for_product_line, #path_to_sales_product_sku_for_product_line_slug, #product_line_from_catalog_link, #protocol_neutral_url, #sanitize_external_url, #valid_external_url?
Instance Method Details
#bathrooms ⇒ void
This method returns an undefined value.
Lists published bathroom floor plans.
19 20 21 |
# File 'app/controllers/floor_plans_controller.rb', line 19 def bathrooms @plans = Showcase.floor_plans.published.where(room_type_id: 2).order(:id) end |
#project_index ⇒ void
This method returns an undefined value.
Renders the project floor plan index for the requested room type.
140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'app/controllers/floor_plans_controller.rb', line 140 def project_index room_type = params[:room_type] case room_type when 'countertop' set_project_index_attributes(room_type, false, true) @title = "Countertop Heating Installation Plans " @meta_description = "We show you the price of countertop heating installation plans with WarmlyYours products." @breadcrumb = [{ name: 'Countertop Heaters', url: cms_link('/countertop-heater') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Countertop Size', options: %w[Small Medium Large] }] @description = "Select a plan that best shows the shape of your kitchen to see the installation cost." @plans_path = "countertop-plans" end end |
#project_showcase_index ⇒ void
This method returns an undefined value.
Renders the showcase floor plan index for the requested room type.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'app/controllers/floor_plans_controller.rb', line 26 def project_showcase_index room_type = params[:room_type] case room_type when 'shower/Sauna' @plans = Showcase.floor_plans.published.where(room_type_id: 19).order(:position, :name) @title = "Shower Floor Plans" @meta_description = "We show you the price of shower floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Shower', url: cms_link('/floor-heating/shower') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Shower Configuration', options: ['Shower Only', 'Shower + Bench'] }] @description = "Select a Floor Plan that best shows the shape of your shower and you will see the detailed floor heating installation plan and cost." @plans_path = "shower-floor-plans" when 'bedroom' @plans = Showcase.floor_plans.published.where(room_type_id: 4).order(:position, :name) @title = "Bedroom Floor Plans " @meta_description = "We show you the price of bedroom floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Bedroom', url: cms_link('/floor-heating/bedroom') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Bedroom Size', options: %w[Small Medium Large] }] @description = "Select a Floor Plan that best shows the shape of your bedroom and you will see the detailed floor heating installation plan and cost." @plans_path = "bedroom-floor-plans" when 'living_room' @plans = Showcase.floor_plans.published.where(room_type_id: 12).order(:position, :name) # set_project_index_attributes(room_type, true, false, 12) @title = "Living Room Floor Plans " @meta_description = "We show you the price of living room floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Living Room', url: cms_link('/floor-heating/living-room') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Living Room Size', options: %w[Small Medium Large] }] @description = "Select a Floor Plan that best shows the shape of your living room and you will see the detailed floor heating installation plan and cost." @plans_path = "living-room-floor-plans" when 'sunroom' @plans = Showcase.floor_plans.published.where(room_type_id: 17).order(:position, :name) @title = "Sunroom Floor Plans" @meta_description = "We show you the price of sunroom floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Sunroom', url: cms_link('/floor-heating/sunroom') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Sunroom Size', options: %w[Small Medium Large] }] @description = "Select a Floor Plan that best shows the shape of your sunroom and you will see the detailed floor heating installation plan and cost." @plans_path = "sunroom-floor-plans" when 'basement' @plans = Showcase.floor_plans.published.where(room_type_id: 1).order(:position, :name) @title = "Basement Floor Plans" @meta_description = "We show you the price of basement floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Basement', url: cms_link('/floor-heating/basement') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Basement Size', options: %w[Small Medium Large] }] @description = " Select a Floor Plan that best shows the shape of your basement and you will see the detailed floor heating installation plan and cost." @plans_path = "basement-floor-plans" when 'kitchen' @plans = Showcase.floor_plans.published.where(room_type_id: 10).order(:position, :name) @title = "Kitchen Floor Plans" @meta_description = "We show you the price of kitchen floor plans for electric radiant heating floors" @breadcrumb = [{ name: 'Radiant Floor Heating', url: cms_link('/floor-heating') }, { name: 'Kitchen', url: cms_link('/floor-heating/kitchen') }, { name: 'Floor Plans' }] @filters = [{ type: 'checkbox', title: 'Kitchen Shape', options: @plans.map(&:filter_1_value).uniq.compact }] @description = "Select a Floor Plan that best shows the shape of your kitchen and you will see the detailed floor heating installation plan and cost." @plans_path = "kitchen-floor-plans" when 'driveway' @plans = Showcase.floor_plans.published.where(room_type_id: 20).order(:position, :name) @title = "Snow Melting Example Plans for Driveways" @meta_description = "We show you the price of driveway installation plans for electric snow melting" @breadcrumb = [{ name: 'Snow Melting', url: cms_link('/snow-melting') }, { name: 'Driveway', url: cms_link('/snow-melting/heated-driveway') }, { name: 'Example Plans' }] @filters = [{ type: 'checkbox', title: 'Driveway Size', options: %w[Small Medium Large] }] @description = "Select an Example Plan that best shows the shape of your driveway and you will see the detailed snow melting installation plan and cost." @plans_path = "driveway-floor-plans" when 'ramp' @plans = Showcase.floor_plans.published.where(room_type_id: 31).order(:position, :name) @title = "Snow Melting Installation Plans for Ramps" @meta_description = "We show you the price of ramp installation plans for electric snow melting" @breadcrumb = [{ name: 'Snow Melting', url: cms_link('/snow-melting') }, { name: 'Ramps', url: cms_link('/snow-melting/accessibility-ramp-deicing') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Ramp Size', options: %w[Small Medium Large] }] @description = "Select an Example Plan that best shows the shape of your ramp and you will see the detailed snow melting installation plan and cost." @plans_path = "ramp-floor-plans" when 'walkway' @plans = Showcase.floor_plans.published.where(room_type_id: 29).order(:position, :name) @title = "Snow Melting Installation Plans for Walkways" @meta_description = "We show you the price of walkway installation plans for electric snow melting" @breadcrumb = [{ name: 'Snow Melting', url: cms_link('/snow-melting') }, { name: 'Walkways and Pathways', url: cms_link('/snow-melting/heated-walkway-path') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Walkway Size', options: %w[Small Medium Large] }] @description = "Select an Example Plan that best shows the shape of your walkway and you will see the detailed snow melting installation plan and cost." @plans_path = "walkway-floor-plans" when 'stair' @plans = Showcase.floor_plans.published.where(room_type_id: 22).order(:position, :name) @title = "Snow Melting Installation Plans for Outdoor Stairs" @meta_description = "We show you the price of outdoor stairs installation plans for electric snow melting" @breadcrumb = [{ name: 'Snow Melting', url: cms_link('/snow-melting') }, { name: 'Outdoor Stairs', url: cms_link('/snow-melting/outdoor-stairs') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Stairs Size', options: %w[Small Medium Large] }] @description = "Select an Example Plan that best shows the shape of your outdoor stairs and you will see the detailed snow melting installation plan and cost." @plans_path = "outdoor-stairs-floor-plans" when 'patio' @plans = Showcase.floor_plans.published.where(room_type_id: 23).order(:position, :name) @title = "Snow Melting Installation Plans for Patios" @meta_description = "We show you the price of patio installation plans for electric snow melting" @breadcrumb = [{ name: 'Snow Melting', url: cms_link('/snow-melting') }, { name: 'Patios', url: cms_link('/snow-melting/heated-concrete-patio') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Patio Size', options: %w[Small Medium Large] }] @description = "Select an Example Plan that best shows the shape of your patio and you will see the detailed snow melting installation plan and cost." @plans_path = "patio-floor-plans" when 'roof' @plans = Showcase.floor_plans.published.where(room_type_id: 43).order(:position, :name) @title = "Roof and Gutter Deicing Installation Plans" @meta_description = "We show you the price of adding roof and gutter deicing to your roof." @breadcrumb = [{ name: 'Roof and Gutter De-Icing', url: cms_link('/roof-and-gutter-deicing') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Installation Size', options: %w[Small Medium Large] }] @description = "Find example installation plans for roof and gutter deicing and you will see the detailed plan and cost." @plans_path = "roof-gutter-plans" when 'pipe' @plans = Showcase.floor_plans.published.where(room_type_id: 44).order(:position, :name) @title = "Pipe Freeze Protection Installation Plans" @meta_description = "We show you the price of adding pipe freeze protection to your pipes." @breadcrumb = [{ name: 'Pipe Freeze Protection', url: cms_link('/pipe-freeze-protection') }, { name: 'Installation Plans' }] @filters = [{ type: 'checkbox', title: 'Installation Size', options: %w[Small Medium Large] }] @description = "Find example installation plans for pipe freeze protection and you will see the detailed plan and cost." @plans_path = "pipe-plans" end end |
#show_countertop ⇒ void
This method returns an undefined value.
Renders the countertop heating plan for the requested room configuration.
11 12 13 14 |
# File 'app/controllers/floor_plans_controller.rb', line 11 def show_countertop @main_room = @rc @room_size = @rc.name.split.first end |