Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
41970ce4
Commit
41970ce4
authored
5 years ago
by
Vincent Texier
Browse files
Options
Downloads
Patches
Plain Diff
[enh]
#798
add send as source menu for all transactions and dividend in expert mode
Check is source exists before display menu
parent
317b41e0
No related branches found
No related tags found
1 merge request
!778
Release 0.51.0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sakia/gui/widgets/context_menu.py
+66
-17
66 additions, 17 deletions
src/sakia/gui/widgets/context_menu.py
with
66 additions
and
17 deletions
src/sakia/gui/widgets/context_menu.py
+
66
−
17
View file @
41970ce4
...
...
@@ -7,7 +7,7 @@ from duniterpy.constants import PUBKEY_REGEX
from
duniterpy.documents.crc_pubkey
import
CRCPubkey
from
sakia.app
import
Application
from
sakia.data.entities
import
Identity
,
Transaction
,
Dividend
,
Connection
from
sakia.data.entities
import
Identity
,
Transaction
,
Dividend
,
Connection
,
Source
from
sakia.data.processors
import
BlockchainProcessor
,
TransactionsProcessor
from
sakia.decorators
import
asyncify
from
sakia.gui.sub.certification.controller
import
CertificationController
...
...
@@ -106,7 +106,7 @@ class ContextMenu(QObject):
menu
.
qmenu
.
addAction
(
copy_selfcert
)
@staticmethod
def
_add_transfer
s
_actions
(
menu
,
transfer
):
def
_add_transfer_actions
(
menu
,
transfer
):
"""
:param ContextMenu menu: the qmenu to add actions to
:param Transfer transfer: the transfer
...
...
@@ -132,16 +132,26 @@ class ContextMenu(QObject):
)
menu
.
qmenu
.
addAction
(
cancel
)
# if special lock condition on transaction
...
if
trans
fer
.
conditions
is
not
None
:
send_as_source
=
QAction
(
QCoreApplication
.
translate
(
"
ContextMenu
"
,
"
Send as source
"
),
menu
.
qmenu
.
parent
(),
)
s
end_as_source
.
triggered
.
connect
(
lambda
checked
,
tr
=
transfer
:
menu
.
send_as_source
(
tr
)
# if special lock condition on transaction
or
# all
trans
action received in expert mode...
if
transfer
.
conditions
is
not
None
or
(
transfer
.
pubkey
in
transfer
.
receivers
and
menu
.
_app
.
parameters
.
expert_mode
):
# get source from conditions and transaction hash
s
ource
=
menu
.
_app
.
sources_service
.
get_one
(
identifier
=
transfer
.
sha_hash
,
conditions
=
transfer
.
conditions
)
menu
.
qmenu
.
addAction
(
send_as_source
)
if
source
:
# add send as source menu
send_as_source
=
QAction
(
QCoreApplication
.
translate
(
"
ContextMenu
"
,
"
Send as source
"
),
menu
.
qmenu
.
parent
(),
)
send_as_source
.
triggered
.
connect
(
lambda
checked
,
src
=
source
:
menu
.
send_as_source
(
src
)
)
menu
.
qmenu
.
addAction
(
send_as_source
)
if
menu
.
_app
.
parameters
.
expert_mode
:
copy_doc
=
QAction
(
QCoreApplication
.
translate
(
...
...
@@ -168,6 +178,32 @@ class ContextMenu(QObject):
)
menu
.
qmenu
.
addAction
(
copy_doc
)
@staticmethod
def
_add_dividend_actions
(
menu
,
dividend
):
"""
:param ContextMenu menu: the qmenu to add actions to
:param Transfer transfer: the transfer
"""
menu
.
qmenu
.
addSeparator
().
setText
(
QCoreApplication
.
translate
(
"
ContextMenu
"
,
"
Dividend
"
)
)
if
menu
.
_app
.
parameters
.
expert_mode
:
# get dividend source from block number and type
source
=
menu
.
_app
.
sources_service
.
get_one
(
noffset
=
dividend
.
block_number
,
type
=
Source
.
TYPE_DIVIDEND
)
if
source
:
# add send as source menu
send_as_source
=
QAction
(
QCoreApplication
.
translate
(
"
ContextMenu
"
,
"
Send as source
"
),
menu
.
qmenu
.
parent
(),
)
send_as_source
.
triggered
.
connect
(
lambda
checked
,
src
=
source
:
menu
.
send_dividend_as_source
(
src
)
)
menu
.
qmenu
.
addAction
(
send_as_source
)
@staticmethod
def
_add_string_actions
(
menu
,
str_value
):
if
re
.
match
(
PUBKEY_REGEX
,
str_value
):
...
...
@@ -219,8 +255,8 @@ class ContextMenu(QObject):
menu
=
cls
(
QMenu
(
parent
),
app
,
connection
)
build_actions
=
{
Identity
:
ContextMenu
.
_add_identity_actions
,
Transaction
:
ContextMenu
.
_add_transfer
s
_actions
,
Dividend
:
lambda
m
,
d
:
N
on
e
,
Transaction
:
ContextMenu
.
_add_transfer_actions
,
Dividend
:
ContextMenu
.
_add_dividend_acti
on
s
,
str
:
ContextMenu
.
_add_string_actions
,
dict
:
lambda
m
,
d
:
None
,
type
(
None
):
lambda
m
,
d
:
None
,
...
...
@@ -298,11 +334,24 @@ This money transfer will be removed and not sent.""",
self
.
_app
.
db
.
commit
()
self
.
_app
.
transaction_state_changed
.
emit
(
transfer
)
def
send_as_source
(
self
,
transfer
:
Transaction
):
# get source from conditions and transaction hash
source
=
self
.
_app
.
sources_service
.
get_one
(
identifier
=
transfer
.
sha_hash
,
conditions
=
transfer
.
conditions
def
send_as_source
(
self
,
source
:
Source
):
"""
Open transfer dialog with a transaction as source
:param Source source: Source entity to send
:return:
"""
TransferController
.
send_money_to_pubkey
(
None
,
self
.
_app
,
self
.
_connection
,
None
,
source
)
def
send_dividend_as_source
(
self
,
source
:
Source
):
"""
Open transfer dialog with a dividend as source
:param Source source: Source entity to send
:return:
"""
TransferController
.
send_money_to_pubkey
(
None
,
self
.
_app
,
self
.
_connection
,
None
,
source
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment