1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 21:13:07 +03:00
guide/src/Types.hs

1043 lines
32 KiB
Haskell
Raw Normal View History

2016-03-11 16:07:22 +03:00
{-# LANGUAGE
TemplateHaskell,
MultiParamTypeClasses,
FunctionalDependencies,
FlexibleContexts,
2016-03-11 16:07:22 +03:00
FlexibleInstances,
RecordWildCards,
TypeFamilies,
OverloadedStrings,
RankNTypes,
2016-04-03 23:57:01 +03:00
TupleSections,
2016-03-11 16:07:22 +03:00
NoImplicitPrelude
#-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
2016-03-11 16:07:22 +03:00
module Types
(
Trait(..),
ItemKind(..),
hackageName,
2016-03-11 16:07:22 +03:00
Item(..),
group_,
pros,
2016-03-24 21:16:14 +03:00
prosDeleted,
2016-03-11 16:07:22 +03:00
cons,
2016-03-24 21:16:14 +03:00
consDeleted,
2016-03-17 02:52:40 +03:00
ecosystem,
2016-03-11 16:07:22 +03:00
link,
kind,
Hue(..),
hueToDarkColor,
hueToLightColor,
Category(..),
title,
groups,
items,
2016-03-24 20:55:17 +03:00
itemsDeleted,
2016-03-19 21:36:21 +03:00
categorySlug,
2016-03-11 16:07:22 +03:00
GlobalState(..),
categories,
2016-03-24 20:32:42 +03:00
categoriesDeleted,
2016-04-03 23:57:01 +03:00
pendingEdits,
editIdCounter,
2016-03-11 16:07:22 +03:00
-- * Overloaded things
2016-03-11 16:07:22 +03:00
uid,
hasUid,
2016-03-11 16:07:22 +03:00
content,
name,
description,
notes,
created,
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
-- * Edits
Edit(..),
isVacuousEdit,
EditDetails(..),
2016-03-11 16:07:22 +03:00
-- * acid-state methods
-- ** query
GetGlobalState(..),
GetCategories(..),
2016-03-19 02:40:00 +03:00
GetCategory(..), GetCategoryMaybe(..),
2016-03-11 16:07:22 +03:00
GetCategoryByItem(..),
GetItem(..),
GetTrait(..),
-- ** add
AddCategory(..),
AddItem(..),
AddPro(..),
AddCon(..),
-- ** set
2016-03-19 02:52:44 +03:00
SetGlobalState(..),
2016-03-11 16:07:22 +03:00
-- *** 'Category'
SetCategoryTitle(..),
SetCategoryNotes(..),
-- *** 'Item'
SetItemName(..),
SetItemLink(..),
SetItemGroup(..),
SetItemKind(..),
SetItemDescription(..),
SetItemNotes(..),
2016-03-17 02:52:40 +03:00
SetItemEcosystem(..),
2016-03-11 16:07:22 +03:00
-- *** 'Trait'
SetTraitContent(..),
-- ** delete
2016-04-07 15:54:11 +03:00
DeleteCategory(..),
2016-03-11 16:07:22 +03:00
DeleteItem(..),
DeleteTrait(..),
2016-04-08 18:05:52 +03:00
-- ** edits
GetEdit(..),
RegisterEdit(..),
RemovePendingEdit(..),
2016-03-11 16:07:22 +03:00
-- ** other
MoveItem(..),
MoveTrait(..),
2016-04-08 18:05:52 +03:00
RestoreCategory(..),
RestoreItem(..),
RestoreTrait(..),
2016-03-11 16:07:22 +03:00
)
where
-- General
import BasePrelude hiding (Category)
2016-04-03 23:57:01 +03:00
-- Monads and monad transformers
import Control.Monad.State
import Control.Monad.Reader
2016-03-11 16:07:22 +03:00
-- Lenses
2016-04-08 18:05:52 +03:00
import Lens.Micro.Platform hiding ((&))
2016-03-11 16:07:22 +03:00
-- Containers
import qualified Data.Map as M
import Data.Map (Map)
-- Text
2016-04-07 18:07:04 +03:00
import qualified Data.Text as T
2016-03-11 16:07:22 +03:00
import Data.Text (Text)
-- Time
import Data.Time
-- Network
import Data.IP
import qualified Network.Info as Network
2016-03-11 16:07:22 +03:00
-- acid-state
import Data.SafeCopy hiding (kind)
import Data.Acid as Acid
-- Local
import Utils
import Markdown
2016-03-11 16:07:22 +03:00
data Trait = Trait {
_traitUid :: Uid,
_traitContent :: MarkdownInline }
deriving (Eq)
2016-03-11 16:07:22 +03:00
2016-03-28 23:52:20 +03:00
-- See Note [acid-state]
deriveSafeCopy 1 'extension ''Trait
2016-03-11 16:07:22 +03:00
makeFields ''Trait
-- Old version, needed for safe migration. It can most likely be already
-- deleted (if a checkpoint has been created), but it's been left here as a
-- template for future migrations.
2016-03-28 23:52:20 +03:00
--
-- Again, see Note [acid-state].
data Trait_v0 = Trait_v0 {
_traitUid_v0 :: Uid,
_traitContent_v0 :: Text }
deriveSafeCopy 0 'base ''Trait_v0
instance Migrate Trait where
type MigrateFrom Trait = Trait_v0
migrate Trait_v0{..} = Trait {
_traitUid = _traitUid_v0,
_traitContent = renderMarkdownInline _traitContent_v0 }
2016-03-11 16:07:22 +03:00
--
data ItemKind
= Library {_itemKindHackageName :: Maybe Text}
| Tool {_itemKindHackageName :: Maybe Text}
2016-03-11 16:07:22 +03:00
| Other
deriving (Eq, Show)
2016-03-11 16:07:22 +03:00
deriveSafeCopy 2 'base ''ItemKind
2016-03-11 16:07:22 +03:00
makeFields ''ItemKind
--
-- TODO: add a field like “people to ask on IRC about this library if you
-- need help”
data Item = Item {
_itemUid :: Uid,
_itemName :: Text,
_itemCreated :: UTCTime,
2016-03-11 16:07:22 +03:00
_itemGroup_ :: Maybe Text,
_itemDescription :: MarkdownBlock,
2016-03-11 16:07:22 +03:00
_itemPros :: [Trait],
2016-03-24 21:16:14 +03:00
_itemProsDeleted :: [Trait],
2016-03-11 16:07:22 +03:00
_itemCons :: [Trait],
2016-03-24 21:16:14 +03:00
_itemConsDeleted :: [Trait],
_itemEcosystem :: MarkdownBlock,
_itemNotes :: MarkdownBlock,
2016-03-11 16:07:22 +03:00
_itemLink :: Maybe Url,
_itemKind :: ItemKind }
deriving (Eq)
2016-03-11 16:07:22 +03:00
2016-03-24 21:16:14 +03:00
deriveSafeCopy 7 'extension ''Item
2016-03-11 16:07:22 +03:00
makeFields ''Item
-- Old version, needed for safe migration. It can most likely be already
-- deleted (if a checkpoint has been created), but it's been left here as a
-- template for future migrations.
2016-03-24 21:16:14 +03:00
data Item_v6 = Item_v6 {
_itemUid_v6 :: Uid,
_itemName_v6 :: Text,
_itemCreated_v6 :: UTCTime,
_itemGroup__v6 :: Maybe Text,
_itemDescription_v6 :: MarkdownBlock,
_itemPros_v6 :: [Trait],
_itemCons_v6 :: [Trait],
_itemEcosystem_v6 :: MarkdownBlock,
_itemNotes_v6 :: MarkdownBlock,
_itemLink_v6 :: Maybe Url,
_itemKind_v6 :: ItemKind }
deriveSafeCopy 6 'base ''Item_v6
2016-03-11 16:07:22 +03:00
instance Migrate Item where
2016-03-24 21:16:14 +03:00
type MigrateFrom Item = Item_v6
migrate Item_v6{..} = Item {
_itemUid = _itemUid_v6,
_itemName = _itemName_v6,
_itemCreated = _itemCreated_v6,
_itemGroup_ = _itemGroup__v6,
_itemDescription = _itemDescription_v6,
_itemPros = _itemPros_v6,
_itemProsDeleted = [],
_itemCons = _itemCons_v6,
_itemConsDeleted = [],
_itemEcosystem = _itemEcosystem_v6,
_itemNotes = _itemNotes_v6,
_itemLink = _itemLink_v6,
_itemKind = _itemKind_v6 }
2016-03-11 16:07:22 +03:00
--
data Hue = NoHue | Hue Int
deriving (Eq, Ord)
2016-03-11 16:07:22 +03:00
deriveSafeCopy 0 'base ''Hue
instance Show Hue where
show NoHue = "0"
show (Hue n) = show n
{-
https://www.google.com/design/spec/style/color.html#color-color-palette
50 100 200
------ ------ ------
red : FFEBEE FFCDD2 EF9A9A
pink : FCE4EC F8BBD0 F48FB1
purple : F3E5F5 E1BEE7 CE93D8
deep purple : EDE7F6 D1C4E9 B39DDB
indigo : E8EAF6 C5CAE9 9FA8DA
blue : E3F2FD BBDEFB 90CAF9
light blue : E1F5FE B3E5FC 81D4FA
cyan : E0F7FA B2EBF2 80DEEA
teal : E0F2F1 B2DFDB 80CBC4
green : E8F5E9 C8E6C9 A5D6A7
light green : F1F8E9 DCEDC8 C5E1A5
lime : F9FBE7 F0F4C3 E6EE9C
yellow : FFFDE7 FFF9C4 FFF59D
amber : FFF8E1 FFECB3 FFE082
orange : FFF3E0 FFE0B2 FFCC80
deep orange : FBE9E7 FFCCBC FFAB91
brown : EFEBE9 D7CCC8 BCAAA4
gray : FAFAFA F5F5F5 EEEEEE
blue gray : ECEFF1 CFD8DC B0BEC5
-}
-- TODO: more colors and don't repeat them!
-- TODO: check how all colors look (not just deep purple)
hueToDarkColor :: Hue -> Text
hueToDarkColor NoHue = "#D6D6D6" -- the color for gray isn't from Google's
-- palette, since their “100” is too light
hueToDarkColor (Hue i) = table !! ((i-1) `mod` length table)
where
-- the “100” colors
table = ["#D1C4E9", -- deep purple
"#C8E6C9", -- green
"#FFECB3", -- amber
"#FFCDD2"] -- red
hueToLightColor :: Hue -> Text
hueToLightColor NoHue = "#F0F0F0" -- the color for gray isn't from Google's
-- palette, since their “50” is too light
hueToLightColor (Hue i) = table !! ((i-1) `mod` length table)
where
-- the “50” colors
table = ["#EDE7F6",
"#E8F5E9",
"#FFF8E1",
"#FFEBEE"]
--
data Category = Category {
_categoryUid :: Uid,
_categoryTitle :: Text,
_categoryCreated :: UTCTime,
_categoryNotes :: MarkdownBlock,
2016-03-11 16:07:22 +03:00
_categoryGroups :: Map Text Hue,
2016-03-24 20:55:17 +03:00
_categoryItems :: [Item],
_categoryItemsDeleted :: [Item] }
deriving (Eq)
2016-03-11 16:07:22 +03:00
2016-03-24 20:55:17 +03:00
deriveSafeCopy 3 'extension ''Category
2016-03-11 16:07:22 +03:00
makeFields ''Category
2016-03-19 21:36:21 +03:00
categorySlug :: Category -> Text
categorySlug category =
format "{}-{}" (makeSlug (category^.title), category^.uid)
-- Old version, needed for safe migration. It can most likely be already
-- deleted (if a checkpoint has been created), but it's been left here as a
-- template for future migrations.
2016-03-24 20:55:17 +03:00
data Category_v2 = Category_v2 {
_categoryUid_v2 :: Uid,
_categoryTitle_v2 :: Text,
_categoryCreated_v2 :: UTCTime,
_categoryNotes_v2 :: MarkdownBlock,
_categoryGroups_v2 :: Map Text Hue,
_categoryItems_v2 :: [Item] }
2016-03-24 20:55:17 +03:00
deriveSafeCopy 2 'base ''Category_v2
instance Migrate Category where
2016-03-24 20:55:17 +03:00
type MigrateFrom Category = Category_v2
migrate Category_v2{..} = Category {
_categoryUid = _categoryUid_v2,
_categoryTitle = _categoryTitle_v2,
_categoryCreated = _categoryCreated_v2,
_categoryNotes = _categoryNotes_v2,
_categoryGroups = _categoryGroups_v2,
_categoryItems = _categoryItems_v2,
_categoryItemsDeleted = [] }
2016-04-03 23:57:01 +03:00
-- Edits
-- | Edits made by users. It should always be possible to undo an edit.
data Edit
-- Add
= Edit'AddCategory {
editCategoryUid :: Uid,
editCategoryTitle :: Text }
| Edit'AddItem {
editCategoryUid :: Uid,
editItemUid :: Uid,
editItemName :: Text }
| Edit'AddPro {
editItemUid :: Uid,
editTraitId :: Uid,
editTraitContent :: Text }
| Edit'AddCon {
editItemUid :: Uid,
editTraitId :: Uid,
editTraitContent :: Text }
-- Change category properties
| Edit'SetCategoryTitle {
editCategoryUid :: Uid,
editCategoryTitle :: Text,
editCategoryNewTitle :: Text }
| Edit'SetCategoryNotes {
editCategoryUid :: Uid,
editCategoryNotes :: Text,
editCategoryNewNotes :: Text }
-- Change item properties
| Edit'SetItemName {
editItemUid :: Uid,
editItemName :: Text,
editItemNewName :: Text }
| Edit'SetItemLink {
editItemUid :: Uid,
editItemLink :: Maybe Url,
editItemNewLink :: Maybe Url }
| Edit'SetItemGroup {
editItemUid :: Uid,
editItemGroup :: Maybe Text,
editItemNewGroup :: Maybe Text }
| Edit'SetItemKind {
editItemUid :: Uid,
editItemKind :: ItemKind,
editItemNewKind :: ItemKind }
| Edit'SetItemDescription {
editItemUid :: Uid,
editItemDescription :: Text,
editItemNewDescription :: Text }
| Edit'SetItemNotes {
editItemUid :: Uid,
editItemNotes :: Text,
editItemNewNotes :: Text }
| Edit'SetItemEcosystem {
editItemUid :: Uid,
editItemEcosystem :: Text,
editItemNewEcosystem :: Text }
-- Change trait properties
| Edit'SetTraitContent {
editItemUid :: Uid,
editTraitUid :: Uid,
editTraitContent :: Text,
editTraitNewContent :: Text }
-- Delete
2016-04-07 15:54:11 +03:00
| Edit'DeleteCategory {
editCategoryUid :: Uid,
editCategoryPosition :: Int }
2016-04-03 23:57:01 +03:00
| Edit'DeleteItem {
2016-04-07 15:54:11 +03:00
editItemUid :: Uid,
editItemPosition :: Int }
2016-04-03 23:57:01 +03:00
| Edit'DeleteTrait {
2016-04-07 15:54:11 +03:00
editItemUid :: Uid,
editTraitUid :: Uid,
editTraitPosition :: Int }
2016-04-03 23:57:01 +03:00
-- Other
| Edit'MoveItem {
editItemUid :: Uid,
editDirection :: Bool }
| Edit'MoveTrait {
editItemUid :: Uid,
editTraitUid :: Uid,
editDirection :: Bool }
deriving (Eq, Show)
2016-04-07 15:54:11 +03:00
deriveSafeCopy 1 'extension ''Edit
genVer ''Edit 0 [
-- Add
Copy 'Edit'AddCategory,
Copy 'Edit'AddItem,
Copy 'Edit'AddPro,
Copy 'Edit'AddCon,
-- Change category properties
Copy 'Edit'SetCategoryTitle,
Copy 'Edit'SetCategoryNotes,
-- Change item properties
Copy 'Edit'SetItemName,
Copy 'Edit'SetItemLink,
Copy 'Edit'SetItemGroup,
Copy 'Edit'SetItemKind,
Copy 'Edit'SetItemDescription,
Copy 'Edit'SetItemNotes,
Copy 'Edit'SetItemEcosystem,
-- Change trait properties
Copy 'Edit'SetTraitContent,
-- Delete
Copy 'Edit'DeleteCategory,
Copy 'Edit'DeleteItem,
Copy 'Edit'DeleteTrait,
-- Other
Copy 'Edit'MoveItem,
Copy 'Edit'MoveTrait ]
deriveSafeCopy 0 'base ''Edit_v0
instance Migrate Edit where
type MigrateFrom Edit = Edit_v0
migrate = $(migrateVer ''Edit 0 [
CopyM 'Edit'AddCategory,
CopyM 'Edit'AddItem,
CopyM 'Edit'AddPro,
CopyM 'Edit'AddCon,
-- Change category properties
CopyM 'Edit'SetCategoryTitle,
CopyM 'Edit'SetCategoryNotes,
-- Change item properties
CopyM 'Edit'SetItemName,
CopyM 'Edit'SetItemLink,
CopyM 'Edit'SetItemGroup,
CopyM 'Edit'SetItemKind,
CopyM 'Edit'SetItemDescription,
CopyM 'Edit'SetItemNotes,
CopyM 'Edit'SetItemEcosystem,
-- Change trait properties
CopyM 'Edit'SetTraitContent,
-- Delete
CopyM 'Edit'DeleteCategory,
CopyM 'Edit'DeleteItem,
CopyM 'Edit'DeleteTrait,
-- Other
CopyM 'Edit'MoveItem,
CopyM 'Edit'MoveTrait
])
2016-04-03 23:57:01 +03:00
-- | Determine whether the edit doesn't actually change anything and so isn't
-- worth recording in the list of pending edits.
isVacuousEdit :: Edit -> Bool
isVacuousEdit Edit'SetCategoryTitle{..} =
editCategoryTitle == editCategoryNewTitle
isVacuousEdit Edit'SetCategoryNotes{..} =
editCategoryNotes == editCategoryNewNotes
isVacuousEdit Edit'SetItemName{..} =
editItemName == editItemNewName
isVacuousEdit Edit'SetItemLink{..} =
editItemLink == editItemNewLink
isVacuousEdit Edit'SetItemGroup{..} =
editItemGroup == editItemNewGroup
isVacuousEdit Edit'SetItemKind{..} =
editItemKind == editItemNewKind
isVacuousEdit Edit'SetItemDescription{..} =
editItemDescription == editItemNewDescription
isVacuousEdit Edit'SetItemNotes{..} =
editItemNotes == editItemNewNotes
isVacuousEdit Edit'SetItemEcosystem{..} =
editItemEcosystem == editItemNewEcosystem
isVacuousEdit Edit'SetTraitContent{..} =
editTraitContent == editTraitNewContent
isVacuousEdit _ = False
data EditDetails = EditDetails {
editIP :: Maybe IP,
editDate :: UTCTime,
editId :: Int }
deriving (Eq, Show)
deriveSafeCopy 1 'extension ''EditDetails
data IP_v0 = IPv4_v0 Network.IPv4 | IPv6_v0 Network.IPv6
deriveSafeCopy 0 'base ''Network.IPv4
deriveSafeCopy 0 'base ''Network.IPv6
deriveSafeCopy 0 'base ''IP_v0
-- TODO: When this goes away, remove the dependency on network-info
data EditDetails_v0 = EditDetails_v0 {
editIP_v0 :: Maybe IP_v0,
editDate_v0 :: UTCTime,
editId_v0 :: Int }
deriveSafeCopy 0 'base ''EditDetails_v0
instance Migrate EditDetails where
type MigrateFrom EditDetails = EditDetails_v0
migrate EditDetails_v0{..} = EditDetails {
editIP = migrateIP <$> editIP_v0,
editDate = editDate_v0,
editId = editId_v0 }
where
migrateIP (IPv4_v0 ip) = IPv4 (read (show ip))
migrateIP (IPv6_v0 ip) = IPv6 (read (show ip))
-- TODO: add a function to create a checkpoint to the admin panel?
2016-03-11 16:07:22 +03:00
2016-03-28 23:52:20 +03:00
-- See Note [acid-state]
2016-04-03 23:57:01 +03:00
2016-03-11 16:07:22 +03:00
data GlobalState = GlobalState {
2016-03-24 20:32:42 +03:00
_categories :: [Category],
2016-04-03 23:57:01 +03:00
_categoriesDeleted :: [Category],
_pendingEdits :: [(Edit, EditDetails)],
_editIdCounter :: Int } -- ID of next edit that will be made
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
deriveSafeCopy 2 'extension ''GlobalState
2016-03-11 16:07:22 +03:00
makeLenses ''GlobalState
2016-04-03 23:57:01 +03:00
data GlobalState_v1 = GlobalState_v1 {
_categories_v1 :: [Category],
_categoriesDeleted_v1 :: [Category] }
2016-03-24 20:32:42 +03:00
2016-04-03 23:57:01 +03:00
deriveSafeCopy 1 'base ''GlobalState_v1
2016-03-24 20:32:42 +03:00
instance Migrate GlobalState where
2016-04-03 23:57:01 +03:00
type MigrateFrom GlobalState = GlobalState_v1
migrate GlobalState_v1{..} = GlobalState {
_categories = _categories_v1,
_categoriesDeleted = _categoriesDeleted_v1,
_pendingEdits = [],
_editIdCounter = 0 }
2016-03-24 20:32:42 +03:00
2016-03-11 16:07:22 +03:00
addGroupIfDoesNotExist :: Text -> Map Text Hue -> Map Text Hue
addGroupIfDoesNotExist g gs
| M.member g gs = gs
| otherwise = M.insert g firstNotTaken gs
where
firstNotTaken = head $ map Hue [1..] \\ M.elems gs
traitById :: Uid -> Lens' Item Trait
traitById uid' = singular $
(pros.each . filtered (hasUid uid')) `failing`
(cons.each . filtered (hasUid uid')) `failing`
2016-04-07 18:07:04 +03:00
error ("traitById: couldn't find trait with uid " ++
T.unpack (uidToText uid'))
2016-03-11 16:07:22 +03:00
categoryById :: Uid -> Lens' GlobalState Category
categoryById catId = singular $
categories.each . filtered (hasUid catId) `failing`
2016-04-07 18:07:04 +03:00
error ("categoryById: couldn't find category with uid " ++
T.unpack (uidToText catId))
2016-03-11 16:07:22 +03:00
itemById :: Uid -> Lens' GlobalState Item
itemById itemId = singular $
categories.each . items.each . filtered (hasUid itemId) `failing`
2016-04-07 18:07:04 +03:00
error ("itemById: couldn't find item with uid " ++
T.unpack (uidToText itemId))
2016-03-11 16:07:22 +03:00
findCategoryByItem :: Uid -> GlobalState -> Category
findCategoryByItem itemId s =
fromMaybe (error err) (find hasItem (s^.categories))
where
err = "findCategoryByItem: couldn't find category with item with uid " ++
T.unpack (uidToText itemId)
hasItem category = itemId `elem` (category^..items.each.uid)
hasUid :: HasUid a Uid => Uid -> a -> Bool
hasUid u x = x^.uid == u
2016-03-11 16:07:22 +03:00
-- get
getGlobalState :: Acid.Query GlobalState GlobalState
getGlobalState = view id
getCategories :: Acid.Query GlobalState [Category]
getCategories = view categories
getCategory :: Uid -> Acid.Query GlobalState Category
getCategory uid' = view (categoryById uid')
2016-03-19 02:40:00 +03:00
getCategoryMaybe :: Uid -> Acid.Query GlobalState (Maybe Category)
getCategoryMaybe uid' = preview (categoryById uid')
2016-03-11 16:07:22 +03:00
getCategoryByItem :: Uid -> Acid.Query GlobalState Category
getCategoryByItem uid' = findCategoryByItem uid' <$> ask
2016-03-11 16:07:22 +03:00
getItem :: Uid -> Acid.Query GlobalState Item
getItem uid' = view (itemById uid')
-- TODO: this doesn't need the item id, but then we have to be a bit cleverer
-- and store a (TraitId -> ItemId) map in global state (and update it
-- accordingly whenever anything happens, so perhaps let's not do it!)
getTrait
:: Uid -- ^ Item id
-> Uid -- ^ Trait id
-> Acid.Query GlobalState Trait
getTrait itemId traitId = view (itemById itemId . traitById traitId)
2016-04-03 23:57:01 +03:00
-- | A useful lens operator that modifies something and returns the old value.
(<<.=) :: MonadState s m => LensLike ((,) a) s s a b -> b -> m a
(<<.=) l b = state (l (,b))
{-# INLINE (<<.=) #-}
infix 4 <<.=
2016-03-11 16:07:22 +03:00
-- add
addCategory
:: Uid -- ^ New category's id
-> Text -- ^ Title
-> UTCTime -- ^ Creation time
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState (Edit, Category)
addCategory catId title' created' = do
2016-03-11 16:07:22 +03:00
let newCategory = Category {
_categoryUid = catId,
_categoryTitle = title',
_categoryCreated = created',
2016-03-11 16:07:22 +03:00
_categoryNotes = "",
_categoryGroups = mempty,
2016-03-24 20:55:17 +03:00
_categoryItems = [],
_categoryItemsDeleted = [] }
2016-03-11 16:07:22 +03:00
categories %= (newCategory :)
2016-04-03 23:57:01 +03:00
let edit = Edit'AddCategory catId title'
return (edit, newCategory)
2016-03-11 16:07:22 +03:00
addItem
:: Uid -- ^ Category id
-> Uid -- ^ New item's id
2016-04-03 23:57:01 +03:00
-> Text -- ^ Name
-> UTCTime -- ^ Creation time
2016-03-11 16:07:22 +03:00
-> ItemKind -- ^ Kind
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState (Edit, Item)
addItem catId itemId name' created' kind' = do
2016-03-11 16:07:22 +03:00
let newItem = Item {
_itemUid = itemId,
_itemName = name',
_itemCreated = created',
2016-03-11 16:07:22 +03:00
_itemGroup_ = Nothing,
_itemDescription = "",
_itemPros = [],
2016-03-24 21:16:14 +03:00
_itemProsDeleted = [],
2016-03-11 16:07:22 +03:00
_itemCons = [],
2016-03-24 21:16:14 +03:00
_itemConsDeleted = [],
2016-03-17 02:52:40 +03:00
_itemEcosystem = "",
2016-03-11 16:07:22 +03:00
_itemNotes = "",
_itemLink = Nothing,
_itemKind = kind' }
categoryById catId . items %= (++ [newItem])
2016-04-03 23:57:01 +03:00
let edit = Edit'AddItem catId itemId name'
return (edit, newItem)
2016-03-11 16:07:22 +03:00
addPro
:: Uid -- ^ Item id
-> Uid -- ^ Trait id
-> Text
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState (Edit, Trait)
2016-03-11 16:07:22 +03:00
addPro itemId traitId text' = do
let newTrait = Trait traitId (renderMarkdownInline text')
2016-03-11 16:07:22 +03:00
itemById itemId . pros %= (++ [newTrait])
2016-04-03 23:57:01 +03:00
let edit = Edit'AddPro itemId traitId text'
return (edit, newTrait)
2016-03-11 16:07:22 +03:00
addCon
:: Uid -- ^ Item id
-> Uid -- ^ Trait id
-> Text
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState (Edit, Trait)
2016-03-11 16:07:22 +03:00
addCon itemId traitId text' = do
let newTrait = Trait traitId (renderMarkdownInline text')
2016-03-11 16:07:22 +03:00
itemById itemId . cons %= (++ [newTrait])
2016-04-03 23:57:01 +03:00
let edit = Edit'AddCon itemId traitId text'
return (edit, newTrait)
2016-03-11 16:07:22 +03:00
-- set
2016-04-03 23:57:01 +03:00
-- Almost all of these return an edit that could be used to undo the action
-- they've just done
2016-03-19 02:52:44 +03:00
-- | Can be useful sometimes (e.g. if you want to regenerate all uids), but
-- generally shouldn't be used.
setGlobalState :: GlobalState -> Acid.Update GlobalState ()
setGlobalState = (id .=)
2016-04-03 23:57:01 +03:00
setCategoryTitle :: Uid -> Text -> Acid.Update GlobalState (Edit, Category)
2016-03-11 16:07:22 +03:00
setCategoryTitle catId title' = do
2016-04-03 23:57:01 +03:00
oldTitle <- categoryById catId . title <<.= title'
let edit = Edit'SetCategoryTitle catId oldTitle title'
(edit,) <$> use (categoryById catId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setCategoryNotes :: Uid -> Text -> Acid.Update GlobalState (Edit, Category)
2016-03-11 16:07:22 +03:00
setCategoryNotes catId notes' = do
2016-04-03 23:57:01 +03:00
oldNotes <- categoryById catId . notes <<.= renderMarkdownBlock notes'
let edit = Edit'SetCategoryNotes catId (markdownBlockText oldNotes) notes'
(edit,) <$> use (categoryById catId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemName :: Uid -> Text -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemName itemId name' = do
2016-04-03 23:57:01 +03:00
oldName <- itemById itemId . name <<.= name'
let edit = Edit'SetItemName itemId oldName name'
(edit,) <$> use (itemById itemId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemLink :: Uid -> Maybe Url -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemLink itemId link' = do
2016-04-03 23:57:01 +03:00
oldLink <- itemById itemId . link <<.= link'
let edit = Edit'SetItemLink itemId oldLink link'
(edit,) <$> use (itemById itemId)
2016-03-11 16:07:22 +03:00
-- Also updates the list of groups in the category
2016-04-03 23:57:01 +03:00
setItemGroup :: Uid -> Maybe Text -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemGroup itemId newGroup = do
catId <- view uid . findCategoryByItem itemId <$> get
2016-03-11 16:07:22 +03:00
let categoryLens :: Lens' GlobalState Category
categoryLens = categoryById catId
2016-03-11 16:07:22 +03:00
let itemLens :: Lens' GlobalState Item
itemLens = itemById itemId
-- If the group is new, add it to the list of groups in the category (which
-- causes a new hue to be generated, too)
case newGroup of
Nothing -> return ()
Just x -> categoryLens.groups %= addGroupIfDoesNotExist x
-- Update list of groups if the group is going to be empty after the item
-- is moved to a different group. Note that this is done after adding a new
-- group because we also want the color to change. So, if the item was the
-- only item in its group, the sequence of actions is as follows:
--
-- * new group is added (and hence a new color is assigned)
-- * old group is deleted (and now the old color is unused)
oldGroup <- use (itemLens.group_)
case oldGroup of
Nothing -> return ()
Just g -> when (oldGroup /= newGroup) $ do
allItems <- use (categoryLens.items)
let inOurGroup item = item^.group_ == Just g
when (length (filter inOurGroup allItems) == 1) $
categoryLens.groups %= M.delete g
-- Now we can actually change the group
itemLens.group_ .= newGroup
2016-04-03 23:57:01 +03:00
let edit = Edit'SetItemGroup itemId oldGroup newGroup
(edit,) <$> use itemLens
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemKind :: Uid -> ItemKind -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemKind itemId kind' = do
2016-04-03 23:57:01 +03:00
oldKind <- itemById itemId . kind <<.= kind'
let edit = Edit'SetItemKind itemId oldKind kind'
(edit,) <$> use (itemById itemId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemDescription :: Uid -> Text -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemDescription itemId description' = do
2016-04-03 23:57:01 +03:00
oldDescr <- itemById itemId . description <<.=
renderMarkdownBlock description'
let edit = Edit'SetItemDescription itemId
(markdownBlockText oldDescr) description'
(edit,) <$> use (itemById itemId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemNotes :: Uid -> Text -> Acid.Update GlobalState (Edit, Item)
2016-03-11 16:07:22 +03:00
setItemNotes itemId notes' = do
2016-04-03 23:57:01 +03:00
oldNotes <- itemById itemId . notes <<.= renderMarkdownBlock notes'
let edit = Edit'SetItemNotes itemId (markdownBlockText oldNotes) notes'
(edit,) <$> use (itemById itemId)
2016-03-11 16:07:22 +03:00
2016-04-03 23:57:01 +03:00
setItemEcosystem :: Uid -> Text -> Acid.Update GlobalState (Edit, Item)
2016-03-17 02:52:40 +03:00
setItemEcosystem itemId ecosystem' = do
2016-04-03 23:57:01 +03:00
oldEcosystem <- itemById itemId . ecosystem <<.=
renderMarkdownBlock ecosystem'
let edit = Edit'SetItemEcosystem itemId
(markdownBlockText oldEcosystem) ecosystem'
(edit,) <$> use (itemById itemId)
2016-03-17 02:52:40 +03:00
2016-04-03 23:57:01 +03:00
setTraitContent :: Uid -> Uid -> Text -> Acid.Update GlobalState (Edit, Trait)
2016-03-11 16:07:22 +03:00
setTraitContent itemId traitId content' = do
2016-04-03 23:57:01 +03:00
oldContent <- itemById itemId . traitById traitId . content <<.=
renderMarkdownInline content'
let edit = Edit'SetTraitContent itemId traitId
(markdownInlineText oldContent) content'
(edit,) <$> use (itemById itemId . traitById traitId)
2016-03-11 16:07:22 +03:00
-- delete
2016-04-08 18:05:52 +03:00
deleteCategory :: Uid -> Acid.Update GlobalState (Either String Edit)
2016-04-07 15:54:11 +03:00
deleteCategory catId = do
mbCategory <- preuse (categoryById catId)
case mbCategory of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "category not found")
2016-04-07 15:54:11 +03:00
Just category -> do
mbCategoryPos <- findIndex (hasUid catId) <$> use categories
2016-04-07 15:54:11 +03:00
case mbCategoryPos of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "category not found")
2016-04-07 15:54:11 +03:00
Just categoryPos -> do
categories %= deleteAt categoryPos
categoriesDeleted %= (category:)
2016-04-08 18:05:52 +03:00
return (Right (Edit'DeleteCategory catId categoryPos))
2016-04-07 15:54:11 +03:00
2016-04-08 18:05:52 +03:00
deleteItem :: Uid -> Acid.Update GlobalState (Either String Edit)
2016-03-11 16:07:22 +03:00
deleteItem itemId = do
catId <- view uid . findCategoryByItem itemId <$> get
2016-03-11 16:07:22 +03:00
let categoryLens :: Lens' GlobalState Category
categoryLens = categoryById catId
2016-03-11 16:07:22 +03:00
let itemLens :: Lens' GlobalState Item
itemLens = itemById itemId
2016-03-24 20:55:17 +03:00
mbItem <- preuse itemLens
2016-04-03 23:57:01 +03:00
case mbItem of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "item not found")
2016-04-03 23:57:01 +03:00
Just item -> do
allItems <- use (categoryLens.items)
-- If the item was the only item in its group, delete the group (and
-- make the hue available for new items)
case item^.group_ of
Nothing -> return ()
Just oldGroup -> do
let itemsInOurGroup = [item' | item' <- allItems,
item'^.group_ == Just oldGroup]
when (length itemsInOurGroup == 1) $
categoryLens.groups %= M.delete oldGroup
-- And now delete the item (i.e. move it to “deleted”)
case findIndex (hasUid itemId) allItems of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "item not found")
2016-04-03 23:57:01 +03:00
Just itemPos -> do
categoryLens.items %= deleteAt itemPos
categoryLens.itemsDeleted %= (item:)
2016-04-08 18:05:52 +03:00
return (Right (Edit'DeleteItem itemId itemPos))
2016-04-03 23:57:01 +03:00
2016-04-08 18:05:52 +03:00
deleteTrait :: Uid -> Uid -> Acid.Update GlobalState (Either String Edit)
2016-03-11 16:07:22 +03:00
deleteTrait itemId traitId = do
2016-03-24 21:16:14 +03:00
let itemLens :: Lens' GlobalState Item
itemLens = itemById itemId
mbItem <- preuse itemLens
2016-04-03 23:57:01 +03:00
case mbItem of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "item not found")
2016-04-03 23:57:01 +03:00
Just item -> do
-- Determine whether the trait is a pro or a con, and proceed accordingly
case (find (hasUid traitId) (item^.pros),
find (hasUid traitId) (item^.cons)) of
2016-04-03 23:57:01 +03:00
-- It's in neither group, which means it was deleted. Do nothing.
2016-04-08 18:05:52 +03:00
(Nothing, Nothing) -> return (Left "trait not found")
2016-04-03 23:57:01 +03:00
-- It's a pro
(Just trait, _) -> do
mbTraitPos <- findIndex (hasUid traitId) <$> use (itemLens.pros)
2016-04-03 23:57:01 +03:00
case mbTraitPos of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "trait not found")
2016-04-03 23:57:01 +03:00
Just traitPos -> do
itemLens.pros %= deleteAt traitPos
itemLens.prosDeleted %= (trait:)
2016-04-08 18:05:52 +03:00
return (Right (Edit'DeleteTrait itemId traitId traitPos))
2016-04-03 23:57:01 +03:00
-- It's a con
(_, Just trait) -> do
mbTraitPos <- findIndex (hasUid traitId) <$> use (itemLens.cons)
2016-04-03 23:57:01 +03:00
case mbTraitPos of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "trait not found")
2016-04-03 23:57:01 +03:00
Just traitPos -> do
itemLens.cons %= deleteAt traitPos
itemLens.consDeleted %= (trait:)
2016-04-08 18:05:52 +03:00
return (Right (Edit'DeleteTrait itemId traitId traitPos))
2016-03-11 16:07:22 +03:00
-- other methods
moveItem
:: Uid
-> Bool -- ^ 'True' means up, 'False' means down
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState Edit
2016-03-11 16:07:22 +03:00
moveItem itemId up = do
let move = if up then moveUp else moveDown
catId <- view uid . findCategoryByItem itemId <$> get
categoryById catId . items %= move (hasUid itemId)
2016-04-03 23:57:01 +03:00
return (Edit'MoveItem itemId up)
2016-03-11 16:07:22 +03:00
moveTrait
:: Uid
-> Uid
-> Bool -- ^ 'True' means up, 'False' means down
2016-04-03 23:57:01 +03:00
-> Acid.Update GlobalState Edit
2016-03-11 16:07:22 +03:00
moveTrait itemId traitId up = do
let move = if up then moveUp else moveDown
-- The trait is only going to be present in one of the lists so let's do it
-- in each list because we're too lazy to figure out whether it's a pro or
-- a con
itemById itemId . pros %= move (hasUid traitId)
itemById itemId . cons %= move (hasUid traitId)
2016-04-03 23:57:01 +03:00
return (Edit'MoveTrait itemId traitId up)
2016-03-11 16:07:22 +03:00
2016-04-08 18:05:52 +03:00
restoreCategory :: Uid -> Int -> Acid.Update GlobalState (Either String ())
restoreCategory catId pos = do
deleted <- use categoriesDeleted
case find (hasUid catId) deleted of
2016-04-08 18:05:52 +03:00
Nothing -> return (Left "category not found in deleted categories")
Just category -> do
categoriesDeleted %= deleteFirst (hasUid catId)
2016-04-08 18:05:52 +03:00
categories %= insertAt pos category
return (Right ())
restoreItem :: Uid -> Int -> Acid.Update GlobalState (Either String ())
restoreItem itemId pos = do
let ourCategory = any (hasUid itemId) . view itemsDeleted
2016-04-08 18:05:52 +03:00
allCategories <- use (categories <> categoriesDeleted)
case find ourCategory allCategories of
Nothing -> return (Left "item not found in deleted items")
Just category -> do
let item = fromJust (find (hasUid itemId) (category^.itemsDeleted))
2016-04-08 18:05:52 +03:00
let category' = category
& itemsDeleted %~ deleteFirst (hasUid itemId)
2016-04-08 18:05:52 +03:00
& items %~ insertAt pos item
categories . each . filtered ourCategory .= category'
categoriesDeleted . each . filtered ourCategory .= category'
return (Right ())
restoreTrait :: Uid -> Uid -> Int -> Acid.Update GlobalState (Either String ())
restoreTrait itemId traitId pos = do
let getItems = view (items <> itemsDeleted)
ourCategory = any (hasUid itemId) . getItems
2016-04-08 18:05:52 +03:00
allCategories <- use (categories <> categoriesDeleted)
case find ourCategory allCategories of
Nothing -> return (Left "item -that the trait belongs to- not found")
Just category -> do
let item = fromJust (find (hasUid itemId) (getItems category))
case (find (hasUid traitId) (item^.prosDeleted),
find (hasUid traitId) (item^.consDeleted)) of
2016-04-08 18:05:52 +03:00
(Nothing, Nothing) -> return (Left "trait not found in deleted traits")
(Just trait, _) -> do
let item' = item
& prosDeleted %~ deleteFirst (hasUid traitId)
2016-04-08 18:05:52 +03:00
& pros %~ insertAt pos trait
let category' = category
& items . each . filtered (hasUid itemId) .~ item'
& itemsDeleted . each . filtered (hasUid itemId) .~ item'
2016-04-08 18:05:52 +03:00
categories . each . filtered ourCategory .= category'
categoriesDeleted . each . filtered ourCategory .= category'
return (Right ())
(_, Just trait) -> do
let item' = item
& consDeleted %~ deleteFirst (hasUid traitId)
2016-04-08 18:05:52 +03:00
& cons %~ insertAt pos trait
let category' = category
& items . each . filtered (hasUid itemId) .~ item'
& itemsDeleted . each . filtered (hasUid itemId) .~ item'
2016-04-08 18:05:52 +03:00
categories . each . filtered ourCategory .= category'
categoriesDeleted . each . filtered ourCategory .= category'
return (Right ())
-- TODO: maybe have a single list of traits with pro/con being signified by
-- something like TraitType? or maybe TraitType could even be a part of the
-- trait itself?
getEdit :: Int -> Acid.Query GlobalState (Edit, EditDetails)
getEdit n = do
edits <- view pendingEdits
case find ((== n) . editId . snd) edits of
Nothing -> error ("no edit with id " ++ show n)
Just edit -> return edit
2016-04-03 23:57:01 +03:00
-- | The edit won't be registered if it's vacuous (see 'isVacuousEdit').
registerEdit
:: Edit
-> Maybe IP
-> UTCTime
-> Acid.Update GlobalState ()
registerEdit ed ip date = do
id' <- use editIdCounter
let details = EditDetails {
editIP = ip,
editDate = date,
editId = id' }
pendingEdits %= ((ed, details):)
editIdCounter += 1
2016-04-08 18:05:52 +03:00
removePendingEdit :: Int -> Acid.Update GlobalState (Edit, EditDetails)
removePendingEdit n = do
edits <- use pendingEdits
case find ((== n) . editId . snd) edits of
Nothing -> error ("no edit with id " ++ show n)
Just edit -> do
pendingEdits %= deleteFirst ((== n) . editId . snd)
return edit
2016-03-11 16:07:22 +03:00
makeAcidic ''GlobalState [
-- queries
'getGlobalState,
'getCategories,
2016-03-19 02:40:00 +03:00
'getCategory, 'getCategoryMaybe,
2016-03-11 16:07:22 +03:00
'getCategoryByItem,
'getItem,
'getTrait,
-- add
'addCategory,
'addItem,
'addPro, 'addCon,
-- set
2016-03-19 02:52:44 +03:00
'setGlobalState,
2016-03-11 16:07:22 +03:00
'setCategoryTitle, 'setCategoryNotes,
'setItemName, 'setItemLink, 'setItemGroup, 'setItemKind,
2016-03-17 02:52:40 +03:00
'setItemDescription, 'setItemNotes, 'setItemEcosystem,
2016-03-11 16:07:22 +03:00
'setTraitContent,
-- delete
2016-04-07 15:54:11 +03:00
'deleteCategory,
2016-03-11 16:07:22 +03:00
'deleteItem,
'deleteTrait,
2016-04-08 18:05:52 +03:00
-- edits
'getEdit,
'registerEdit,
'removePendingEdit,
2016-03-11 16:07:22 +03:00
-- other
2016-04-03 23:57:01 +03:00
'moveItem, 'moveTrait,
2016-04-08 18:05:52 +03:00
'restoreCategory, 'restoreItem, 'restoreTrait
2016-03-11 16:07:22 +03:00
]