mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Streamline form and input field
This commit is contained in:
parent
c8683743d0
commit
5a2e28415a
@ -1636,8 +1636,10 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
format: calevent
|
format: calevent
|
||||||
next:
|
next:
|
||||||
type: integer
|
type: array
|
||||||
format: date-time
|
items:
|
||||||
|
type: integer
|
||||||
|
format: date-time
|
||||||
CalEventCheck:
|
CalEventCheck:
|
||||||
description: |
|
description: |
|
||||||
A calendar event.
|
A calendar event.
|
||||||
|
@ -31,10 +31,12 @@ object CalEventCheckRoutes {
|
|||||||
Timestamp.current[F].map { now =>
|
Timestamp.current[F].map { now =>
|
||||||
CalEvent.parse(str) match {
|
CalEvent.parse(str) match {
|
||||||
case Right(ev) =>
|
case Right(ev) =>
|
||||||
val next = ev.nextElapse(now.toUtcDateTime).map(Timestamp.atUtc)
|
val next = ev
|
||||||
|
.nextElapses(now.toUtcDateTime, 2)
|
||||||
|
.map(Timestamp.atUtc)
|
||||||
CalEventCheckResult(true, "Valid.", ev.some, next)
|
CalEventCheckResult(true, "Valid.", ev.some, next)
|
||||||
case Left(err) =>
|
case Left(err) =>
|
||||||
CalEventCheckResult(false, err, None, None)
|
CalEventCheckResult(false, err, None, Nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
module Comp.CalEventInput exposing
|
module Comp.CalEventInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
, from
|
|
||||||
, init
|
, init
|
||||||
|
, initialSchedule
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
)
|
)
|
||||||
@ -42,49 +42,26 @@ type Msg
|
|||||||
| CheckInputMsg (Result Http.Error CalEventCheckResult)
|
| CheckInputMsg (Result Http.Error CalEventCheckResult)
|
||||||
|
|
||||||
|
|
||||||
init : Model
|
initialSchedule : String
|
||||||
init =
|
initialSchedule =
|
||||||
{ year = "*"
|
"*-*-01 00:00"
|
||||||
, month = "*"
|
|
||||||
, day = "1"
|
|
||||||
, hour = "0"
|
|
||||||
, minute = "0"
|
|
||||||
, weekday = Nothing
|
|
||||||
, event = Nothing
|
|
||||||
, checkResult = Nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
from : String -> Maybe Model
|
init : Flags -> ( Model, Cmd Msg )
|
||||||
from event =
|
init flags =
|
||||||
case String.split " " event of
|
let
|
||||||
date :: time :: [] ->
|
model =
|
||||||
let
|
{ year = "*"
|
||||||
dateParts =
|
, month = "*"
|
||||||
String.split "-" date
|
, day = "1"
|
||||||
|
, hour = "0"
|
||||||
timeParts =
|
, minute = "0"
|
||||||
String.split ":" time
|
, weekday = Nothing
|
||||||
|
, event = Nothing
|
||||||
allParts =
|
, checkResult = Nothing
|
||||||
dateParts ++ timeParts
|
}
|
||||||
in
|
in
|
||||||
case allParts of
|
( model, checkInput flags model )
|
||||||
y :: m :: d :: h :: min :: [] ->
|
|
||||||
Just
|
|
||||||
{ init
|
|
||||||
| year = y
|
|
||||||
, month = m
|
|
||||||
, day = d
|
|
||||||
, hour = h
|
|
||||||
, minute = min
|
|
||||||
}
|
|
||||||
|
|
||||||
_ ->
|
|
||||||
Nothing
|
|
||||||
|
|
||||||
_ ->
|
|
||||||
Nothing
|
|
||||||
|
|
||||||
|
|
||||||
toEvent : Model -> String
|
toEvent : Model -> String
|
||||||
@ -315,11 +292,12 @@ view extraClasses model =
|
|||||||
[ text "Next: "
|
[ text "Next: "
|
||||||
]
|
]
|
||||||
, dd []
|
, dd []
|
||||||
[ Maybe.andThen .next model.checkResult
|
(Maybe.map .next model.checkResult
|
||||||
|> Maybe.map Util.Time.formatDateTime
|
|> Maybe.withDefault []
|
||||||
|> Maybe.withDefault ""
|
|> List.map Util.Time.formatDateTime
|
||||||
|> text
|
|> List.map text
|
||||||
]
|
|> List.intersperse (br [] [])
|
||||||
|
)
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -18,7 +18,7 @@ import Comp.IntField
|
|||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck, onClick, onInput)
|
import Html.Events exposing (onCheck, onClick)
|
||||||
import Http
|
import Http
|
||||||
import Util.Http
|
import Util.Http
|
||||||
import Util.Tag
|
import Util.Tag
|
||||||
@ -62,13 +62,12 @@ initCmd flags =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
initialSchedule : String
|
|
||||||
initialSchedule =
|
|
||||||
"*-*-1/7 12:00"
|
|
||||||
|
|
||||||
|
|
||||||
init : Flags -> ( Model, Cmd Msg )
|
init : Flags -> ( Model, Cmd Msg )
|
||||||
init flags =
|
init flags =
|
||||||
|
let
|
||||||
|
( sm, sc ) =
|
||||||
|
Comp.CalEventInput.init flags
|
||||||
|
in
|
||||||
( { settings = Api.Model.NotificationSettings.empty
|
( { settings = Api.Model.NotificationSettings.empty
|
||||||
, connectionModel =
|
, connectionModel =
|
||||||
Comp.Dropdown.makeSingle
|
Comp.Dropdown.makeSingle
|
||||||
@ -82,13 +81,14 @@ init flags =
|
|||||||
, remindDays = Just 1
|
, remindDays = Just 1
|
||||||
, remindDaysModel = Comp.IntField.init (Just 1) Nothing True "Remind Days"
|
, remindDaysModel = Comp.IntField.init (Just 1) Nothing True "Remind Days"
|
||||||
, enabled = False
|
, enabled = False
|
||||||
, schedule = initialSchedule
|
, schedule = Comp.CalEventInput.initialSchedule
|
||||||
, scheduleModel =
|
, scheduleModel = sm
|
||||||
Comp.CalEventInput.from initialSchedule
|
|
||||||
|> Maybe.withDefault Comp.CalEventInput.init
|
|
||||||
, formError = Nothing
|
, formError = Nothing
|
||||||
}
|
}
|
||||||
, initCmd flags
|
, Cmd.batch
|
||||||
|
[ initCmd flags
|
||||||
|
, Cmd.map CalEventMsg sc
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -277,7 +277,9 @@ view extraClasses model =
|
|||||||
, Html.map CalEventMsg
|
, Html.map CalEventMsg
|
||||||
(Comp.CalEventInput.view "" model.scheduleModel)
|
(Comp.CalEventInput.view "" model.scheduleModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "Specify how often and when this task should run."
|
[ text "Specify how often and when this task should run. "
|
||||||
|
, text "Use English 3-letter weekdays. Either a single value, "
|
||||||
|
, text "a list or a '*' (meaning all) is allowed for each part."
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div [ class "ui divider" ] []
|
, div [ class "ui divider" ] []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user