-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create use thresholds hook and use correct thresholds for reject origin #4588
Closed
Closed
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
bdbd78a
Use correct thresholds
ekowalsk b0ec808
Extract methods from useThresholds hook
ekowalsk c459564
Apply review suggestions
ekowalsk 5e8d7a2
Apply review suggestions
ekowalsk e572150
Apply review suggestions
ekowalsk 2465c86
Include proposalThresholds in useThresholds hook
ekowalsk 9ed5eb9
Restore config
ekowalsk fcdfc51
Simplify useThreshold hook
ekowalsk 4c5bfcb
Add option to thresholds config
ekowalsk a10d56f
Merge master
ekowalsk d81035c
Apply review suggestions
ekowalsk 7b39851
Merge branch 'master' into ek-use-thresholds
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,11 @@ | |
|
||
import { useMemo } from 'react'; | ||
|
||
import { PROPOSE_THRESHOLDS, REJECT_THRESHOLDS, SLASH_THRESHOLDS, TREASURY_THRESHOLDS } from '@polkadot/apps-config'; | ||
import { PROPOSE_THRESHOLDS, | ||
REJECT_THRESHOLDS, | ||
SLASH_THRESHOLDS, | ||
Threshold, | ||
TREASURY_THRESHOLDS } from '@polkadot/apps-config'; | ||
jacogr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import { useApi } from './useApi'; | ||
import { useMembers } from './useMembers'; | ||
|
@@ -25,6 +29,16 @@ export function getAtLeastThresholdMembersCount (membersCount: number, threshold | |
return Math.ceil(membersCount * thresholdRatio); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shall we add |
||
} | ||
|
||
function getThreshold (membersCount: number, threshold: Threshold): number { | ||
return threshold.option === 'AtLeast' | ||
? getAtLeastThresholdMembersCount( | ||
membersCount, | ||
threshold.value | ||
) | ||
: getMoreThanThresholdMembersCount(membersCount, | ||
threshold.value); | ||
jacogr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
export function useThresholds () : Thresholds { | ||
const { api } = useApi(); | ||
const { members } = useMembers(); | ||
|
@@ -39,20 +53,16 @@ export function useThresholds () : Thresholds { | |
const genesisHash = api.genesisHash.toHex(); | ||
|
||
return { | ||
proposalThreshold: getAtLeastThresholdMembersCount( | ||
membersCount, | ||
proposalThreshold: getThreshold(membersCount, | ||
PROPOSE_THRESHOLDS[genesisHash] || PROPOSE_THRESHOLDS.default | ||
), | ||
slashProposalThreshold: getAtLeastThresholdMembersCount( | ||
membersCount, | ||
slashProposalThreshold: getThreshold(membersCount, | ||
SLASH_THRESHOLDS[genesisHash] || SLASH_THRESHOLDS.default | ||
), | ||
treasuryProposalThreshold: getAtLeastThresholdMembersCount( | ||
membersCount, | ||
treasuryProposalThreshold: getThreshold(membersCount, | ||
TREASURY_THRESHOLDS[genesisHash] || TREASURY_THRESHOLDS.default | ||
), | ||
treasuryRejectionThreshold: getMoreThanThresholdMembersCount( | ||
membersCount, | ||
treasuryRejectionThreshold: getThreshold(membersCount, | ||
REJECT_THRESHOLDS[genesisHash] || REJECT_THRESHOLDS.default | ||
) | ||
}; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does it make sense to create an enum for these options? for simplifying further maintaining and exclude typos