2020-04-28 00:35:33 +03:00
|
|
|
module Examples.Message exposing (Msg, State, example)
|
2018-08-16 01:05:55 +03:00
|
|
|
|
2020-04-28 03:19:51 +03:00
|
|
|
import Accessibility.Styled as Html exposing (..)
|
2020-06-19 23:41:28 +03:00
|
|
|
import AtomicDesignType exposing (AtomicDesignType(..))
|
2020-03-24 03:33:42 +03:00
|
|
|
import Category exposing (Category(..))
|
2020-04-28 03:19:51 +03:00
|
|
|
import Css exposing (..)
|
|
|
|
import Debug.Control as Control exposing (Control)
|
2020-03-31 23:33:05 +03:00
|
|
|
import Example exposing (Example)
|
2020-04-28 03:19:51 +03:00
|
|
|
import Html.Styled exposing (styled)
|
2020-08-29 02:01:56 +03:00
|
|
|
import Html.Styled.Attributes as Attributes exposing (css, href)
|
2020-06-20 00:45:32 +03:00
|
|
|
import KeyboardSupport exposing (Direction(..), Key(..))
|
2020-04-28 00:40:50 +03:00
|
|
|
import Nri.Ui.Colors.V1 as Colors
|
2019-11-15 20:12:06 +03:00
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
2021-01-19 23:23:48 +03:00
|
|
|
import Nri.Ui.Message.V3 as Message
|
2020-04-28 00:40:50 +03:00
|
|
|
import Nri.Ui.Pennant.V2 as Pennant
|
|
|
|
import Nri.Ui.Svg.V1 as Svg
|
|
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
2018-08-16 01:05:55 +03:00
|
|
|
|
|
|
|
|
2020-04-01 02:00:29 +03:00
|
|
|
type alias State =
|
2020-04-28 03:19:51 +03:00
|
|
|
{ show : Bool
|
|
|
|
, control : Control ExampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type alias ExampleConfig =
|
2020-08-29 02:01:56 +03:00
|
|
|
{ theme : Maybe (Message.Attribute Msg)
|
2020-08-29 00:19:11 +03:00
|
|
|
, content : Message.Attribute Msg
|
2020-08-28 21:55:45 +03:00
|
|
|
, role : Maybe (Message.Attribute Msg)
|
2020-08-28 23:06:42 +03:00
|
|
|
, dismissable : Maybe (Message.Attribute Msg)
|
2020-04-28 03:19:51 +03:00
|
|
|
}
|
2020-04-01 02:00:29 +03:00
|
|
|
|
|
|
|
|
2020-04-28 00:40:50 +03:00
|
|
|
init : State
|
|
|
|
init =
|
2020-04-28 03:19:51 +03:00
|
|
|
{ show = True
|
|
|
|
, control =
|
|
|
|
Control.record ExampleConfig
|
2020-08-28 22:59:06 +03:00
|
|
|
|> Control.field "theme" controlTheme
|
|
|
|
|> Control.field "content" controlContent
|
|
|
|
|> Control.field "role" controlRole
|
2020-08-28 23:06:42 +03:00
|
|
|
|> Control.field "dismissable" controlDismissable
|
2020-08-28 22:59:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-28 23:49:08 +03:00
|
|
|
controlTheme : Control (Maybe (Message.Attribute msg))
|
2020-08-28 22:59:06 +03:00
|
|
|
controlTheme =
|
|
|
|
Control.choice
|
2020-08-28 23:49:08 +03:00
|
|
|
[ ( "not set", Control.value Nothing )
|
|
|
|
, ( "tip", Control.value (Just Message.tip) )
|
|
|
|
, ( "error", Control.value (Just Message.error) )
|
|
|
|
, ( "alert", Control.value (Just Message.alert) )
|
|
|
|
, ( "success", Control.value (Just Message.success) )
|
2020-08-28 23:55:11 +03:00
|
|
|
, ( "customTheme", Control.map Just controlCustomTheme )
|
2020-08-28 22:59:06 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-08-28 23:55:11 +03:00
|
|
|
controlCustomTheme : Control (Message.Attribute msg)
|
|
|
|
controlCustomTheme =
|
|
|
|
Control.record (\a b c -> Message.customTheme { color = a, backgroundColor = b, icon = c })
|
|
|
|
|> Control.field "color"
|
|
|
|
(Control.choice
|
|
|
|
[ ( "aquaDark", Control.value Colors.aquaDark )
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|> Control.field "backgroundColor"
|
|
|
|
(Control.choice
|
|
|
|
[ ( "gray92", Control.value Colors.gray92 )
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|> Control.field "icon"
|
|
|
|
(Control.choice
|
|
|
|
[ ( "premiumFlag", Control.value Pennant.premiumFlag )
|
|
|
|
, ( "lock", Control.value UiIcon.lock )
|
|
|
|
, ( "clock", Control.value UiIcon.clock )
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-08-29 00:19:11 +03:00
|
|
|
controlContent : Control (Message.Attribute msg)
|
2020-08-28 22:59:06 +03:00
|
|
|
controlContent =
|
|
|
|
Control.choice
|
2020-08-29 00:19:11 +03:00
|
|
|
[ ( "plain text (short)"
|
2020-08-28 22:59:06 +03:00
|
|
|
, Control.string "Comic books do count as literature."
|
2020-08-28 23:33:45 +03:00
|
|
|
|> Control.map Message.plaintext
|
2020-08-28 22:59:06 +03:00
|
|
|
)
|
|
|
|
, ( "plain text (long)"
|
|
|
|
, Control.stringTextarea "Share this link with students as an easy shortcut to join Jeffy's Favorite Class (no class code needed). The link works for students new to NoRedInk and those with existing accounts. Students only need to use this link once to join."
|
2020-08-28 23:33:45 +03:00
|
|
|
|> Control.map Message.plaintext
|
2020-08-28 22:59:06 +03:00
|
|
|
)
|
|
|
|
, ( "markdown"
|
|
|
|
, Control.string "_Katie's dad suggests:_ Don't tip too much, or your waitress will **fall over**!"
|
2020-08-28 23:33:45 +03:00
|
|
|
|> Control.map Message.markdown
|
2020-08-28 22:59:06 +03:00
|
|
|
)
|
2020-08-28 23:33:45 +03:00
|
|
|
, ( "HTML (short)"
|
2020-08-28 22:59:06 +03:00
|
|
|
, Control.value
|
2020-08-28 23:33:45 +03:00
|
|
|
(Message.html
|
|
|
|
[ code [] [ text "git status" ]
|
|
|
|
, text " ⇄ "
|
|
|
|
, Html.em [] [ text "tries again" ]
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
, ( "HTML (long)"
|
|
|
|
, Control.value
|
|
|
|
(Message.html
|
2020-08-28 22:59:06 +03:00
|
|
|
[ text "Click "
|
|
|
|
, a [ href "http://www.noredink.com", Attributes.target "_blank" ]
|
|
|
|
[ text "here, yes, HERE, right here on this very long success message. "
|
|
|
|
, text "Wow, how successful! You're the biggest success I've ever seen! "
|
|
|
|
, text "You should feel great about yourself! Give yourself a very big round of applause! "
|
|
|
|
, styled div
|
|
|
|
[ display inlineBlock
|
|
|
|
, width (px 20)
|
|
|
|
]
|
|
|
|
[]
|
|
|
|
[ Svg.toHtml UiIcon.gear ]
|
|
|
|
]
|
|
|
|
, text " to check out NoRedInk."
|
2020-04-28 03:19:51 +03:00
|
|
|
]
|
|
|
|
)
|
2020-08-28 22:59:06 +03:00
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
controlRole : Control (Maybe (Message.Attribute msg))
|
|
|
|
controlRole =
|
|
|
|
Control.choice
|
2020-08-28 23:49:08 +03:00
|
|
|
[ ( "not set", Control.value Nothing )
|
|
|
|
, ( "alertRole", Control.value (Just Message.alertRole) )
|
|
|
|
, ( "alertDialogRole", Control.value (Just Message.alertDialogRole) )
|
2020-08-28 22:59:06 +03:00
|
|
|
]
|
2020-04-28 00:40:50 +03:00
|
|
|
|
|
|
|
|
2020-08-28 23:06:42 +03:00
|
|
|
controlDismissable : Control (Maybe (Message.Attribute Msg))
|
|
|
|
controlDismissable =
|
|
|
|
Control.maybe False <|
|
|
|
|
Control.value (Message.onDismiss Dismiss)
|
|
|
|
|
|
|
|
|
2020-04-28 00:40:50 +03:00
|
|
|
type Msg
|
2020-08-28 23:21:49 +03:00
|
|
|
= Dismiss
|
2020-04-28 03:19:51 +03:00
|
|
|
| UpdateControl (Control ExampleConfig)
|
2020-04-28 00:40:50 +03:00
|
|
|
|
|
|
|
|
|
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
|
|
update msg state =
|
|
|
|
case msg of
|
|
|
|
Dismiss ->
|
|
|
|
( { state | show = False }, Cmd.none )
|
2020-04-01 02:00:29 +03:00
|
|
|
|
2020-04-28 03:19:51 +03:00
|
|
|
UpdateControl newControl ->
|
|
|
|
( { state | control = newControl }, Cmd.none )
|
|
|
|
|
2020-04-01 02:00:29 +03:00
|
|
|
|
|
|
|
example : Example State Msg
|
2018-08-16 01:05:55 +03:00
|
|
|
example =
|
2020-09-09 21:43:10 +03:00
|
|
|
{ name = "Message"
|
|
|
|
, version = 2
|
2020-03-31 23:33:05 +03:00
|
|
|
, categories = [ Messaging ]
|
2020-06-20 00:16:10 +03:00
|
|
|
, atomicDesignType = Molecule
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport = []
|
2020-04-28 00:40:50 +03:00
|
|
|
, state = init
|
|
|
|
, update = update
|
2020-03-31 23:33:05 +03:00
|
|
|
, subscriptions = \_ -> Sub.none
|
|
|
|
, view =
|
2020-04-28 00:40:50 +03:00
|
|
|
\state ->
|
2020-04-28 03:19:51 +03:00
|
|
|
let
|
2020-08-29 02:01:56 +03:00
|
|
|
{ role, theme, dismissable, content } =
|
2020-04-28 03:19:51 +03:00
|
|
|
Control.currentValue state.control
|
|
|
|
|
2020-08-28 23:49:08 +03:00
|
|
|
attributes : List (Message.Attribute Msg)
|
2020-08-28 23:06:42 +03:00
|
|
|
attributes =
|
2020-08-28 23:33:45 +03:00
|
|
|
List.filterMap identity
|
2020-08-29 02:01:56 +03:00
|
|
|
[ theme
|
2020-08-29 00:19:11 +03:00
|
|
|
, Just content
|
2020-08-28 23:33:45 +03:00
|
|
|
, role
|
|
|
|
, dismissable
|
|
|
|
]
|
2020-08-28 23:06:42 +03:00
|
|
|
|
|
|
|
orDismiss view =
|
|
|
|
if state.show then
|
|
|
|
view
|
|
|
|
|
|
|
|
else
|
2020-08-29 02:01:56 +03:00
|
|
|
text "Nice! The messages were dismissed. 👍"
|
2020-04-28 03:19:51 +03:00
|
|
|
in
|
|
|
|
[ Control.view UpdateControl state.control
|
|
|
|
|> Html.fromUnstyled
|
2020-08-28 23:18:13 +03:00
|
|
|
, Heading.h3 [] [ text "Message.view" ]
|
2020-08-29 02:01:56 +03:00
|
|
|
, orDismiss <|
|
|
|
|
Html.table [ css [ width (pct 100) ] ]
|
|
|
|
[ Html.tbody []
|
|
|
|
[ tr []
|
|
|
|
[ th [] [ Html.text "tiny" ]
|
|
|
|
, td [] [ Message.view (Message.tiny :: attributes) ]
|
|
|
|
]
|
|
|
|
, tr []
|
|
|
|
[ th [] [ Html.text "large" ]
|
|
|
|
, td [] [ Message.view (Message.large :: attributes) ]
|
|
|
|
]
|
|
|
|
, tr []
|
|
|
|
[ th [] [ Html.text "banner" ]
|
|
|
|
, td [] [ Message.view (Message.banner :: attributes) ]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
2020-04-28 03:19:51 +03:00
|
|
|
, Heading.h3 [] [ text "Message.somethingWentWrong" ]
|
|
|
|
, Message.somethingWentWrong exampleRailsError
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
2018-08-16 01:05:55 +03:00
|
|
|
}
|
2019-04-17 23:40:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
exampleRailsError : String
|
|
|
|
exampleRailsError =
|
|
|
|
"""web : Completed 500 Internal Server Error in 273.5ms
|
|
|
|
web :
|
|
|
|
web : ActionView::MissingTemplate - Missing template teach/assignables/blueprint, teach/base/blueprint, application/blueprint with {:locale=>[:en], :formats=>[:json, :js, :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip, :xlsx], :handlers=>[:erb, :builder, :axlsx, :coffee, :haml, :rabl, :hamlc]}. Searched in:
|
|
|
|
web : * "/Users/avh4/workspace/NoRedInk/app/views"
|
|
|
|
web : * "/Users/avh4/.gem/ruby/2.3.3/gems/sextant-0.2.4/app/views"
|
|
|
|
web : * "/Users/avh4/.gem/ruby/2.3.3/gems/configurable_engine-0.4.8/app/views"
|
|
|
|
web : * "/Users/avh4/.gem/ruby/2.3.3/gems/kaminari-0.17.0/app/views"
|
|
|
|
web : * "/Users/avh4/workspace/NoRedInk/app/assets/javascripts/templates"
|
|
|
|
web : :
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/path_set.rb:58:in `find'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/lookup_context.rb:122:in `find'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
|
|
|
web : newrelic_rpm (4.0.0.332) lib/new_relic/agent/instrumentation/rails3/action_controller.rb:149:in `render_with_newrelic'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/renderer/renderer.rb:43:in `render_template'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_view/renderer/renderer.rb:24:in `render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/rendering.rb:111:in `_render_template'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/rendering.rb:104:in `render_to_body'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/rendering.rb:89:in `render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/rendering.rb:16:in `render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
|
|
web : /Users/avh4/.rubies/ruby-2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activerecord/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/base.rb:167:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/callbacks.rb:502:in `_run__46453218882797464__process_action__3621715315305983900__callbacks'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/notifications.rb:123:in `block in instrument'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activesupport/lib/active_support/notifications.rb:123:in `instrument'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/activerecord/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
|
|
web : newrelic_rpm (4.0.0.332) lib/new_relic/agent/instrumentation/rails3/action_controller.rb:30:in `block in process_action'
|
|
|
|
web : newrelic_rpm (4.0.0.332) lib/new_relic/agent/instrumentation/controller_instrumentation.rb:362:in `perform_action_with_newrelic_trace'
|
|
|
|
web : newrelic_rpm (4.0.0.332) lib/new_relic/agent/instrumentation/rails3/action_controller.rb:25:in `process_action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/base.rb:121:in `process'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/abstract_controller/rendering.rb:46:in `process'
|
|
|
|
web : rack-mini-profiler (0.10.2) lib/mini_profiler/profiling_methods.rb:102:in `block in profile_method'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal.rb:203:in `dispatch'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_controller/metal.rb:246:in `block in action'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
|
|
web : () Users/avh4/.gem/ruby/2.3.3/bundler/gems/rails-e17e25cd23e8/actionpack/lib/action_dispatch/routing/route_set.rb:36:in `call'"""
|