glirc-2.20.5: src/Client/View/UserList.hs
{-# Language OverloadedStrings #-}
{-|
Module : Client.View.UserList
Description : Line renderers for channel user list view
Copyright : (c) Eric Mertens, 2016
License : ISC
Maintainer : emertens@gmail.com
This module renders the lines used in the channel user list.
-}
module Client.View.UserList
( userListImages
, userInfoImages
) where
import Client.Image.Message
import Client.Image.Palette
import Client.State
import Client.State.Channel
import Client.State.Network
import Control.Lens
import qualified Data.HashMap.Strict as HashMap
import qualified Data.Map.Strict as Map
import Data.List
import Data.Maybe
import Data.Ord
import Data.Text (Text)
import qualified Data.Text as Text
import Graphics.Vty.Attributes
import Graphics.Vty.Image
import Irc.Identifier
import Irc.UserInfo
-- | Render the lines used by the @/users@ command in normal mode.
-- These lines show the count of users having each channel mode
-- in addition to the nicknames of the users.
userListImages ::
Text {- ^ network -} ->
Identifier {- ^ channel -} ->
ClientState ->
[Image]
userListImages network channel st =
case preview (clientConnection network) st of
Just cs -> userListImages' cs channel st
Nothing -> [text' (view palError pal) "No connection"]
where
pal = clientPalette st
userListImages' :: NetworkState -> Identifier -> ClientState -> [Image]
userListImages' cs channel st =
[countImage, horizCat (intersperse gap (map renderUser usersList))]
where
countImage = text' (view palLabel pal) "Users:" <|>
sigilCountImage
matcher = fromMaybe (const True) (clientMatcher st)
myNicks = clientHighlights cs st
renderUser (ident, sigils) =
string (view palSigil pal) sigils <|>
coloredIdentifier pal NormalIdentifier myNicks ident
gap = char defAttr ' '
matcher' (ident,sigils) = matcher (Text.pack sigils `Text.append` idText ident)
usersList = sortBy (comparing fst)
$ filter matcher'
$ HashMap.toList usersHashMap
sigilCounts = Map.fromListWith (+)
[ (take 1 sigil, 1::Int) | (_,sigil) <- usersList ]
sigilCountImage = horizCat
[ string (view palSigil pal) (' ':sigil) <|>
string defAttr (show n)
| (sigil,n) <- Map.toList sigilCounts
]
pal = clientPalette st
usersHashMap =
view (csChannels . ix channel . chanUsers) cs
-- | Render lines for the @/users@ command in detailed view.
-- Each user will be rendered on a separate line with username
-- and host visible when known.
userInfoImages ::
Text {- ^ network -} ->
Identifier {- ^ channel -} ->
ClientState ->
[Image]
userInfoImages network channel st =
case preview (clientConnection network) st of
Just cs -> userInfoImages' cs channel st
Nothing -> [text' (view palError pal) "No connection"]
where
pal = clientPalette st
userInfoImages' :: NetworkState -> Identifier -> ClientState -> [Image]
userInfoImages' cs channel st = renderEntry <$> usersList
where
matcher = fromMaybe (const True) (clientMatcher st)
myNicks = clientHighlights cs st
pal = clientPalette st
renderEntry (info, sigils) =
string (view palSigil pal) sigils <|>
coloredUserInfo pal DetailedRender myNicks info
matcher' (info,sigils) =
matcher (Text.pack sigils `Text.append` renderUserInfo info)
userInfos = view csUsers cs
toInfo nick =
case view (at nick) userInfos of
Just (UserAndHost n h) -> UserInfo nick n h
Nothing -> UserInfo nick "" ""
usersList = sortBy (flip (comparing (userNick . fst)))
$ filter matcher'
$ map (over _1 toInfo)
$ HashMap.toList usersHashMap
usersHashMap = view (csChannels . ix channel . chanUsers) cs