2019-02-18 01:25:07 +00:00
|
|
|
/// Layout items for PrayerTracker
|
|
|
|
module PrayerTracker.Views.Layout
|
|
|
|
|
|
|
|
open Giraffe.GiraffeViewEngine
|
|
|
|
open PrayerTracker
|
|
|
|
open PrayerTracker.ViewModels
|
|
|
|
open System
|
2019-02-27 07:51:24 +00:00
|
|
|
open System.Globalization
|
2019-02-18 01:25:07 +00:00
|
|
|
|
2019-02-27 07:51:24 +00:00
|
|
|
|
|
|
|
/// Get the two-character language code for the current request
|
|
|
|
let langCode () = match CultureInfo.CurrentCulture.Name.StartsWith "es" with true -> "es" | _ -> "en"
|
|
|
|
|
|
|
|
|
2019-02-18 01:25:07 +00:00
|
|
|
/// Navigation items
|
|
|
|
module Navigation =
|
|
|
|
|
|
|
|
/// Top navigation bar
|
|
|
|
let top m =
|
|
|
|
let s = PrayerTracker.Views.I18N.localizer.Force ()
|
|
|
|
let menuSpacer = rawText " "
|
|
|
|
let leftLinks = [
|
|
|
|
match m.user with
|
|
|
|
| Some u ->
|
2019-09-24 01:40:47 +00:00
|
|
|
li [ _class "dropdown" ] [
|
2019-02-18 01:25:07 +00:00
|
|
|
a [ _class "dropbtn"; _role "button"; _aria "label" s.["Requests"].Value; _title s.["Requests"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "question_answer"; space; locStr s.["Requests"]; space; icon "keyboard_arrow_down" ]
|
2019-02-18 01:25:07 +00:00
|
|
|
div [ _class "dropdown-content"; _role "menu" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/prayer-requests" ] [ icon "compare_arrows"; menuSpacer; locStr s.["Maintain"] ]
|
|
|
|
a [ _href "/web/prayer-requests/view" ] [ icon "list"; menuSpacer; locStr s.["View List"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
2019-09-24 01:40:47 +00:00
|
|
|
li [ _class "dropdown" ] [
|
2019-02-18 01:25:07 +00:00
|
|
|
a [ _class "dropbtn"; _role "button"; _aria "label" s.["Group"].Value; _title s.["Group"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "group"; space; locStr s.["Group"]; space; icon "keyboard_arrow_down" ]
|
2019-02-18 01:25:07 +00:00
|
|
|
div [ _class "dropdown-content"; _role "menu" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/small-group/members" ] [ icon "email"; menuSpacer; locStr s.["Maintain Group Members"] ]
|
|
|
|
a [ _href "/web/small-group/announcement" ] [ icon "send"; menuSpacer; locStr s.["Send Announcement"] ]
|
|
|
|
a [ _href "/web/small-group/preferences" ] [ icon "build"; menuSpacer; locStr s.["Change Preferences"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
match u.isAdmin with
|
|
|
|
| true ->
|
2019-09-24 01:40:47 +00:00
|
|
|
li [ _class "dropdown" ] [
|
2019-02-18 01:25:07 +00:00
|
|
|
a [ _class "dropbtn"; _role "button"; _aria "label" s.["Administration"].Value; _title s.["Administration"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "settings"; space; locStr s.["Administration"]; space; icon "keyboard_arrow_down" ]
|
2019-02-18 01:25:07 +00:00
|
|
|
div [ _class "dropdown-content"; _role "menu" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/churches" ] [ icon "home"; menuSpacer; locStr s.["Churches"] ]
|
|
|
|
a [ _href "/web/small-groups" ] [ icon "send"; menuSpacer; locStr s.["Groups"] ]
|
|
|
|
a [ _href "/web/users" ] [ icon "build"; menuSpacer; locStr s.["Users"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
| false -> ()
|
|
|
|
| None ->
|
|
|
|
match m.group with
|
|
|
|
| Some _ ->
|
2019-09-24 01:40:47 +00:00
|
|
|
li [] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/prayer-requests/view"
|
2019-02-18 01:25:07 +00:00
|
|
|
_aria "label" s.["View Request List"].Value
|
|
|
|
_title s.["View Request List"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "list"; space; locStr s.["View Request List"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
| None ->
|
2019-09-24 01:40:47 +00:00
|
|
|
li [ _class "dropdown" ] [
|
2019-02-18 01:25:07 +00:00
|
|
|
a [ _class "dropbtn"; _role "button"; _aria "label" s.["Log On"].Value; _title s.["Log On"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "security"; space; locStr s.["Log On"]; space; icon "keyboard_arrow_down" ]
|
2019-02-18 01:25:07 +00:00
|
|
|
div [ _class "dropdown-content"; _role "menu" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/user/log-on" ] [ icon "person"; menuSpacer; locStr s.["User"] ]
|
|
|
|
a [ _href "/web/small-group/log-on" ] [ icon "group"; menuSpacer; locStr s.["Group"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
2019-09-24 01:40:47 +00:00
|
|
|
li [] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/prayer-requests/lists"
|
2019-02-18 01:25:07 +00:00
|
|
|
_aria "label" s.["View Request List"].Value
|
|
|
|
_title s.["View Request List"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "list"; space; locStr s.["View Request List"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
2019-09-24 01:40:47 +00:00
|
|
|
li [] [
|
2019-02-27 07:51:24 +00:00
|
|
|
a [ _href (sprintf "https://docs.prayer.bitbadger.solutions/%s" <| langCode ())
|
|
|
|
_aria "label" s.["Help"].Value;
|
|
|
|
_title s.["View Help"].Value
|
|
|
|
_target "_blank"
|
|
|
|
]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "help"; space; locStr s.["Help"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
let rightLinks =
|
|
|
|
match m.group with
|
|
|
|
| Some _ ->
|
|
|
|
[ match m.user with
|
|
|
|
| Some _ ->
|
2019-09-24 01:40:47 +00:00
|
|
|
li [] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/user/password"
|
2019-02-18 01:25:07 +00:00
|
|
|
_aria "label" s.["Change Your Password"].Value
|
|
|
|
_title s.["Change Your Password"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "lock"; space; locStr s.["Change Your Password"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
| None -> ()
|
2019-09-24 01:40:47 +00:00
|
|
|
li [] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/log-off"; _aria "label" s.["Log Off"].Value; _title s.["Log Off"].Value ]
|
2019-03-15 04:30:28 +00:00
|
|
|
[ icon "power_settings_new"; space; locStr s.["Log Off"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
| None -> List.empty
|
|
|
|
header [ _class "pt-title-bar" ] [
|
|
|
|
section [ _class "pt-title-bar-left" ] [
|
|
|
|
span [ _class "pt-title-bar-home" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/"; _title s.["Home"].Value ] [ locStr s.["PrayerTracker"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
ul [] leftLinks
|
|
|
|
]
|
|
|
|
section [ _class "pt-title-bar-center" ] []
|
|
|
|
section [ _class "pt-title-bar-right"; _role "toolbar" ] [
|
|
|
|
ul [] rightLinks
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
/// Identity bar (below top nav)
|
|
|
|
let identity m =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
header [ _id "pt-language" ] [
|
|
|
|
div [] [
|
2019-09-24 01:40:47 +00:00
|
|
|
span [ _class "u" ] [ locStr s.["Language"]; rawText ": " ]
|
2019-02-27 07:51:24 +00:00
|
|
|
match langCode () with
|
|
|
|
| "es" ->
|
2019-09-24 01:40:47 +00:00
|
|
|
locStr s.["Spanish"]
|
|
|
|
rawText " • "
|
|
|
|
a [ _href "/web/language/en" ] [ locStr s.["Change to English"] ]
|
2019-02-27 07:51:24 +00:00
|
|
|
| _ ->
|
2019-09-24 01:40:47 +00:00
|
|
|
locStr s.["English"]
|
|
|
|
rawText " • "
|
|
|
|
a [ _href "/web/language/es" ] [ locStr s.["Cambie a Español"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
match m.group with
|
|
|
|
| Some g ->
|
|
|
|
[ match m.user with
|
|
|
|
| Some u ->
|
2019-09-24 01:40:47 +00:00
|
|
|
span [ _class "u" ] [ locStr s.["Currently Logged On"] ]
|
|
|
|
rawText " "
|
|
|
|
icon "person"
|
|
|
|
strong [] [ str u.fullName ]
|
|
|
|
rawText " "
|
2019-02-18 01:25:07 +00:00
|
|
|
| None ->
|
2019-09-24 01:40:47 +00:00
|
|
|
locStr s.["Logged On as a Member of"]
|
|
|
|
rawText " "
|
|
|
|
icon "group"
|
|
|
|
space
|
2019-02-18 01:25:07 +00:00
|
|
|
match m.user with
|
2019-09-24 01:40:47 +00:00
|
|
|
| Some _ -> a [ _href "/web/small-group" ] [ strong [] [ str g.name ] ]
|
|
|
|
| None -> strong [] [ str g.name ]
|
|
|
|
rawText " "
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
| None -> []
|
|
|
|
|> div []
|
|
|
|
]
|
|
|
|
|
2019-02-27 07:51:24 +00:00
|
|
|
|
2019-02-18 01:25:07 +00:00
|
|
|
/// Content layouts
|
|
|
|
module Content =
|
|
|
|
/// Content layout that tops at 60rem
|
|
|
|
let standard = div [ _class "pt-content" ]
|
|
|
|
|
|
|
|
/// Content layout that uses the full width of the browser window
|
|
|
|
let wide = div [ _class "pt-content pt-full-width" ]
|
|
|
|
|
|
|
|
|
|
|
|
/// Separator for parts of the title
|
|
|
|
let private titleSep = rawText " « "
|
|
|
|
|
|
|
|
let private commonHead =
|
|
|
|
[ meta [ _name "viewport"; _content "width=device-width, initial-scale=1" ]
|
|
|
|
meta [ _name "generator"; _content "Giraffe" ]
|
|
|
|
link [ _rel "stylesheet"; _href "https://fonts.googleapis.com/icon?family=Material+Icons" ]
|
|
|
|
link [ _rel "stylesheet"; _href "/css/app.css" ]
|
|
|
|
script [ _src "/js/app.js" ] []
|
|
|
|
]
|
|
|
|
|
|
|
|
/// Render the <head> portion of the page
|
|
|
|
let private htmlHead m pageTitle =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
head [] [
|
2019-09-24 01:40:47 +00:00
|
|
|
meta [ _charset "UTF-8" ]
|
|
|
|
title [] [ locStr pageTitle; titleSep; locStr s.["PrayerTracker"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
yield! commonHead
|
|
|
|
for cssFile in m.style do
|
2019-09-24 01:40:47 +00:00
|
|
|
link [ _rel "stylesheet"; _href (sprintf "/css/%s.css" cssFile); _type "text/css" ]
|
2019-02-18 01:25:07 +00:00
|
|
|
for jsFile in m.script do
|
2019-09-24 01:40:47 +00:00
|
|
|
script [ _src (sprintf "/js/%s.js" jsFile) ] []
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
/// Render a link to the help page for the current page
|
|
|
|
let private helpLink link =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
sup [] [
|
2019-02-27 07:51:24 +00:00
|
|
|
a [ _href link
|
2019-02-18 01:25:07 +00:00
|
|
|
_title s.["Click for Help on This Page"].Value
|
|
|
|
_onclick (sprintf "return PT.showHelp('%s')" link) ] [
|
|
|
|
icon "help_outline"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
/// Render the page title, and optionally a help link
|
|
|
|
let private renderPageTitle m pageTitle =
|
|
|
|
h2 [ _id "pt-page-title" ] [
|
2019-09-24 01:40:47 +00:00
|
|
|
match m.helpLink with Some link -> Help.fullLink (langCode ()) link |> helpLink | None -> ()
|
|
|
|
locStr pageTitle
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
/// Render the messages that may need to be displayed to the user
|
|
|
|
let private messages m =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
m.messages
|
|
|
|
|> List.map (fun msg ->
|
|
|
|
table [ _class (sprintf "pt-msg %s" (msg.level.ToLower ())) ] [
|
|
|
|
tr [] [
|
|
|
|
td [] [
|
|
|
|
match msg.level with
|
|
|
|
| "Info" -> ()
|
|
|
|
| lvl ->
|
2019-09-24 01:40:47 +00:00
|
|
|
strong [] [ locStr s.[lvl] ]
|
|
|
|
rawText " » "
|
|
|
|
rawText msg.text.Value
|
2019-02-18 01:25:07 +00:00
|
|
|
match msg.description with
|
|
|
|
| Some desc ->
|
2019-09-24 01:40:47 +00:00
|
|
|
br []
|
|
|
|
div [ _class "description" ] [ rawText desc.Value ]
|
2019-02-18 01:25:07 +00:00
|
|
|
| None -> ()
|
|
|
|
]
|
|
|
|
]
|
|
|
|
])
|
|
|
|
|
|
|
|
/// Render the <footer> at the bottom of the page
|
|
|
|
let private htmlFooter m =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
let imgText = sprintf "%O %O" s.["PrayerTracker"] s.["from Bit Badger Solutions"]
|
|
|
|
let resultTime = TimeSpan(DateTime.Now.Ticks - m.requestStart).TotalSeconds
|
|
|
|
footer [] [
|
|
|
|
div [ _id "pt-legal" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/legal/privacy-policy" ] [ locStr s.["Privacy Policy"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
rawText " • "
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/legal/terms-of-service" ] [ locStr s.["Terms of Service"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
rawText " • "
|
|
|
|
a [ _href "https://github.com/bit-badger/PrayerTracker"
|
|
|
|
_title s.["View source code and get technical support"].Value
|
|
|
|
_target "_blank"
|
|
|
|
_rel "noopener" ] [
|
2019-03-15 04:30:28 +00:00
|
|
|
locStr s.["Source & Support"]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
div [ _id "pt-footer" ] [
|
2019-06-15 00:05:37 +00:00
|
|
|
a [ _href "/web/"; _style "line-height:28px;" ] [
|
2019-02-18 01:25:07 +00:00
|
|
|
img [ _src (sprintf "/img/%O.png" s.["footer_en"]); _alt imgText; _title imgText ]
|
|
|
|
]
|
2019-03-15 04:30:28 +00:00
|
|
|
str m.version
|
2019-02-18 01:25:07 +00:00
|
|
|
space
|
|
|
|
i [ _title s.["This page loaded in {0:N3} seconds", resultTime].Value; _class "material-icons md-18" ] [
|
2019-03-15 04:30:28 +00:00
|
|
|
str "schedule"
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
/// The standard layout for PrayerTracker
|
2019-09-24 01:40:47 +00:00
|
|
|
let standard m pageTitle (content : XmlNode) =
|
2019-02-18 01:25:07 +00:00
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
let ttl = s.[pageTitle]
|
|
|
|
html [ _lang "" ] [
|
|
|
|
htmlHead m ttl
|
|
|
|
body [] [
|
|
|
|
Navigation.top m
|
|
|
|
div [ _id "pt-body" ] [
|
2019-09-24 01:40:47 +00:00
|
|
|
Navigation.identity m
|
|
|
|
renderPageTitle m ttl
|
2019-02-18 01:25:07 +00:00
|
|
|
yield! messages m
|
2019-09-24 01:40:47 +00:00
|
|
|
content
|
|
|
|
htmlFooter m
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
/// A layout with nothing but a title and content
|
|
|
|
let bare pageTitle content =
|
|
|
|
let s = I18N.localizer.Force ()
|
|
|
|
let ttl = s.[pageTitle]
|
|
|
|
html [ _lang "" ] [
|
|
|
|
head [] [
|
|
|
|
meta [ _charset "UTF-8" ]
|
2019-03-15 04:30:28 +00:00
|
|
|
title [] [ locStr ttl; titleSep; locStr s.["PrayerTracker"] ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|
2019-09-24 01:40:47 +00:00
|
|
|
body [] [ content ]
|
2019-02-18 01:25:07 +00:00
|
|
|
]
|