halogen-websocket-ipc-playzone/src/Bulma.purs

375 lines
14 KiB
Plaintext
Raw Normal View History

-- | The `Bulma` module is a wrapper around the BULMA css framework.
2023-06-08 21:51:12 +02:00
module Bulma where
import Prelude
import Halogen.HTML as HH
2023-07-02 00:05:38 +02:00
import DOM.HTML.Indexed as DHI
2023-06-08 21:51:12 +02:00
import Halogen.HTML.Properties as HP
import Halogen.HTML.Events as HE
import MissingHTMLProperties as MissingProperties
2023-06-08 21:51:12 +02:00
2023-07-08 01:50:11 +02:00
import CSSClasses as C
2023-07-08 00:22:23 +02:00
2023-07-12 13:06:36 +02:00
import Halogen.HTML.Core (AttrName(..))
2023-06-08 21:51:12 +02:00
-- import Web.Event.Event (type_, Event, EventType(..))
import Web.UIEvent.MouseEvent (MouseEvent)
2023-06-08 21:51:12 +02:00
columns :: forall (w :: Type) (i :: Type).
Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
columns classes = HH.div [ HP.classes (C.columns <> classes) ]
2023-06-08 21:51:12 +02:00
columns_ :: forall (w :: Type) (i :: Type). Array (HH.HTML w i) -> HH.HTML w i
columns_ = columns []
column :: forall (w :: Type) (i :: Type).
Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
column classes = HH.div [ HP.classes (C.column <> classes) ]
2023-06-08 21:51:12 +02:00
column_ :: forall (w :: Type) (i :: Type). Array (HH.HTML w i) -> HH.HTML w i
column_ = column []
h1 :: forall (w :: Type) (a :: Type). String -> HH.HTML w a
2023-07-08 01:50:11 +02:00
h1 title = HH.h1 [ HP.classes (C.title) ] [ HH.text title ]
2023-06-08 21:51:12 +02:00
h3 :: forall (w :: Type) (a :: Type). String -> HH.HTML w a
2023-07-09 14:26:47 +02:00
h3 title = HH.h3 [ HP.classes (C.title <> C.is5) ] [ HH.text title ]
zone_rr_title :: forall (w :: Type) (a :: Type). String -> HH.HTML w a
zone_rr_title title
= HH.h3 [ HP.classes (C.title <> C.is5 <> C.has_text_light <> C.has_background_dark) ]
[ HH.text title ]
2023-06-08 21:51:12 +02:00
subtitle :: forall (w :: Type) (a :: Type). String -> HH.HTML w a
subtitle title = HH.h2 [ HP.classes (C.subtitle <> C.is4) ] [ HH.text title ]
hdiv :: forall (w :: Type) (a :: Type). Array (HH.HTML w a) -> HH.HTML w a
hdiv = HH.div [ HP.classes [HH.ClassName "mt-5"] ]
2023-06-08 21:51:12 +02:00
--offcolumn :: forall (w :: Type) (a :: Type).
-- Int -> Int -> Array (HH.HTML w a) -> HH.HTML w a
--offcolumn 0 size = HH.div [ HP.classes [HH.ClassName ("mt-"<>show size)] ]
--offcolumn offset size
-- = column [ HH.ClassName ("is-offset-" <> (show offset) <> " is-" <> (show size)) ]
2024-02-07 04:00:15 +01:00
input_classes :: Array HH.ClassName
input_classes = C.input <> C.is_small <> C.is_info
2023-06-08 21:51:12 +02:00
table :: forall w i. HH.Node DHI.HTMLtable w i
table prop xs = HH.table ([ HP.classes $ C.table ] <> prop) xs
btn_classes :: Boolean -> Array HH.ClassName
btn_classes true = C.button <> C.is_small <> C.is_info
btn_classes false = C.button <> C.is_small <> C.is_danger
2023-06-08 22:00:53 +02:00
2023-07-10 18:24:50 +02:00
simple_table_header :: forall w i. HH.HTML w i
simple_table_header
= HH.thead_ [ HH.tr_ [ HH.th [ HP.style "width: 50px;" ] [ HH.text "Type" ]
, HH.th_ [ HH.text "Name" ]
2023-07-10 18:24:50 +02:00
, HH.th_ [ HH.text "TTL" ]
, HH.th_ [ HH.text "Target" ]
2023-07-10 18:24:50 +02:00
]
]
mx_table_header :: forall w i. HH.HTML w i
mx_table_header
= HH.thead_ [ HH.tr_ [ HH.th_ [ HH.text "Name" ]
2023-07-10 18:24:50 +02:00
, HH.th_ [ HH.text "TTL" ]
, HH.th_ [ HH.text "Priority" ]
, HH.th_ [ HH.text "Target" ]
2023-07-10 18:24:50 +02:00
]
]
srv_table_header :: forall w i. HH.HTML w i
srv_table_header
= HH.thead_ [ HH.tr_ [ HH.th_ [ HH.text "Name" ]
2023-07-10 18:24:50 +02:00
, HH.th_ [ HH.text "TTL" ]
, HH.th_ [ HH.text "Priority" ]
2023-07-12 01:38:21 +02:00
, HH.th_ [ HH.text "Protocol" ]
2023-07-10 18:24:50 +02:00
, HH.th_ [ HH.text "Weight" ]
, HH.th_ [ HH.text "Port" ]
, HH.th_ [ HH.text "Target" ]
2023-07-10 18:24:50 +02:00
]
]
txt_name :: forall w i. String -> HH.HTML w i
txt_name t
= HH.td [ rr_name_style ] [ rr_name_text ]
where
rr_name_style = HP.style "width: 80px;"
rr_name_text = HH.text t
2023-06-08 21:51:12 +02:00
2023-07-15 17:53:36 +02:00
-- | For textareas I don't use Bulma's "textarea" class since it doesn't allow to expand
-- | textareas horizontaly, which makes edition of TXT records painful.
textarea_classes :: Boolean -> Array HH.ClassName
textarea_classes true = C.input <> C.is_small <> C.is_info
textarea_classes false = C.input <> C.is_small <> C.is_danger
textarea :: forall w i. (String -> i) -> String -> Boolean -> HH.HTML w i
textarea action value validity
= HH.textarea
[ HE.onValueInput action
, HP.value value
, HP.placeholder "target"
, HP.classes $ textarea_classes validity
]
btn_modify :: forall w i. i -> HH.HTML w i
btn_modify action
= HH.button
[ HE.onClick \_ -> action
, HP.classes $ btn_classes true
] [ HH.text "modify" ]
btn_save :: forall w i. i -> HH.HTML w i
btn_save action
= HH.button
[ HE.onClick \_ -> action
, HP.classes $ btn_classes true
] [ HH.text "save" ]
btn_delete :: forall w i. (MouseEvent -> i) -> HH.HTML w i
btn_delete action
= HH.button
[ HE.onClick action
, HP.classes [ HH.ClassName "button is-small is-danger" ]
] [ HH.text "remove" ]
2024-02-07 04:00:15 +01:00
btn_add :: forall w i. i -> Boolean -> HH.HTML w i
btn_add action validity
= HH.button
2024-02-07 04:00:15 +01:00
[ HE.onClick \_ -> action
, HP.classes $ btn_classes validity
] [ HH.text "Add" ]
2023-06-08 21:51:12 +02:00
2024-01-21 05:33:10 +01:00
-- | Create a `level`, different components that should appear on the same horizontal line.
-- | First argument, elements that should appear on the left, second on the right.
level :: forall w i. Array (HH.HTML w i) -> Array (HH.HTML w i) -> HH.HTML w i
level left right = HH.nav [ HP.classes C.level ]
[ HH.div [ HP.classes C.level_left ] $ itemize left
, HH.div [ HP.classes C.level_right ] $ itemize right
]
where itemize = map (\v -> HH.div [ HP.classes C.level_item ] [v])
btn_add_new_rr :: forall w i. i -> String -> HH.HTML w i
btn_add_new_rr action title
= HH.button
[ HE.onClick \_ -> action
, HP.classes $ C.button <> C.is_small <> C.is_info
] [ HH.text title ]
2023-06-08 22:00:53 +02:00
2024-02-07 04:00:15 +01:00
btn :: forall w action. String -> action -> HH.HTML w action
btn title action
2023-06-08 22:00:53 +02:00
= HH.button
2024-02-07 04:00:15 +01:00
[ HE.onClick \_ -> action
, HP.classes $ btn_classes true
2023-06-08 22:00:53 +02:00
] [ HH.text title ]
2023-07-08 03:47:13 +02:00
render_input :: forall w i.
2024-02-07 04:00:15 +01:00
Boolean -> String -> String -> (String -> i) -> String -> (HP.IProp DHI.HTMLinput i) -> HH.HTML w i
render_input password id placeholder action value cond
2023-06-09 00:28:03 +02:00
= HH.input $
[ HE.onValueInput action
, HP.value value
, HP.placeholder placeholder
2024-02-07 04:00:15 +01:00
, HP.classes $ input_classes
2023-07-15 03:23:21 +02:00
, HP.id id
2023-06-09 00:28:03 +02:00
, cond
] <> case password of
false -> []
true -> [ HP.type_ HP.InputPassword ]
2023-07-08 03:47:13 +02:00
field_inner :: forall w i.
2024-02-07 04:00:15 +01:00
Boolean -> String -> String -> String -> (String -> i) -> String -> (HP.IProp DHI.HTMLinput i) -> HH.HTML w i
field_inner ispassword id title placeholder action value cond
2023-07-03 15:05:40 +02:00
= div_field
2023-07-08 03:47:13 +02:00
[ div_field_label
2024-02-07 04:00:15 +01:00
, div_field_content $ render_input ispassword id placeholder action value cond
2023-06-09 00:28:03 +02:00
]
2023-07-03 15:05:40 +02:00
where
div_field = HH.div [ HP.classes (C.field <> C.is_horizontal) ]
2023-07-08 03:47:13 +02:00
div_field_label
2023-07-08 01:50:11 +02:00
= HH.div [ HP.classes (C.field_label <> C.normal) ]
2023-07-15 03:23:21 +02:00
[HH.label [ HP.classes C.label, HP.for id ] [ HH.text title ]]
2023-07-03 15:05:40 +02:00
div_field_content content
2023-07-08 03:47:13 +02:00
= HH.div [ HP.classes C.field_body ]
2023-07-08 01:50:11 +02:00
[ HH.div [HP.classes C.field ]
[ HH.div [HP.classes C.control ] [ content ]
2023-07-03 15:05:40 +02:00
]
]
2023-06-09 00:28:03 +02:00
2023-07-08 03:47:13 +02:00
box_input :: forall w i.
2024-02-07 04:00:15 +01:00
String -> String -> String -> (String -> i) -> String -> (HP.IProp DHI.HTMLinput i) -> HH.HTML w i
box_input = field_inner false
2024-02-03 18:57:38 +01:00
2023-07-08 03:47:13 +02:00
box_password :: forall w i.
2024-02-07 04:00:15 +01:00
String -> String -> String -> (String -> i) -> String -> (HP.IProp DHI.HTMLinput i) -> HH.HTML w i
2023-07-03 15:05:40 +02:00
box_password = field_inner true
2023-06-09 00:28:03 +02:00
2023-07-08 04:00:32 +02:00
section_small :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
section_small = HH.section [ HP.classes (C.section <> C.is_small) ]
section_medium :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
section_medium = HH.section [ HP.classes (C.section <> C.medium) ]
2023-07-05 06:50:30 +02:00
field :: forall w i. Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
field classes = HH.div [ HP.classes (C.field <> classes) ]
2023-07-05 07:00:42 +02:00
2023-07-08 03:47:13 +02:00
new_domain_field :: forall w i.
(String -> i) -> String -> Array (HP.IProp DHI.HTMLselect i) -> Array String -> HH.HTML w i
2023-07-05 06:50:30 +02:00
new_domain_field inputaction text selectaction accepted_domains
2023-07-08 01:50:11 +02:00
= field C.has_addons
2023-07-05 06:50:30 +02:00
[ HH.p
2023-07-08 01:50:11 +02:00
[ HP.classes C.control ]
2023-07-05 06:50:30 +02:00
[ HH.input $
[ HE.onValueInput inputaction
, HP.placeholder "www"
, HP.value text
, HP.type_ HP.InputText
2023-07-08 01:50:11 +02:00
, HP.classes (C.is_primary <> C.input)
2023-07-05 06:50:30 +02:00
]
]
, HH.p
2023-07-08 01:50:11 +02:00
[ HP.classes C.control ]
2023-07-05 06:50:30 +02:00
[ select selectaction $ map option accepted_domains ]
, HH.p
2023-07-08 01:50:11 +02:00
[ HP.classes C.control ]
2023-07-05 06:50:30 +02:00
[ HH.button
[ HP.type_ HP.ButtonSubmit
2023-07-08 01:50:11 +02:00
, HP.classes C.button
2023-07-05 06:50:30 +02:00
]
[ HH.text "add a new domain!" ]
]
]
2023-06-13 20:17:27 +02:00
--box_button action value validity cond
-- = HH.label [ ]
2023-07-08 01:50:11 +02:00
-- [ HH.label [HP.classes C.label ] [ HH.text title ]
-- , HH.div [HP.classes C.control ]
2023-06-13 20:17:27 +02:00
-- [ render_input ispassword placeholder action value validity cond ]
-- ]
2023-07-22 15:44:32 +02:00
code :: forall w i. String -> HH.HTML w i
code str = HH.code_ [ HH.text str ]
text :: forall w i. String -> HH.HTML w i
text = HH.text
2023-06-08 21:51:12 +02:00
p :: forall w i. String -> HH.HTML w i
p str = HH.p_ [ HH.text str ]
2023-07-15 03:23:21 +02:00
p_ :: forall w i. Array HH.ClassName -> String -> HH.HTML w i
p_ classes str = HH.p [HP.classes classes] [ HH.text str ]
2023-06-08 21:51:12 +02:00
box :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
box = HH.div [HP.classes C.box]
2023-07-01 17:32:15 +02:00
option :: forall w i. String -> HH.HTML w i
option value = HH.option_ [HH.text value]
2023-07-02 00:05:38 +02:00
select :: forall w i. HH.Node DHI.HTMLselect w i
select action options
2023-07-08 01:50:11 +02:00
= HH.div [ HP.classes (C.select <> C.is_primary) ]
2023-07-02 00:05:38 +02:00
[ HH.select action options]
2023-07-05 06:50:30 +02:00
hero :: forall w i. String -> String -> HH.HTML w i
2023-07-12 13:06:36 +02:00
hero _title _subtitle
2023-07-08 01:50:11 +02:00
= HH.section [ HP.classes (C.hero <> C.is_info <> C.is_small) ]
[ HH.div [ HP.classes C.hero_body ]
2023-07-12 13:06:36 +02:00
[ HH.p [ HP.classes C.title ] [ HH.text _title ]
, HH.p [ HP.classes C.subtitle ] [ HH.text _subtitle ]
2023-07-05 06:50:30 +02:00
]
]
2023-07-15 16:30:02 +02:00
hero_danger :: forall w i. String -> String -> HH.HTML w i
hero_danger _title _subtitle
= HH.section [ HP.classes (C.hero <> C.is_danger <> C.is_small) ]
[ HH.div [ HP.classes C.hero_body ]
[ HH.p [ HP.classes C.title ] [ HH.text _title ]
, HH.p [ HP.classes C.subtitle ] [ HH.text _subtitle ]
]
]
2023-07-05 06:50:30 +02:00
header :: forall w i. String -> String -> HH.HTML w i
header = hero
container :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
2023-07-08 01:50:11 +02:00
container = HH.div [HP.classes (C.container <> C.is_info)]
2023-07-08 00:22:23 +02:00
data_target :: forall r i. String -> HP.IProp r i
data_target = HP.attr (AttrName "data-target")
modal :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
modal = HH.div [HP.classes (C.modal <> C.is_active)]
modal_background :: forall w i. HH.HTML w i
modal_background = HH.div [HP.classes C.modal_background] []
modal_card :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
modal_card = HH.div [HP.classes C.modal_card]
modal_header :: forall w i. String -> HH.HTML w i
modal_header title = HH.header [HP.classes C.modal_card_head]
[ HH.p [HP.classes C.modal_card_title] [HH.text title]
]
modal_body :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
2024-01-21 05:33:10 +01:00
modal_body = HH.section [HP.classes C.modal_card_body]
modal_foot :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
modal_foot = HH.div [HP.classes C.modal_card_foot]
modal_cancel_button :: forall w i. i -> HH.HTML w i
modal_cancel_button action
= HH.button [ HP.classes C.button
, HE.onClick \_ -> action
] [HH.text "Cancel"]
2023-07-08 01:50:11 +02:00
modal_domain_delete :: forall w i. String -> HH.HTML w i
modal_domain_delete domain =
modal
[ modal_background
, modal_card [modal_header "Deleting a domain", modal_body]
2023-07-08 01:50:11 +02:00
, modal_foot [modal_delete_button, modal_cancel_button]
]
where
-- modal_header = HH.header [HP.classes C.modal_card_head]
-- [ HH.p [HP.classes C.modal_card_title] [HH.text "Deleting a domain"]
-- --, HH.button [HP.classes C.delete, ARIA.label "close"] []
-- ]
2023-07-08 01:50:11 +02:00
modal_body = HH.section [HP.classes C.modal_card_body] [ warning_message ]
-- modal_foot = HH.div [HP.classes C.modal_card_foot]
2023-07-08 01:50:11 +02:00
modal_delete_button = HH.button [HP.classes (C.button <> C.is_success)] [HH.text "Delete the domain."]
modal_cancel_button = HH.button [HP.classes C.button] [HH.text "Cancel"]
warning_message
= HH.p [] [ HH.text $ "You are about to delete your domain '"
<> domain
<> "'. Are you sure you want to do this? This is "
, HH.strong_ [ HH.text "irreversible" ]
, HH.text "."
]
2023-07-09 14:26:47 +02:00
2023-07-23 03:29:19 +02:00
strong :: forall w i. String -> HH.HTML w i
strong str = HH.strong_ [ HH.text str ]
2023-07-09 14:26:47 +02:00
hr :: forall w i. HH.HTML w i
hr = HH.hr_
2024-02-03 18:57:38 +01:00
tile :: forall w i. Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
tile classes = HH.div [HP.classes (C.tile <> classes)]
tile_ :: forall w i. Array (HH.HTML w i) -> HH.HTML w i
tile_ = tile []
tile_danger :: forall w i. Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
tile_danger classes = tile (C.is_danger <> C.notification <> classes)
tile_warning :: forall w i. Array HH.ClassName -> Array (HH.HTML w i) -> HH.HTML w i
tile_warning classes = tile (C.is_warning <> C.notification <> classes)
article_ :: forall w i. Array HH.ClassName -> HH.HTML w i -> HH.HTML w i -> HH.HTML w i
article_ classes head body = HH.article [HP.classes (C.message <> classes)]
[ HH.div [HP.classes C.message_header] [head]
, HH.div [HP.classes C.message_body ] [body]
]
article :: forall w i. HH.HTML w i -> HH.HTML w i -> HH.HTML w i
article head body = article_ [] head body
error_message :: forall w i. HH.HTML w i -> HH.HTML w i -> HH.HTML w i
error_message head body = article_ C.is_danger head body