1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-27 18:12:44 +03:00
guide/src/Types.hs

631 lines
18 KiB
Haskell
Raw Normal View History

2016-03-11 16:07:22 +03:00
{-# LANGUAGE
TemplateHaskell,
MultiParamTypeClasses,
FunctionalDependencies,
FlexibleInstances,
RecordWildCards,
TypeFamilies,
OverloadedStrings,
RankNTypes,
NoImplicitPrelude
#-}
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-03-11 16:07:22 +03:00
-- * Overloaded lenses
uid,
content,
name,
description,
notes,
created,
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
DeleteItem(..),
DeleteTrait(..),
-- ** other
MoveItem(..),
MoveTrait(..),
)
where
-- General
import BasePrelude hiding (Category)
-- Lenses
import Lens.Micro.Platform
-- Containers
import qualified Data.Map as M
import Data.Map (Map)
-- Text
import Data.Text (Text)
-- Time
import Data.Time
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-03-11 16:07:22 +03:00
--
2016-03-28 23:52:20 +03:00
-- See Note [acid-state]
2016-03-11 16:07:22 +03:00
data GlobalState = GlobalState {
2016-03-24 20:32:42 +03:00
_categories :: [Category],
_categoriesDeleted :: [Category] }
2016-03-11 16:07:22 +03:00
2016-03-24 20:32:42 +03:00
deriveSafeCopy 1 'extension ''GlobalState
2016-03-11 16:07:22 +03:00
makeLenses ''GlobalState
2016-03-24 20:32:42 +03:00
data GlobalState_v0 = GlobalState_v0 {
_categories_v0 :: [Category] }
deriveSafeCopy 0 'base ''GlobalState_v0
instance Migrate GlobalState where
type MigrateFrom GlobalState = GlobalState_v0
migrate GlobalState_v0{..} = GlobalState {
_categories = _categories_v0,
_categoriesDeleted = [] }
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 ((== uid') . view uid)) `failing`
(cons.each . filtered ((== uid') . view uid))
categoryById :: Uid -> Lens' GlobalState Category
categoryById catId = singular $
categories.each . filtered ((== catId) . view uid)
categoryByItem :: Uid -> Lens' GlobalState Category
categoryByItem itemId = singular $
categories.each . filtered hasItem
where
hasItem category = itemId `elem` (category^..items.each.uid)
itemById :: Uid -> Lens' GlobalState Item
itemById itemId = singular $
categories.each . items.each . filtered ((== itemId) . view uid)
-- 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' = view (categoryByItem uid')
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)
-- add
addCategory
:: Uid -- ^ New category's id
-> Text -- ^ Title
-> UTCTime -- ^ Creation time
2016-03-11 16:07:22 +03:00
-> Acid.Update GlobalState 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 :)
return newCategory
addItem
:: Uid -- ^ Category id
-> Uid -- ^ New item's id
-> Text -- ^ Title
-> UTCTime -- ^ Creation time
2016-03-11 16:07:22 +03:00
-> ItemKind -- ^ Kind
-> Acid.Update GlobalState 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])
return newItem
addPro
:: Uid -- ^ Item id
-> Uid -- ^ Trait id
-> Text
-> Acid.Update GlobalState Trait
addPro itemId traitId text' = do
let newTrait = Trait traitId (renderMarkdownInline text')
2016-03-11 16:07:22 +03:00
itemById itemId . pros %= (++ [newTrait])
return newTrait
addCon
:: Uid -- ^ Item id
-> Uid -- ^ Trait id
-> Text
-> Acid.Update GlobalState Trait
addCon itemId traitId text' = do
let newTrait = Trait traitId (renderMarkdownInline text')
2016-03-11 16:07:22 +03:00
itemById itemId . cons %= (++ [newTrait])
return newTrait
-- set
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-03-11 16:07:22 +03:00
setCategoryTitle :: Uid -> Text -> Acid.Update GlobalState Category
setCategoryTitle catId title' = do
categoryById catId . title .= title'
use (categoryById catId)
setCategoryNotes :: Uid -> Text -> Acid.Update GlobalState Category
setCategoryNotes catId notes' = do
categoryById catId . notes .=
renderMarkdownBlock notes'
2016-03-11 16:07:22 +03:00
use (categoryById catId)
setItemName :: Uid -> Text -> Acid.Update GlobalState Item
setItemName itemId name' = do
itemById itemId . name .= name'
use (itemById itemId)
setItemLink :: Uid -> Maybe Url -> Acid.Update GlobalState Item
setItemLink itemId link' = do
itemById itemId . link .= link'
use (itemById itemId)
-- Also updates the list of groups in the category
setItemGroup :: Uid -> Maybe Text -> Acid.Update GlobalState Item
setItemGroup itemId newGroup = do
let categoryLens :: Lens' GlobalState Category
categoryLens = categoryByItem itemId
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
use itemLens
setItemKind :: Uid -> ItemKind -> Acid.Update GlobalState Item
setItemKind itemId kind' = do
itemById itemId . kind .= kind'
use (itemById itemId)
setItemDescription :: Uid -> Text -> Acid.Update GlobalState Item
setItemDescription itemId description' = do
itemById itemId . description .=
renderMarkdownBlock description'
2016-03-11 16:07:22 +03:00
use (itemById itemId)
setItemNotes :: Uid -> Text -> Acid.Update GlobalState Item
setItemNotes itemId notes' = do
itemById itemId . notes .=
renderMarkdownBlock notes'
2016-03-11 16:07:22 +03:00
use (itemById itemId)
2016-03-17 02:52:40 +03:00
setItemEcosystem :: Uid -> Text -> Acid.Update GlobalState Item
setItemEcosystem itemId ecosystem' = do
itemById itemId . ecosystem .=
renderMarkdownBlock ecosystem'
2016-03-17 02:52:40 +03:00
use (itemById itemId)
2016-03-11 16:07:22 +03:00
setTraitContent :: Uid -> Uid -> Text -> Acid.Update GlobalState Trait
setTraitContent itemId traitId content' = do
itemById itemId . traitById traitId . content .=
renderMarkdownInline content'
2016-03-11 16:07:22 +03:00
use (itemById itemId . traitById traitId)
-- delete
deleteItem :: Uid -> Acid.Update GlobalState ()
deleteItem itemId = do
let categoryLens :: Lens' GlobalState Category
categoryLens = categoryByItem itemId
let itemLens :: Lens' GlobalState Item
itemLens = itemById itemId
2016-03-24 20:55:17 +03:00
mbItem <- preuse itemLens
for_ mbItem $ \item -> do
-- 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
allItems <- use (categoryLens.items)
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”)
categoryLens.items %= deleteFirst ((== itemId) . view uid)
categoryLens.itemsDeleted %= (item:)
2016-03-11 16:07:22 +03:00
deleteTrait :: Uid -> Uid -> Acid.Update GlobalState ()
deleteTrait itemId traitId = do
2016-03-24 21:16:14 +03:00
let itemLens :: Lens' GlobalState Item
itemLens = itemById itemId
let isOurTrait trait = trait^.uid == traitId
mbItem <- preuse itemLens
for_ mbItem $ \item -> do
-- Determine whether the trait is a pro or a con, and proceed accordingly
case (find isOurTrait (item^.pros), find isOurTrait (item^.cons)) of
-- It's in neither group, which means it was deleted. Do nothing.
(Nothing, Nothing) -> return ()
-- It's a pro
(Just trait, _) -> do
itemLens.pros %= deleteFirst isOurTrait
itemLens.prosDeleted %= (trait:)
-- It's a con
(_, Just trait) -> do
itemLens.cons %= deleteFirst isOurTrait
itemLens.consDeleted %= (trait:)
2016-03-11 16:07:22 +03:00
-- other methods
moveItem
:: Uid
-> Bool -- ^ 'True' means up, 'False' means down
-> Acid.Update GlobalState ()
moveItem itemId up = do
let move = if up then moveUp else moveDown
categoryByItem itemId . items %= move ((== itemId) . view uid)
moveTrait
:: Uid
-> Uid
-> Bool -- ^ 'True' means up, 'False' means down
-> Acid.Update GlobalState ()
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 ((== traitId) . view uid)
itemById itemId . cons %= move ((== traitId) . view uid)
-- TODO: add a way to delete a category
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
'deleteItem,
'deleteTrait,
-- other
'moveItem, 'moveTrait
]