save a copy of the database on start of new season
This commit is contained in:
parent
2bf8d15bd4
commit
39646f3fa7
|
@ -43,12 +43,21 @@ module Mtlstats.Actions
|
||||||
, backHome
|
, backHome
|
||||||
, scrollUp
|
, scrollUp
|
||||||
, scrollDown
|
, scrollDown
|
||||||
|
, saveDatabase
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Control.Monad.Trans.State (modify)
|
import Control.Monad.IO.Class (liftIO)
|
||||||
|
import Control.Monad.Trans.State (gets, modify)
|
||||||
|
import Data.Aeson (encodeFile)
|
||||||
import Data.Maybe (fromMaybe)
|
import Data.Maybe (fromMaybe)
|
||||||
import Lens.Micro ((^.), (&), (.~), (%~))
|
import Lens.Micro ((^.), (&), (.~), (%~))
|
||||||
|
import System.EasyFile
|
||||||
|
( createDirectoryIfMissing
|
||||||
|
, getAppUserDataDirectory
|
||||||
|
, (</>)
|
||||||
|
)
|
||||||
|
|
||||||
|
import Mtlstats.Config
|
||||||
import Mtlstats.Types
|
import Mtlstats.Types
|
||||||
import Mtlstats.Util
|
import Mtlstats.Util
|
||||||
|
|
||||||
|
@ -198,3 +207,13 @@ scrollUp = scrollOffset %~ max 0 . pred
|
||||||
-- | Scrolls the display down
|
-- | Scrolls the display down
|
||||||
scrollDown :: ProgState -> ProgState
|
scrollDown :: ProgState -> ProgState
|
||||||
scrollDown = scrollOffset %~ succ
|
scrollDown = scrollOffset %~ succ
|
||||||
|
|
||||||
|
-- | Saves the database
|
||||||
|
saveDatabase :: String -> Action ()
|
||||||
|
saveDatabase fn = do
|
||||||
|
db <- gets (^.database)
|
||||||
|
liftIO $ do
|
||||||
|
dir <- getAppUserDataDirectory appName
|
||||||
|
let dbFile = dir </> fn
|
||||||
|
createDirectoryIfMissing True dir
|
||||||
|
encodeFile dbFile db
|
||||||
|
|
|
@ -35,19 +35,11 @@ module Mtlstats.Menu (
|
||||||
editMenu
|
editMenu
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Control.Monad.IO.Class (liftIO)
|
|
||||||
import Control.Monad.Trans.State (gets, modify)
|
import Control.Monad.Trans.State (gets, modify)
|
||||||
import Data.Aeson (encodeFile)
|
|
||||||
import Data.Char (toUpper)
|
import Data.Char (toUpper)
|
||||||
import qualified Data.Map as M
|
import qualified Data.Map as M
|
||||||
import Data.Maybe (mapMaybe)
|
import Data.Maybe (mapMaybe)
|
||||||
import Lens.Micro ((^.), (?~))
|
import Lens.Micro ((^.), (?~))
|
||||||
import Lens.Micro.Extras (view)
|
|
||||||
import System.EasyFile
|
|
||||||
( createDirectoryIfMissing
|
|
||||||
, getAppUserDataDirectory
|
|
||||||
, (</>)
|
|
||||||
)
|
|
||||||
import qualified UI.NCurses as C
|
import qualified UI.NCurses as C
|
||||||
|
|
||||||
import Mtlstats.Actions
|
import Mtlstats.Actions
|
||||||
|
@ -116,14 +108,8 @@ mainMenu = Menu "*** MAIN MENU ***" True
|
||||||
modify startNewGame >> return True
|
modify startNewGame >> return True
|
||||||
, MenuItem '3' "Edit" $
|
, MenuItem '3' "Edit" $
|
||||||
modify edit >> return True
|
modify edit >> return True
|
||||||
, MenuItem 'X' "Exit" $ do
|
, MenuItem 'X' "Exit" $
|
||||||
db <- gets $ view database
|
saveDatabase dbFname >> return False
|
||||||
liftIO $ do
|
|
||||||
dir <- getAppUserDataDirectory appName
|
|
||||||
let dbFile = dir </> dbFname
|
|
||||||
createDirectoryIfMissing True dir
|
|
||||||
encodeFile dbFile db
|
|
||||||
return False
|
|
||||||
]
|
]
|
||||||
|
|
||||||
-- | The new season menu
|
-- | The new season menu
|
||||||
|
|
|
@ -48,7 +48,7 @@ module Mtlstats.Prompt (
|
||||||
import Control.Monad (when)
|
import Control.Monad (when)
|
||||||
import Control.Monad.Extra (whenJust)
|
import Control.Monad.Extra (whenJust)
|
||||||
import Control.Monad.Trans.State (gets, modify)
|
import Control.Monad.Trans.State (gets, modify)
|
||||||
import Data.Char (isDigit, toUpper)
|
import Data.Char (isAlphaNum, isDigit, toUpper)
|
||||||
import Lens.Micro ((^.), (&), (.~), (?~), (%~))
|
import Lens.Micro ((^.), (&), (.~), (?~), (%~))
|
||||||
import Lens.Micro.Extras (view)
|
import Lens.Micro.Extras (view)
|
||||||
import Text.Read (readMaybe)
|
import Text.Read (readMaybe)
|
||||||
|
@ -171,7 +171,18 @@ numPromptWithFallback pStr fallback act = Prompt
|
||||||
-- | Prompts the user for a filename to save a backup of the database
|
-- | Prompts the user for a filename to save a backup of the database
|
||||||
-- to
|
-- to
|
||||||
newSeasonPrompt :: Prompt
|
newSeasonPrompt :: Prompt
|
||||||
newSeasonPrompt = undefined
|
newSeasonPrompt = prompt
|
||||||
|
{ promptProcessChar = \ch str -> if isAlphaNum ch
|
||||||
|
then str ++ [toUpper ch]
|
||||||
|
else str
|
||||||
|
}
|
||||||
|
where
|
||||||
|
prompt = strPrompt "Filename to save database: " $ \fn ->
|
||||||
|
if null fn
|
||||||
|
then modify backHome
|
||||||
|
else do
|
||||||
|
saveDatabase $ fn ++ ".json"
|
||||||
|
modify $ progMode .~ NewSeason True
|
||||||
|
|
||||||
-- | Builds a selection prompt
|
-- | Builds a selection prompt
|
||||||
selectPrompt :: SelectParams a -> Prompt
|
selectPrompt :: SelectParams a -> Prompt
|
||||||
|
|
Loading…
Reference in New Issue
Block a user