Files
docspell/modules/webapp/src/main/elm/Data/SourceState.elm
2021-09-21 22:35:38 +02:00

49 lines
678 B
Elm

{-
Copyright 2020 Eike K. & Contributors
SPDX-License-Identifier: AGPL-3.0-or-later
-}
module Data.SourceState exposing
( SourceState(..)
, all
, fromString
, toString
)
type SourceState
= Active
| Disabled
fromString : String -> Maybe SourceState
fromString str =
case String.toLower str of
"active" ->
Just Active
"disabled" ->
Just Disabled
_ ->
Nothing
all : List SourceState
all =
[ Active
, Disabled
]
toString : SourceState -> String
toString dir =
case dir of
Active ->
"Active"
Disabled ->
"Disabled"