2022-03-05 00:43:01 +03:00
|
|
|
|
module CommonControls exposing (exampleHtml, httpError, premiumLevel, quickBrownFox, romeoAndJulietQuotation, uiIcon)
|
2021-05-14 23:01:02 +03:00
|
|
|
|
|
|
|
|
|
import Debug.Control as Control exposing (Control)
|
2021-10-27 22:19:29 +03:00
|
|
|
|
import Html.Styled as Html exposing (Html)
|
|
|
|
|
import Html.Styled.Attributes as Attributes
|
2021-05-14 23:01:02 +03:00
|
|
|
|
import Http
|
2021-11-22 22:01:46 +03:00
|
|
|
|
import Nri.Ui.Data.PremiumLevel exposing (PremiumLevel(..))
|
2022-03-05 00:43:01 +03:00
|
|
|
|
import Nri.Ui.Svg.V1 exposing (Svg)
|
|
|
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
2021-11-22 22:01:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
premiumLevel : Control ( String, PremiumLevel )
|
|
|
|
|
premiumLevel =
|
|
|
|
|
Control.choice
|
|
|
|
|
[ ( "Free", Control.value ( "Free", Free ) )
|
|
|
|
|
, ( "PremiumWithWriting", Control.value ( "PremiumWithWriting", PremiumWithWriting ) )
|
|
|
|
|
]
|
2021-05-14 23:01:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
httpError : Control Http.Error
|
|
|
|
|
httpError =
|
|
|
|
|
Control.choice
|
|
|
|
|
[ ( "Bad Url", Control.value (Http.BadUrl "/request-url") )
|
|
|
|
|
, ( "Timeout", Control.value Http.Timeout )
|
|
|
|
|
, ( "Network Error", Control.value Http.NetworkError )
|
|
|
|
|
, ( "Bad Status: 401", Control.value (Http.BadStatus 401) )
|
|
|
|
|
, ( "Bad Status: 404", Control.value (Http.BadStatus 404) )
|
|
|
|
|
, ( "Bad Status: ???", Control.value (Http.BadStatus 500) )
|
|
|
|
|
, ( "Bad Body (often, a JSON decoding problem)"
|
|
|
|
|
, Control.value
|
|
|
|
|
(Http.BadBody
|
|
|
|
|
"""
|
|
|
|
|
The Json.Decode.oneOf at json.draft failed in the following 2 ways:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(1) Problem with the given value:
|
|
|
|
|
|
|
|
|
|
null
|
|
|
|
|
|
|
|
|
|
Expecting an OBJECT with a field named `content`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(2) Problem with the given value:
|
|
|
|
|
|
|
|
|
|
null
|
|
|
|
|
|
|
|
|
|
Expecting an OBJECT with a field named `code`
|
|
|
|
|
"""
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
]
|
2021-10-27 22:19:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
quickBrownFox : String
|
|
|
|
|
quickBrownFox =
|
|
|
|
|
"The quick brown fox jumps over the lazy dog."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
romeoAndJulietQuotation : String
|
|
|
|
|
romeoAndJulietQuotation =
|
|
|
|
|
"""
|
|
|
|
|
Two households, both alike in dignity,
|
|
|
|
|
In fair Verona, where we lay our scene,
|
|
|
|
|
From ancient grudge break to new mutiny,
|
|
|
|
|
Where civil blood makes civil hands unclean.
|
|
|
|
|
From forth the fatal loins of these two foes
|
|
|
|
|
A pair of star-cross’d lovers take their life;
|
|
|
|
|
Whose misadventured piteous overthrows
|
|
|
|
|
Do with their death bury their parents’ strife.
|
|
|
|
|
The fearful passage of their death-mark’d love,
|
|
|
|
|
And the continuance of their parents’ rage,
|
|
|
|
|
Which, but their children’s end, nought could remove,
|
|
|
|
|
Is now the two hours’ traffic of our stage;
|
|
|
|
|
The which if you with patient ears attend,
|
|
|
|
|
What here shall miss, our toil shall strive to mend.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exampleHtml : List (Html msg)
|
|
|
|
|
exampleHtml =
|
|
|
|
|
[ Html.text "This is a "
|
|
|
|
|
, Html.strong [] [ Html.text "bolded phrase" ]
|
|
|
|
|
, Html.text ". "
|
|
|
|
|
, Html.a
|
|
|
|
|
[ Attributes.href "http://www.noredink.com"
|
|
|
|
|
, Attributes.target "_blank"
|
|
|
|
|
]
|
|
|
|
|
[ Html.text quickBrownFox ]
|
|
|
|
|
, Html.text " When I stepped out, into the bright sunlight from the darkness of the movie house, I had only two things on my mind: Paul Newman, and a ride home."
|
|
|
|
|
]
|
2022-03-05 00:43:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uiIcon : Control ( String, Svg )
|
|
|
|
|
uiIcon =
|
|
|
|
|
[ ( "arrowLeft", UiIcon.arrowLeft )
|
|
|
|
|
, ( "unarchive", UiIcon.unarchive )
|
|
|
|
|
, ( "share", UiIcon.share )
|
|
|
|
|
, ( "preview", UiIcon.preview )
|
|
|
|
|
, ( "skip", UiIcon.skip )
|
|
|
|
|
, ( "copyToClipboard", UiIcon.copyToClipboard )
|
|
|
|
|
, ( "gift", UiIcon.gift )
|
|
|
|
|
, ( "home", UiIcon.home )
|
|
|
|
|
, ( "library", UiIcon.library )
|
|
|
|
|
, ( "searchInCicle", UiIcon.searchInCicle )
|
|
|
|
|
]
|
|
|
|
|
|> List.map
|
|
|
|
|
(\( name, value ) ->
|
|
|
|
|
( name, Control.value ( "UiIcon." ++ name, value ) )
|
|
|
|
|
)
|
|
|
|
|
|> Control.choice
|