Compare commits
No commits in common. "dbbce675f5eee3ffedfbc077b9a07e9df614a107" and "537f3bc46f8e669c7c74052c8ebcc752f0d2e0db" have entirely different histories.
dbbce675f5
...
537f3bc46f
6 changed files with 50 additions and 327 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -9,16 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Add GUI module
|
- Add GUI module
|
||||||
|
|
||||||
## [0.5.3.0-beta]
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Improved formatting of sync progress
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- Wallet sync when no new block has been detected on-chain.
|
|
||||||
|
|
||||||
## [0.5.2.0-beta]
|
## [0.5.2.0-beta]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
|
@ -62,7 +62,7 @@ import Control.Monad (forever, void)
|
||||||
import Control.Monad.IO.Class (liftIO)
|
import Control.Monad.IO.Class (liftIO)
|
||||||
import Control.Monad.Logger (LoggingT, runFileLoggingT, runNoLoggingT)
|
import Control.Monad.Logger (LoggingT, runFileLoggingT, runNoLoggingT)
|
||||||
import Data.Aeson
|
import Data.Aeson
|
||||||
import Data.HexString (HexString(..), toText)
|
import Data.HexString (toText)
|
||||||
import Data.Maybe
|
import Data.Maybe
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import qualified Data.Text.Encoding as E
|
import qualified Data.Text.Encoding as E
|
||||||
|
@ -76,7 +76,6 @@ import Lens.Micro ((&), (.~), (^.), set)
|
||||||
import Lens.Micro.Mtl
|
import Lens.Micro.Mtl
|
||||||
import Lens.Micro.TH
|
import Lens.Micro.TH
|
||||||
import System.Hclip
|
import System.Hclip
|
||||||
import Text.Printf
|
|
||||||
import Text.Wrap (FillScope(..), FillStrategy(..), WrapSettings(..), wrapText)
|
import Text.Wrap (FillScope(..), FillStrategy(..), WrapSettings(..), wrapText)
|
||||||
import ZcashHaskell.Keys (generateWalletSeedPhrase, getWalletSeed)
|
import ZcashHaskell.Keys (generateWalletSeedPhrase, getWalletSeed)
|
||||||
import ZcashHaskell.Orchard (getSaplingFromUA, isValidUnifiedAddress)
|
import ZcashHaskell.Orchard (getSaplingFromUA, isValidUnifiedAddress)
|
||||||
|
@ -139,7 +138,6 @@ data DisplayType
|
||||||
| MsgDisplay
|
| MsgDisplay
|
||||||
| PhraseDisplay
|
| PhraseDisplay
|
||||||
| TxDisplay
|
| TxDisplay
|
||||||
| TxIdDisplay
|
|
||||||
| SyncDisplay
|
| SyncDisplay
|
||||||
| SendDisplay
|
| SendDisplay
|
||||||
| BlankDisplay
|
| BlankDisplay
|
||||||
|
@ -147,7 +145,6 @@ data DisplayType
|
||||||
data Tick
|
data Tick
|
||||||
= TickVal !Float
|
= TickVal !Float
|
||||||
| TickMsg !String
|
| TickMsg !String
|
||||||
| TickTx !HexString
|
|
||||||
|
|
||||||
data State = State
|
data State = State
|
||||||
{ _network :: !ZcashNet
|
{ _network :: !ZcashNet
|
||||||
|
@ -172,7 +169,6 @@ data State = State
|
||||||
, _eventDispatch :: !(BC.BChan Tick)
|
, _eventDispatch :: !(BC.BChan Tick)
|
||||||
, _timer :: !Int
|
, _timer :: !Int
|
||||||
, _txForm :: !(Form SendInput () Name)
|
, _txForm :: !(Form SendInput () Name)
|
||||||
, _sentTx :: !(Maybe HexString)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
makeLenses ''State
|
makeLenses ''State
|
||||||
|
@ -352,7 +348,7 @@ drawUI s = [splashDialog s, helpDialog s, displayDialog s, inputDialog s, ui s]
|
||||||
(str
|
(str
|
||||||
" _____ _ _ _ \n|__ /___ _ __ (_) |_| |__\n / // _ \\ '_ \\| | __| '_ \\\n / /| __/ | | | | |_| | | |\n/____\\___|_| |_|_|\\__|_| |_|") <=>
|
" _____ _ _ _ \n|__ /___ _ __ (_) |_| |__\n / // _ \\ '_ \\| | __| '_ \\\n / /| __/ | | | | |_| | | |\n/____\\___|_| |_|_|\\__|_| |_|") <=>
|
||||||
C.hCenter
|
C.hCenter
|
||||||
(withAttr titleAttr (str "Zcash Wallet v0.5.3.0-beta")) <=>
|
(withAttr titleAttr (str "Zcash Wallet v0.5.2.0-beta")) <=>
|
||||||
C.hCenter (withAttr blinkAttr $ str "Press any key..."))
|
C.hCenter (withAttr blinkAttr $ str "Press any key..."))
|
||||||
else emptyWidget
|
else emptyWidget
|
||||||
capCommand :: String -> String -> Widget Name
|
capCommand :: String -> String -> Widget Name
|
||||||
|
@ -416,16 +412,6 @@ drawUI s = [splashDialog s, helpDialog s, displayDialog s, inputDialog s, ui s]
|
||||||
D.renderDialog
|
D.renderDialog
|
||||||
(D.dialog (Just $ txt "Message") Nothing 50)
|
(D.dialog (Just $ txt "Message") Nothing 50)
|
||||||
(padAll 1 $ strWrap $ st ^. msg)
|
(padAll 1 $ strWrap $ st ^. msg)
|
||||||
TxIdDisplay ->
|
|
||||||
withBorderStyle unicodeBold $
|
|
||||||
D.renderDialog
|
|
||||||
(D.dialog (Just $ txt "Success") Nothing 50)
|
|
||||||
(padAll 1 $
|
|
||||||
(txt "Tx ID: " <+>
|
|
||||||
txtWrapWith
|
|
||||||
(WrapSettings False True NoFill FillAfterFirst)
|
|
||||||
(maybe "None" toText (st ^. sentTx))) <=>
|
|
||||||
C.hCenter (hBox [capCommand "C" "opy", xCommand]))
|
|
||||||
TxDisplay ->
|
TxDisplay ->
|
||||||
case L.listSelectedElement $ st ^. transactions of
|
case L.listSelectedElement $ st ^. transactions of
|
||||||
Nothing -> emptyWidget
|
Nothing -> emptyWidget
|
||||||
|
@ -467,7 +453,7 @@ drawUI s = [splashDialog s, helpDialog s, displayDialog s, inputDialog s, ui s]
|
||||||
, (barToDoAttr, P.progressIncompleteAttr)
|
, (barToDoAttr, P.progressIncompleteAttr)
|
||||||
])
|
])
|
||||||
(P.progressBar
|
(P.progressBar
|
||||||
(Just $ printf "%.2f%%" (st ^. barValue * 100))
|
(Just $ show (st ^. barValue * 100))
|
||||||
(_barValue st))))
|
(_barValue st))))
|
||||||
SendDisplay ->
|
SendDisplay ->
|
||||||
withBorderStyle unicodeBold $
|
withBorderStyle unicodeBold $
|
||||||
|
@ -604,12 +590,8 @@ scanZebra dbP zHost zPort b eChan = do
|
||||||
liftIO $ BC.writeBChan eChan $ TickMsg "Invalid starting block for scan"
|
liftIO $ BC.writeBChan eChan $ TickMsg "Invalid starting block for scan"
|
||||||
else do
|
else do
|
||||||
let bList = [(sb + 1) .. (zgb_blocks bStatus)]
|
let bList = [(sb + 1) .. (zgb_blocks bStatus)]
|
||||||
if not (null bList)
|
let step = (1.0 :: Float) / fromIntegral (zgb_blocks bStatus - (sb + 1))
|
||||||
then do
|
mapM_ (processBlock pool step) bList
|
||||||
let step =
|
|
||||||
(1.0 :: Float) / fromIntegral (zgb_blocks bStatus - (sb + 1))
|
|
||||||
mapM_ (processBlock pool step) bList
|
|
||||||
else liftIO $ BC.writeBChan eChan $ TickVal 1.0
|
|
||||||
where
|
where
|
||||||
processBlock :: ConnectionPool -> Float -> Int -> IO ()
|
processBlock :: ConnectionPool -> Float -> Int -> IO ()
|
||||||
processBlock pool step bl = do
|
processBlock pool step bl = do
|
||||||
|
@ -658,21 +640,16 @@ appEvent (BT.AppEvent t) = do
|
||||||
MsgDisplay -> return ()
|
MsgDisplay -> return ()
|
||||||
PhraseDisplay -> return ()
|
PhraseDisplay -> return ()
|
||||||
TxDisplay -> return ()
|
TxDisplay -> return ()
|
||||||
TxIdDisplay -> return ()
|
|
||||||
SyncDisplay -> return ()
|
SyncDisplay -> return ()
|
||||||
SendDisplay -> do
|
SendDisplay -> do
|
||||||
BT.modify $ set msg m
|
BT.modify $ set msg m
|
||||||
BlankDisplay -> return ()
|
BlankDisplay -> return ()
|
||||||
TickTx txid -> do
|
|
||||||
BT.modify $ set sentTx (Just txid)
|
|
||||||
BT.modify $ set displayBox TxIdDisplay
|
|
||||||
TickVal v -> do
|
TickVal v -> do
|
||||||
case s ^. displayBox of
|
case s ^. displayBox of
|
||||||
AddrDisplay -> return ()
|
AddrDisplay -> return ()
|
||||||
MsgDisplay -> return ()
|
MsgDisplay -> return ()
|
||||||
PhraseDisplay -> return ()
|
PhraseDisplay -> return ()
|
||||||
TxDisplay -> return ()
|
TxDisplay -> return ()
|
||||||
TxIdDisplay -> return ()
|
|
||||||
SendDisplay -> return ()
|
SendDisplay -> return ()
|
||||||
SyncDisplay -> do
|
SyncDisplay -> do
|
||||||
if s ^. barValue == 1.0
|
if s ^. barValue == 1.0
|
||||||
|
@ -793,16 +770,6 @@ appEvent (BT.VtyEvent e) = do
|
||||||
MsgDisplay -> BT.modify $ set displayBox BlankDisplay
|
MsgDisplay -> BT.modify $ set displayBox BlankDisplay
|
||||||
PhraseDisplay -> BT.modify $ set displayBox BlankDisplay
|
PhraseDisplay -> BT.modify $ set displayBox BlankDisplay
|
||||||
TxDisplay -> BT.modify $ set displayBox BlankDisplay
|
TxDisplay -> BT.modify $ set displayBox BlankDisplay
|
||||||
TxIdDisplay -> do
|
|
||||||
case e of
|
|
||||||
V.EvKey (V.KChar 'x') [] ->
|
|
||||||
BT.modify $ set displayBox BlankDisplay
|
|
||||||
V.EvKey (V.KChar 'c') [] -> do
|
|
||||||
liftIO $
|
|
||||||
setClipboard $
|
|
||||||
T.unpack $ maybe "None" toText (s ^. sentTx)
|
|
||||||
BT.modify $ set msg "Copied transaction ID!"
|
|
||||||
_ev -> return ()
|
|
||||||
SendDisplay -> BT.modify $ set displayBox BlankDisplay
|
SendDisplay -> BT.modify $ set displayBox BlankDisplay
|
||||||
SyncDisplay -> BT.modify $ set displayBox BlankDisplay
|
SyncDisplay -> BT.modify $ set displayBox BlankDisplay
|
||||||
BlankDisplay -> do
|
BlankDisplay -> do
|
||||||
|
@ -1091,7 +1058,6 @@ runZenithCLI config = do
|
||||||
eventChan
|
eventChan
|
||||||
0
|
0
|
||||||
(mkSendForm 0 $ SendInput "" 0.0 "")
|
(mkSendForm 0 $ SendInput "" 0.0 "")
|
||||||
Nothing
|
|
||||||
Left e -> do
|
Left e -> do
|
||||||
print $
|
print $
|
||||||
"No Zebra node available on port " <>
|
"No Zebra node available on port " <>
|
||||||
|
@ -1301,7 +1267,7 @@ sendTransaction pool chan zHost zPort znet accId bl amt ua memo = do
|
||||||
[Data.Aeson.String $ toText rawTx]
|
[Data.Aeson.String $ toText rawTx]
|
||||||
case resp of
|
case resp of
|
||||||
Left e1 -> BC.writeBChan chan $ TickMsg $ "Zebra error: " ++ show e1
|
Left e1 -> BC.writeBChan chan $ TickMsg $ "Zebra error: " ++ show e1
|
||||||
Right txId -> BC.writeBChan chan $ TickTx txId
|
Right txId -> BC.writeBChan chan $ TickMsg $ "Tx ID: " ++ txId
|
||||||
where
|
where
|
||||||
parseAddress :: T.Text -> IO UnifiedAddress
|
parseAddress :: T.Text -> IO UnifiedAddress
|
||||||
parseAddress a =
|
parseAddress a =
|
||||||
|
|
|
@ -3,29 +3,18 @@
|
||||||
|
|
||||||
module Zenith.GUI where
|
module Zenith.GUI where
|
||||||
|
|
||||||
import Codec.Picture
|
|
||||||
import Codec.Picture.Types (pixelFold, promoteImage)
|
|
||||||
import Codec.QRCode
|
|
||||||
import Codec.QRCode.JuicyPixels
|
|
||||||
import Control.Exception (throwIO, try)
|
import Control.Exception (throwIO, try)
|
||||||
import Control.Monad.Logger (runNoLoggingT)
|
import Control.Monad.Logger (runNoLoggingT)
|
||||||
import qualified Data.ByteString as BS
|
|
||||||
import qualified Data.ByteString.Lazy as LBS
|
|
||||||
import Data.Maybe (fromMaybe, isJust)
|
import Data.Maybe (fromMaybe, isJust)
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import qualified Data.Text.Encoding as E
|
|
||||||
import Data.Time.Clock.POSIX (posixSecondsToUTCTime)
|
|
||||||
import Database.Persist
|
import Database.Persist
|
||||||
import Lens.Micro ((&), (+~), (.~), (?~), (^.), set)
|
import Lens.Micro ((&), (+~), (.~), (?~), (^.), set)
|
||||||
import Lens.Micro.TH
|
import Lens.Micro.TH
|
||||||
import Monomer
|
import Monomer
|
||||||
import qualified Monomer.Lens as L
|
import qualified Monomer.Lens as L
|
||||||
import TextShow
|
import TextShow
|
||||||
import ZcashHaskell.Orchard (getSaplingFromUA, isValidUnifiedAddress)
|
|
||||||
import ZcashHaskell.Transparent (encodeTransparentReceiver)
|
|
||||||
import ZcashHaskell.Types
|
import ZcashHaskell.Types
|
||||||
( UnifiedAddress(..)
|
( ZcashNet(..)
|
||||||
, ZcashNet(..)
|
|
||||||
, ZebraGetBlockChainInfo(..)
|
, ZebraGetBlockChainInfo(..)
|
||||||
, ZebraGetInfo(..)
|
, ZebraGetInfo(..)
|
||||||
)
|
)
|
||||||
|
@ -50,7 +39,6 @@ data AppModel = AppModel
|
||||||
, _zebraOn :: !Bool
|
, _zebraOn :: !Bool
|
||||||
, _balance :: !Integer
|
, _balance :: !Integer
|
||||||
, _unconfBalance :: !(Maybe Integer)
|
, _unconfBalance :: !(Maybe Integer)
|
||||||
, _selPool :: !ZcashPool
|
|
||||||
} deriving (Eq, Show)
|
} deriving (Eq, Show)
|
||||||
|
|
||||||
makeLenses ''AppModel
|
makeLenses ''AppModel
|
||||||
|
@ -61,7 +49,6 @@ data AppEvent
|
||||||
| CloseMsg
|
| CloseMsg
|
||||||
| WalletClicked
|
| WalletClicked
|
||||||
| AccountClicked
|
| AccountClicked
|
||||||
| SetPool !ZcashPool
|
|
||||||
deriving (Eq, Show)
|
deriving (Eq, Show)
|
||||||
|
|
||||||
remixArrowRightWideLine :: T.Text
|
remixArrowRightWideLine :: T.Text
|
||||||
|
@ -77,7 +64,7 @@ buildUI ::
|
||||||
WidgetEnv AppModel AppEvent -> AppModel -> WidgetNode AppModel AppEvent
|
WidgetEnv AppModel AppEvent -> AppModel -> WidgetNode AppModel AppEvent
|
||||||
buildUI wenv model = widgetTree
|
buildUI wenv model = widgetTree
|
||||||
where
|
where
|
||||||
btnColor = rgbHex "#ff5722" --rgbHex "#1818B2"
|
btnColor = rgbHex "#1818B2"
|
||||||
btnHiLite = rgbHex "#207DE8"
|
btnHiLite = rgbHex "#207DE8"
|
||||||
currentWallet =
|
currentWallet =
|
||||||
if null (model ^. wallets)
|
if null (model ^. wallets)
|
||||||
|
@ -87,10 +74,6 @@ buildUI wenv model = widgetTree
|
||||||
if null (model ^. accounts)
|
if null (model ^. accounts)
|
||||||
then Nothing
|
then Nothing
|
||||||
else Just ((model ^. accounts) !! (model ^. selAcc))
|
else Just ((model ^. accounts) !! (model ^. selAcc))
|
||||||
currentAddress =
|
|
||||||
if null (model ^. addresses)
|
|
||||||
then Nothing
|
|
||||||
else Just ((model ^. addresses) !! (model ^. selAddr))
|
|
||||||
widgetTree =
|
widgetTree =
|
||||||
zstack [mainWindow, msgOverlay `nodeVisible` isJust (model ^. msg)]
|
zstack [mainWindow, msgOverlay `nodeVisible` isJust (model ^. msg)]
|
||||||
mainWindow =
|
mainWindow =
|
||||||
|
@ -112,9 +95,8 @@ buildUI wenv model = widgetTree
|
||||||
[cursorHand, height 25, padding 3] `styleHover`
|
[cursorHand, height 25, padding 3] `styleHover`
|
||||||
[bgColor btnHiLite]
|
[bgColor btnHiLite]
|
||||||
, filler
|
, filler
|
||||||
, remixIcon remixErrorWarningFill `styleBasic` [textColor white]
|
, remixIcon remixErrorWarningFill
|
||||||
, label "Testnet" `styleBasic` [textColor white] `nodeVisible`
|
, label "Testnet" `nodeVisible` (model ^. network == TestNet)
|
||||||
(model ^. network == TestNet)
|
|
||||||
] `styleBasic`
|
] `styleBasic`
|
||||||
[bgColor btnColor]
|
[bgColor btnColor]
|
||||||
walletButton =
|
walletButton =
|
||||||
|
@ -133,177 +115,47 @@ buildUI wenv model = widgetTree
|
||||||
]
|
]
|
||||||
mainPane = box_ [alignMiddle] $ hstack [addressBox, txBox]
|
mainPane = box_ [alignMiddle] $ hstack [addressBox, txBox]
|
||||||
balanceBox =
|
balanceBox =
|
||||||
hstack
|
|
||||||
[ filler
|
|
||||||
, boxShadow $
|
|
||||||
box_
|
|
||||||
[alignMiddle]
|
|
||||||
(vstack
|
|
||||||
[ animFadeIn
|
|
||||||
(label (displayAmount (model ^. network) $ model ^. balance) `styleBasic`
|
|
||||||
[textSize 20])
|
|
||||||
, hstack
|
|
||||||
[ filler
|
|
||||||
, remixIcon remixHourglassFill `styleBasic` [textSize 8]
|
|
||||||
, label
|
|
||||||
(maybe "0" (displayAmount (model ^. network)) $
|
|
||||||
model ^. unconfBalance) `styleBasic`
|
|
||||||
[textSize 8] `nodeVisible`
|
|
||||||
isJust (model ^. unconfBalance)
|
|
||||||
, filler
|
|
||||||
]
|
|
||||||
]) `styleBasic`
|
|
||||||
[bgColor white, radius 5, border 1 btnColor]
|
|
||||||
, filler
|
|
||||||
]
|
|
||||||
addressBox =
|
|
||||||
boxShadow $
|
|
||||||
vstack
|
|
||||||
[ box_
|
|
||||||
[alignMiddle]
|
|
||||||
(vstack
|
|
||||||
[ label "Addresses" `styleBasic`
|
|
||||||
[textFont "Bold", textColor white, bgColor btnColor]
|
|
||||||
, vscroll (vstack (zipWith addrRow [0 ..] (model ^. addresses))) `nodeKey`
|
|
||||||
"addrScroll"
|
|
||||||
]) `styleBasic`
|
|
||||||
[padding 3, radius 2, bgColor white]
|
|
||||||
, addrQRCode currentAddress (model ^. selPool)
|
|
||||||
]
|
|
||||||
addrQRCode ::
|
|
||||||
Maybe (Entity WalletAddress)
|
|
||||||
-> ZcashPool
|
|
||||||
-> WidgetNode AppModel AppEvent
|
|
||||||
addrQRCode wAddr zp =
|
|
||||||
case encodeText (defaultQRCodeOptions L) Utf8WithoutECI =<< dispAddr of
|
|
||||||
Just qr ->
|
|
||||||
box_
|
|
||||||
[alignMiddle]
|
|
||||||
(hstack
|
|
||||||
[ filler
|
|
||||||
, vstack
|
|
||||||
[ box_
|
|
||||||
[onClick (SetPool Orchard)]
|
|
||||||
(remixIcon remixShieldCheckFill `styleBasic`
|
|
||||||
[ textSize 14
|
|
||||||
, padding 4
|
|
||||||
, styleIf
|
|
||||||
(model ^. selPool == Orchard)
|
|
||||||
(bgColor btnColor)
|
|
||||||
])
|
|
||||||
, filler
|
|
||||||
, box_
|
|
||||||
[onClick (SetPool Sapling)]
|
|
||||||
(remixIcon remixShieldLine `styleBasic`
|
|
||||||
[ textSize 14
|
|
||||||
, padding 4
|
|
||||||
, styleIf
|
|
||||||
(model ^. selPool == Sapling)
|
|
||||||
(bgColor btnColor)
|
|
||||||
])
|
|
||||||
, filler
|
|
||||||
, box_
|
|
||||||
[onClick (SetPool Transparent)]
|
|
||||||
(remixIcon remixDislikeLine `styleBasic`
|
|
||||||
[ textSize 14
|
|
||||||
, padding 4
|
|
||||||
, styleIf
|
|
||||||
(model ^. selPool == Transparent)
|
|
||||||
(bgColor btnColor)
|
|
||||||
])
|
|
||||||
]
|
|
||||||
, vstack
|
|
||||||
[ label
|
|
||||||
(case model ^. selPool of
|
|
||||||
Orchard -> "Unified"
|
|
||||||
Sapling -> "Legacy Shielded"
|
|
||||||
Transparent -> "Transparent"
|
|
||||||
Sprout -> "Unknown")
|
|
||||||
, imageMem_
|
|
||||||
(T.pack $ show zp)
|
|
||||||
(qrCodeBytes qr)
|
|
||||||
(qrCodeSize qr)
|
|
||||||
[fitNone]
|
|
||||||
]
|
|
||||||
, filler
|
|
||||||
])
|
|
||||||
Nothing ->
|
|
||||||
box_ [alignMiddle] (image_ "./assets/2620_color.png" [fitFill])
|
|
||||||
where
|
|
||||||
qrCodeImg :: QRImage -> Image PixelRGBA8
|
|
||||||
qrCodeImg qr = promoteImage (toImage 4 1 qr)
|
|
||||||
qrCodeSize :: QRImage -> Size
|
|
||||||
qrCodeSize qr =
|
|
||||||
Size
|
|
||||||
(fromIntegral $ imageWidth $ qrCodeImg qr)
|
|
||||||
(fromIntegral $ imageHeight $ qrCodeImg qr)
|
|
||||||
qrCodeBytes :: QRImage -> BS.ByteString
|
|
||||||
qrCodeBytes qr =
|
|
||||||
BS.pack $
|
|
||||||
pixelFold
|
|
||||||
(\bs _ _ (PixelRGBA8 i j k l) -> bs <> [i, j, k, l])
|
|
||||||
[]
|
|
||||||
(qrCodeImg qr)
|
|
||||||
dispAddr :: Maybe T.Text
|
|
||||||
dispAddr =
|
|
||||||
case zp of
|
|
||||||
Transparent ->
|
|
||||||
T.append "zcash:" . encodeTransparentReceiver (model ^. network) <$>
|
|
||||||
(t_rec =<<
|
|
||||||
(isValidUnifiedAddress .
|
|
||||||
E.encodeUtf8 . getUA . walletAddressUAddress . entityVal) =<<
|
|
||||||
wAddr)
|
|
||||||
Sapling ->
|
|
||||||
T.append "zcash:" <$>
|
|
||||||
(getSaplingFromUA .
|
|
||||||
E.encodeUtf8 . getUA . walletAddressUAddress . entityVal =<<
|
|
||||||
wAddr)
|
|
||||||
Orchard ->
|
|
||||||
T.append "zcash:" . getUA . walletAddressUAddress . entityVal <$>
|
|
||||||
wAddr
|
|
||||||
Sprout -> Nothing
|
|
||||||
addrRow :: Int -> Entity WalletAddress -> WidgetNode AppModel AppEvent
|
|
||||||
addrRow idx wAddr =
|
|
||||||
box_
|
|
||||||
[onClick $ ShowMsg ("You clicked address " <> showt idx), alignLeft]
|
|
||||||
(label
|
|
||||||
(walletAddressName (entityVal wAddr) <>
|
|
||||||
": " <> showAddress (walletAddressUAddress $ entityVal wAddr))) `styleBasic`
|
|
||||||
[padding 1, borderB 1 gray]
|
|
||||||
txBox =
|
|
||||||
boxShadow $
|
|
||||||
box_
|
box_
|
||||||
[alignMiddle]
|
[alignMiddle]
|
||||||
(vstack
|
(vstack
|
||||||
[ label "Transactions" `styleBasic`
|
[ animFadeIn
|
||||||
[textFont "Bold", bgColor btnColor, textColor white]
|
(label (displayAmount (model ^. network) $ model ^. balance) `styleBasic`
|
||||||
, vscroll (vstack (zipWith txRow [0 ..] (model ^. transactions))) `nodeKey`
|
[textSize 20])
|
||||||
"txScroll"
|
, hstack
|
||||||
]) `styleBasic`
|
[ filler
|
||||||
[radius 2, padding 3, bgColor white]
|
, remixIcon remixHourglassFill `styleBasic` [textSize 8]
|
||||||
txRow :: Int -> Entity UserTx -> WidgetNode AppModel AppEvent
|
, label
|
||||||
txRow idx tx =
|
(maybe "0" (displayAmount (model ^. network)) $
|
||||||
|
model ^. unconfBalance) `styleBasic`
|
||||||
|
[textSize 8] `nodeVisible`
|
||||||
|
isJust (model ^. unconfBalance)
|
||||||
|
, filler
|
||||||
|
]
|
||||||
|
])
|
||||||
|
addressBox =
|
||||||
box_
|
box_
|
||||||
[onClick $ ShowMsg ("You clicked transaction " <> showt idx)]
|
[alignMiddle]
|
||||||
(hstack
|
(vstack
|
||||||
[ label
|
[ label "Addresses:" `styleBasic` [textFont "Regular"]
|
||||||
(T.pack $
|
, vscroll (vstack (zipWith addrRow [0 ..] (model ^. addresses))) `nodeKey`
|
||||||
show
|
"addrScroll"
|
||||||
(posixSecondsToUTCTime
|
|
||||||
(fromIntegral (userTxTime $ entityVal tx))))
|
|
||||||
, filler
|
|
||||||
, widgetIf
|
|
||||||
(T.length (userTxMemo $ entityVal tx) > 1)
|
|
||||||
(remixIcon remixDiscussFill)
|
|
||||||
, if 0 >= userTxAmount (entityVal tx)
|
|
||||||
then remixIcon remixArrowRightUpFill `styleBasic` [textColor red]
|
|
||||||
else remixIcon remixArrowRightDownFill `styleBasic`
|
|
||||||
[textColor green]
|
|
||||||
, label $
|
|
||||||
displayAmount (model ^. network) $
|
|
||||||
fromIntegral $ userTxAmount (entityVal tx)
|
|
||||||
]) `styleBasic`
|
]) `styleBasic`
|
||||||
[padding 2, borderB 1 gray]
|
[border 1 whiteSmoke]
|
||||||
|
addrRow :: Int -> Entity WalletAddress -> WidgetNode AppModel AppEvent
|
||||||
|
addrRow idx wAddr =
|
||||||
|
box_
|
||||||
|
[onClick $ ShowMsg ("You clicked address " <> showt idx)]
|
||||||
|
(label
|
||||||
|
(walletAddressName (entityVal wAddr) <>
|
||||||
|
": " <> showAddress (walletAddressUAddress $ entityVal wAddr)))
|
||||||
|
txBox =
|
||||||
|
box_
|
||||||
|
[alignMiddle]
|
||||||
|
(vstack
|
||||||
|
[ label "Transactions:" `styleBasic` [textFont "Regular"]
|
||||||
|
, label "2024-04-05 0.003 ZEC" `styleBasic` [textFont "Regular"]
|
||||||
|
]) `styleBasic`
|
||||||
|
[border 1 whiteSmoke]
|
||||||
windowFooter =
|
windowFooter =
|
||||||
hstack
|
hstack
|
||||||
[ label
|
[ label
|
||||||
|
@ -339,7 +191,6 @@ handleEvent wenv node model evt =
|
||||||
ShowMsg t -> [Model $ model & msg ?~ t]
|
ShowMsg t -> [Model $ model & msg ?~ t]
|
||||||
WalletClicked -> [Model $ model & msg ?~ "You clicked Wallet!"]
|
WalletClicked -> [Model $ model & msg ?~ "You clicked Wallet!"]
|
||||||
AccountClicked -> [Model $ model & msg ?~ "You clicked Account!"]
|
AccountClicked -> [Model $ model & msg ?~ "You clicked Account!"]
|
||||||
SetPool p -> [Model $ model & selPool .~ p]
|
|
||||||
CloseMsg -> [Model $ model & msg .~ Nothing]
|
CloseMsg -> [Model $ model & msg .~ Nothing]
|
||||||
|
|
||||||
runZenithGUI :: Config -> IO ()
|
runZenithGUI :: Config -> IO ()
|
||||||
|
@ -387,7 +238,6 @@ runZenithGUI config = do
|
||||||
True
|
True
|
||||||
314259000
|
314259000
|
||||||
(Just 300000)
|
(Just 300000)
|
||||||
Transparent
|
|
||||||
startApp model handleEvent buildUI params
|
startApp model handleEvent buildUI params
|
||||||
Left e -> do
|
Left e -> do
|
||||||
initDb dbFilePath
|
initDb dbFilePath
|
||||||
|
@ -409,7 +259,6 @@ runZenithGUI config = do
|
||||||
False
|
False
|
||||||
314259000
|
314259000
|
||||||
(Just 30000)
|
(Just 30000)
|
||||||
Orchard
|
|
||||||
startApp model handleEvent buildUI params
|
startApp model handleEvent buildUI params
|
||||||
where
|
where
|
||||||
params =
|
params =
|
||||||
|
|
|
@ -14,13 +14,13 @@ import qualified Monomer.Lens as L
|
||||||
|
|
||||||
zenithTheme :: Theme
|
zenithTheme :: Theme
|
||||||
zenithTheme =
|
zenithTheme =
|
||||||
baseTheme zgoThemeColors & L.basic . L.labelStyle . L.text ?~
|
baseTheme zenithThemeColors & L.basic . L.labelStyle . L.text ?~
|
||||||
TextStyle
|
TextStyle
|
||||||
Nothing
|
Nothing
|
||||||
(Just . FontSize $ 10)
|
(Just . FontSize $ 10)
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
(Just black)
|
(Just whiteSmoke)
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
|
@ -34,7 +34,7 @@ zenithTheme =
|
||||||
(Just . FontSize $ 10)
|
(Just . FontSize $ 10)
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
(Just black)
|
(Just whiteSmoke)
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
Nothing
|
Nothing
|
||||||
|
@ -122,85 +122,6 @@ zenithThemeColors =
|
||||||
, tooltipText = white
|
, tooltipText = white
|
||||||
}
|
}
|
||||||
|
|
||||||
zgoThemeColors =
|
|
||||||
BaseThemeColors
|
|
||||||
{ clearColor = gray10 -- gray12,
|
|
||||||
, sectionColor = gray09 -- gray11,
|
|
||||||
, btnFocusBorder = blue08
|
|
||||||
, btnBgBasic = gray07
|
|
||||||
, btnBgHover = gray07c
|
|
||||||
, btnBgFocus = gray07b
|
|
||||||
, btnBgActive = gray06
|
|
||||||
, btnBgDisabled = gray05
|
|
||||||
, btnText = gray02
|
|
||||||
, btnTextDisabled = gray02
|
|
||||||
, btnMainFocusBorder = blue09
|
|
||||||
, btnMainBgBasic = blue05b
|
|
||||||
, btnMainBgHover = blue06
|
|
||||||
, btnMainBgFocus = blue05c
|
|
||||||
, btnMainBgActive = blue05
|
|
||||||
, btnMainBgDisabled = blue04
|
|
||||||
, btnMainText = white
|
|
||||||
, btnMainTextDisabled = white
|
|
||||||
, dialogBg = white
|
|
||||||
, dialogBorder = white
|
|
||||||
, dialogText = black
|
|
||||||
, dialogTitleText = black
|
|
||||||
, emptyOverlay = gray07 & L.a .~ 0.8
|
|
||||||
, shadow = gray00 & L.a .~ 0.2
|
|
||||||
, externalLinkBasic = blue07
|
|
||||||
, externalLinkHover = blue08
|
|
||||||
, externalLinkFocus = blue07
|
|
||||||
, externalLinkActive = blue06
|
|
||||||
, externalLinkDisabled = gray06
|
|
||||||
, iconBg = gray07
|
|
||||||
, iconFg = gray01
|
|
||||||
, inputIconFg = black
|
|
||||||
, inputBorder = gray06
|
|
||||||
, inputFocusBorder = blue07
|
|
||||||
, inputBgBasic = gray10
|
|
||||||
, inputBgHover = white
|
|
||||||
, inputBgFocus = white
|
|
||||||
, inputBgActive = gray09
|
|
||||||
, inputBgDisabled = gray05
|
|
||||||
, inputFgBasic = gray05
|
|
||||||
, inputFgHover = blue07
|
|
||||||
, inputFgFocus = blue07
|
|
||||||
, inputFgActive = blue06
|
|
||||||
, inputFgDisabled = gray04
|
|
||||||
, inputSndBasic = gray04
|
|
||||||
, inputSndHover = gray05
|
|
||||||
, inputSndFocus = gray05
|
|
||||||
, inputSndActive = gray04
|
|
||||||
, inputSndDisabled = gray03
|
|
||||||
, inputHlBasic = gray06
|
|
||||||
, inputHlHover = blue07
|
|
||||||
, inputHlFocus = blue07
|
|
||||||
, inputHlActive = blue06
|
|
||||||
, inputHlDisabled = gray05
|
|
||||||
, inputSelBasic = gray07
|
|
||||||
, inputSelFocus = blue08
|
|
||||||
, inputText = black
|
|
||||||
, inputTextDisabled = gray02
|
|
||||||
, labelText = black
|
|
||||||
, scrollBarBasic = gray03 & L.a .~ 0.2
|
|
||||||
, scrollThumbBasic = gray01 & L.a .~ 0.2
|
|
||||||
, scrollBarHover = gray07 & L.a .~ 0.8
|
|
||||||
, scrollThumbHover = gray05 & L.a .~ 0.8
|
|
||||||
, slMainBg = white
|
|
||||||
, slNormalBgBasic = transparent
|
|
||||||
, slNormalBgHover = gray09
|
|
||||||
, slNormalText = black
|
|
||||||
, slNormalFocusBorder = blue07
|
|
||||||
, slSelectedBgBasic = gray08
|
|
||||||
, slSelectedBgHover = gray09
|
|
||||||
, slSelectedText = black
|
|
||||||
, slSelectedFocusBorder = blue07
|
|
||||||
, tooltipBorder = gray08
|
|
||||||
, tooltipBg = gray07
|
|
||||||
, tooltipText = black
|
|
||||||
}
|
|
||||||
|
|
||||||
--black = rgbHex "#000000"
|
--black = rgbHex "#000000"
|
||||||
{-white = rgbHex "#FFFFFF"-}
|
{-white = rgbHex "#FFFFFF"-}
|
||||||
blue01 = rgbHex "#002159"
|
blue01 = rgbHex "#002159"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
cabal-version: 3.0
|
cabal-version: 3.0
|
||||||
name: zenith
|
name: zenith
|
||||||
version: 0.5.3.0-beta
|
version: 0.5.2.0-beta
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Rene Vergara
|
author: Rene Vergara
|
||||||
|
@ -60,9 +60,6 @@ library
|
||||||
, http-client
|
, http-client
|
||||||
, http-conduit
|
, http-conduit
|
||||||
, http-types
|
, http-types
|
||||||
, JuicyPixels
|
|
||||||
, qrcode-core
|
|
||||||
, qrcode-juicypixels
|
|
||||||
, microlens
|
, microlens
|
||||||
, microlens-mtl
|
, microlens-mtl
|
||||||
, microlens-th
|
, microlens-th
|
||||||
|
|
Loading…
Reference in a new issue