1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
{- Lazymail state, and operations on it.
-
- Copyright 2013 Raúl Benencia <rul@kalgan.cc>
-
- Licensed under the GNU GPL version 3 or higher
-
-}
module State where
import Text.ParserCombinators.Parsec.Rfc2822(Message, GenericMessage(..))
import UI.NCurses(ColorID(..), defaultColorID)
import Network.Email.Mailbox(Flag(..), Flags)
import System.FilePath
data Mode = MaildirMode | IndexMode | EmailMode | ComposeMode
data LazymailState = LazymailState {
mode :: Mode
, basePath :: FilePath
, screenRows :: Int
, screenColumns :: Int
, currentRow :: Int
, columnPadding :: Int
, exitRequested :: Bool
, statusBar :: Bool
, maildirState :: MaildirState
, indexState :: IndexState
, emailState :: EmailState
, composeState :: ComposeState
, colorStyle :: ColorStyle
}
data MaildirState = MaildirState {
selectedRowMD :: Int
, selectedMD :: String
, detectedMDs :: [(FilePath, String)]
, scrollRowMD :: Int
, scrollBufferMD :: [(FilePath, String)]
}
data IndexState = IndexState {
selectedRowIn :: Int
, selectedEmailPath :: FilePath
, selectedEmails :: [(FilePath, String)]
, scrollRowIn :: Int
, currentInLen :: Int
, scrollBufferIn :: [(FilePath, String)]
}
data ComposeState = ComposeState {
composition :: Maybe String
}
data EmailState = EmailState {
scrollRowEm :: Int
, emailLines :: [String]
, currentEmail :: Message
}
data ColorStyle = ColorStyle {
baseColorID :: ColorID
, selectionColorID :: ColorID
, statusBarColorID :: ColorID
, headerColorID :: ColorID
}
initialState = LazymailState {
mode = MaildirMode
, basePath = ""
, screenRows = 0
, screenColumns = 0
, currentRow = 0
, columnPadding = 0
, exitRequested = False
, statusBar = True
, maildirState = initialMaildirState
, indexState = initialIndexState
, composeState = initialComposeState
, emailState = initialEmailState
, colorStyle = initialColorStyle
}
initialMaildirState = MaildirState {
selectedRowMD = 0
, selectedMD = ""
, detectedMDs = []
, scrollRowMD = 0
, scrollBufferMD = []
}
initialIndexState = IndexState {
selectedRowIn = 0
, selectedEmailPath = ""
, selectedEmails = []
, scrollRowIn = 0
, currentInLen = 0
, scrollBufferIn = []
}
initialEmailState = EmailState {
scrollRowEm = 0
, emailLines = []
, currentEmail = Message [] "Dummy email"
}
initialComposeState = ComposeState {
composition = Nothing
}
initialColorStyle = ColorStyle {
baseColorID = defaultColorID
, selectionColorID = defaultColorID
, statusBarColorID = defaultColorID
, headerColorID = defaultColorID
}
scrColsAsInteger st = toInteger $ screenColumns st
scrRowsAsInteger st = toInteger $ screenRows st
curRowAsInteger st = toInteger $ currentRow st
colPadAsInteger st = toInteger $ columnPadding st
incrementSelectedRow st | (selectedRow st) < limit =
case (mode st) of
MaildirMode ->
let
sr = (selectedRowMD . maildirState) st
maildirState' = (maildirState st) { selectedRowMD = sr + 1 }
in
st { maildirState = maildirState' }
IndexMode ->
let
sr = (selectedRowIn . indexState) st
indexState' = (indexState st) { selectedRowIn = sr + 1 }
in
st { indexState = indexState' }
_ -> st
| otherwise = st
where
scrRows = screenRows st
curInLen = length $ selectedEmails . indexState $ st
curMDLen = length $ detectedMDs . maildirState $ st
limit' = case (mode st) of
MaildirMode -> if curMDLen < scrRows then curMDLen - 1 else scrRows
IndexMode -> if curInLen < scrRows then curInLen - 1 else scrRows
limit = if (statusBar st) && (limit' == scrRows)
then fromIntegral $ limit' - 2
else fromIntegral limit'
decrementSelectedRow st | (selectedRow st) > 0 =
case (mode st) of
MaildirMode ->
let
sr = (selectedRowMD . maildirState) st
maildirState' = (maildirState st) { selectedRowMD = sr - 1 }
in
st { maildirState = maildirState' }
IndexMode ->
let
sr = (selectedRowIn . indexState) st
indexState' = (indexState st) { selectedRowIn = sr - 1 }
in
st { indexState = indexState' }
_ -> st
| otherwise = st
selectedRow st = case (mode st) of
MaildirMode -> selectedRowMD . maildirState $ st
IndexMode -> selectedRowIn . indexState $ st
|