react-icons/fi#FiArrowUp TypeScript Examples
The following examples show how to use
react-icons/fi#FiArrowUp.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ChildOrder.tsx From tobira with Apache License 2.0 | 5 votes |
ChildList: React.FC<ChildListProps> = ({ disabled, children, swap }) => {
const { t } = useTranslation();
return (
<ol css={{
marginLeft: 32,
maxWidth: 900,
padding: 0,
...disabled && {
pointerEvents: "none",
opacity: 0.5,
},
}}>
{children.map((child, i) => (
<li key={child.id} css={{
display: "flex",
alignItems: "center",
border: "1px solid var(--grey80)",
margin: 4,
borderRadius: 4,
overflow: "hidden",
}}>
<div css={{
display: "flex",
flexDirection: "column",
marginRight: 16,
fontSize: 20,
"& > button": {
border: "none",
display: "flex",
alignItems: "center",
borderRight: "1px solid var(--grey80)",
padding: "4px 16px",
backgroundColor: "inherit",
"&:disabled": {
color: "transparent",
},
"&:not([disabled])": {
cursor: "pointer",
"&:hover": {
backgroundColor: "var(--grey97)",
color: "var(--accent-color)",
},
},
"&:first-child": {
borderBottom: "1px solid var(--grey80)",
},
},
}}>
<button
onClick={() => swap(i - 1)}
title={t("direction-up")}
disabled={i === 0}
><FiArrowUp /></button>
<button
onClick={() => swap(i)}
title={t("direction-down")}
disabled={i === children.length - 1}
><FiArrowDown /></button>
</div>
<div css={{ padding: 4 }}>{child.name}</div>
</li>
))}
</ol>
);
}
Example #2
Source File: MoveButtons.tsx From tobira with Apache License 2.0 | 5 votes |
MoveButtons: React.FC<Props> = ({
realm,
index,
onCommit,
onCompleted,
onError,
}) => {
const { t } = useTranslation();
const { id: realmId, blocks } = useFragment(graphql`
fragment MoveButtonsData on Realm {
id
# We need this list only for the length,
# but we have to query *something* from it.
blocks { id }
}
`, realm);
const [commitMove] = useMutation<MoveButtonsMutation>(graphql`
mutation MoveButtonsMutation($realmId: ID!, $indexA: Int!, $indexB: Int!) {
swapBlocksByIndex(realm: $realmId, indexA: $indexA, indexB: $indexB) {
... ContentManageRealmData
}
}
`);
const move = (direction: -1 | 1) => {
commitMove({
variables: {
realmId,
indexA: index,
indexB: index + direction,
},
onCompleted,
onError,
});
onCommit?.();
};
return <>
<Button
title={t("manage.realm.content.move-down")}
disabled={index === blocks.length - 1}
onClick={() => move(1)}
>
<FiArrowDown />
</Button>
<Button
title={t("manage.realm.content.move-up")}
disabled={index === 0}
onClick={() => move(-1)}
>
<FiArrowUp />
</Button>
</>;
}
Example #3
Source File: CollapsibleSection.tsx From meshtastic-web with GNU General Public License v3.0 | 5 votes |
CollapsibleSection = ({
title,
icon,
status,
children,
}: CollapsibleSectionProps): JSX.Element => {
const [open, setOpen] = useState(false);
const toggleOpen = (): void => setOpen(!open);
return (
<m.div>
<m.div
layout
onClick={toggleOpen}
className={`w-full cursor-pointer select-none overflow-hidden border-l-4 border-b bg-gray-200 p-2 text-sm font-medium dark:border-primaryDark dark:bg-tertiaryDark dark:text-gray-400 ${
open
? 'border-l-primary dark:border-l-primary'
: 'border-gray-400 dark:border-secondaryDark'
}`}
>
<m.div
layout
whileHover={{ scale: 1.01 }}
whileTap={{ scale: 0.99 }}
className="my-auto flex justify-between gap-2"
>
<m.div className="flex gap-2">
<m.div className="my-auto flex gap-2">
{status !== undefined ? (
<>
<div
className={`my-auto h-2 w-2 rounded-full ${
status ? 'bg-green-500' : 'bg-red-500'
}`}
/>
{icon}
</>
) : (
<>{icon}</>
)}
</m.div>
{title}
</m.div>
<m.div
animate={open ? 'open' : 'closed'}
initial={{ rotate: 180 }}
variants={{
open: { rotate: 0 },
closed: { rotate: 180 },
}}
transition={{ type: 'just' }}
className="my-auto"
>
<FiArrowUp />
</m.div>
</m.div>
</m.div>
<AnimatePresence>
{open && (
<m.div
className="p-2"
layout
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
>
{children}
</m.div>
)}
</AnimatePresence>
</m.div>
);
}
Example #4
Source File: index.tsx From dxvote with GNU Affero General Public License v3.0 | 4 votes |
Votes = () => {
const {
context: {
configStore,
daoStore,
providerStore,
daoService,
orbitDBService,
},
} = useContext();
//State
const [signVote, setSignVote] = useState(false);
const [decision, setDecision] = useState(0);
const [votePercentage, setVotePercentage] = useState(0);
const [signedVotesOfProposal, setSignedVotesOfProposal] = useState([]);
const [loadingSignedOrbitDBVotes, setLoadingSignedOrbitDBVotes] =
useState(true);
// We should get the ID in another way
const proposalId = useLocation().pathname.split('/')[3];
const proposal = daoStore.getProposal(proposalId);
const proposalEvents = daoStore.getProposalEvents(proposalId);
const { account } = providerStore.getActiveWeb3React();
const signedVoteMessageId = utils.id(`dxvote:${proposalId}`);
const { finishTime } = daoStore.getProposalStatus(proposalId);
const votingMachineOfProposal =
daoStore.getVotingMachineOfProposal(proposalId);
const finishTimeReached = finishTime.toNumber() < moment().unix();
const isDXDVotingMachine =
configStore.getNetworkContracts().votingMachines[
votingMachineOfProposal.address
].type == 'DXDVotingMachine';
orbitDBService.getLogs(signedVoteMessageId).then(signedVoteMessages => {
console.debug('[OrbitDB messages]', signedVoteMessages);
signedVoteMessages.map(signedVoteMessageRaw => {
const signedVoteMessage = parseSignedVoteMessage(signedVoteMessageRaw);
if (signedVoteMessage.valid) {
const alreadyAdded =
signedVotesOfProposal.findIndex(
s => s.voter == signedVoteMessage.voter
) > -1 ||
proposalEvents.votes.findIndex(
s => s.voter == signedVoteMessage.voter
) > -1;
const repOfVoterForProposal = daoStore.getRepAt(
signedVoteMessage.voter,
proposal.creationEvent.blockNumber
).userRep;
if (
!alreadyAdded &&
repOfVoterForProposal >= bnum(signedVoteMessage.repAmount)
) {
signedVotesOfProposal.push({
voter: signedVoteMessage.voter,
vote: signedVoteMessage.decision,
amount: bnum(signedVoteMessage.repAmount),
signature: signedVoteMessage.signature,
source: 'orbitDB',
});
}
}
});
setSignedVotesOfProposal(signedVotesOfProposal);
setLoadingSignedOrbitDBVotes(false);
});
let votedAmount = bnum(0);
proposalEvents.votes.map(vote => {
if (vote.voter === account) {
votedAmount = bnum(vote.amount);
}
});
let positiveVotesCount = proposalEvents.votes.filter(vote =>
isVoteYes(vote.vote)
).length;
let negativeVotesCount = proposalEvents.votes.filter(vote =>
isVoteNo(vote.vote)
).length;
const {
userRep: userRepAtProposalCreation,
totalSupply: totalRepAtProposalCreation,
} = daoStore.getRepAt(account, proposal.creationEvent.blockNumber);
const repPercentageAtCreation = toPercentage(
userRepAtProposalCreation.div(totalRepAtProposalCreation)
).toFixed(2);
const positiveVotes = toPercentage(
proposal.positiveVotes.div(totalRepAtProposalCreation)
).toFixed(2, 4);
const negativeVotes = toPercentage(
proposal.negativeVotes.div(totalRepAtProposalCreation)
).toFixed(2, 4);
const totalPositiveSignedVotes = toPercentage(
signedVotesOfProposal
.filter(signedVote => isVoteYes(signedVote.vote))
.reduce(function (acc, obj) {
return acc.plus(obj.amount);
}, bnum(0))
.div(totalRepAtProposalCreation)
).toFixed(2, 4);
const totalNegativeSignedVotes = toPercentage(
signedVotesOfProposal
.filter(signedVote => isVoteNo(signedVote.vote))
.reduce(function (acc, obj) {
return acc.plus(obj.amount);
}, bnum(0))
.div(totalRepAtProposalCreation)
).toFixed(2, 4);
if (Number(repPercentageAtCreation) > 0 && votePercentage === 0) {
setVotePercentage(Number(repPercentageAtCreation));
}
// Events Handlers
const onVoteValueChange = event => {
setVotePercentage(
event.target.value < repPercentageAtCreation
? event.target.value
: repPercentageAtCreation
);
};
const executeSignedVote = function (signedVote) {
daoService.executeSignedVote(
votingMachineOfProposal.address,
proposalId,
signedVote.voter,
signedVote.vote,
signedVote.amount.toString(),
signedVote.signature
);
};
const submitVote = async function (voteDetails: {
votingMachine: string;
proposalId: string;
voter: string;
decision: string;
repAmount: string;
signVote: boolean;
networks: boolean[];
hashToETHMessage: boolean;
}) {
if (voteDetails.signVote) {
const voteSignature = await daoService.signVote(
voteDetails.votingMachine,
voteDetails.proposalId,
voteDetails.decision,
voteDetails.repAmount,
voteDetails.hashToETHMessage
);
if (
verifySignedVote(
voteDetails.votingMachine,
voteDetails.proposalId,
voteDetails.voter,
voteDetails.decision,
voteDetails.repAmount,
voteSignature
)
) {
if (voteDetails.networks[0])
orbitDBService.addLog(
utils.id(`dxvote:${proposalId}`),
`signedVote:${voteDetails.votingMachine}:${voteDetails.proposalId}:${voteDetails.voter}:${voteDetails.decision}:${voteDetails.repAmount}:${voteSignature}`
);
}
} else {
daoService.vote(
voteDetails.decision,
voteDetails.repAmount,
voteDetails.proposalId
);
}
setDecision(0);
};
// TODO:
// This Component could be abstracted so much!
// <Counts> <NewVote> each one getting proposalEvents and iterating and counting.
// and Summary can be based on polarity <Summary polarity={positive|negative} /> and reused.
return (
<>
<SpaceAroundRow>
<strong>
Confirmed Votes <Question question="4" />
</strong>
</SpaceAroundRow>
<SpaceAroundRow>
<PositiveSummary>
<SummaryTotal>
<AmountBadge color="green">{positiveVotesCount}</AmountBadge>
{`${positiveVotes}%`}
</SummaryTotal>
<HorizontalSeparator />
<SummaryDetails>
{proposalEvents?.votes
.filter(voteEvent => isVoteYes(voteEvent.vote))
.map((voteEvent, i) => (
<Vote key={`vote-pos-${i}`}>
<BlockchainLink
size="short"
type="user"
text={voteEvent.voter}
/>
<span>
{bnum(voteEvent.amount)
.times('100')
.div(totalRepAtProposalCreation)
.toFixed(2, 4)}
%
</span>
</Vote>
))}
</SummaryDetails>
</PositiveSummary>
<NegativeSummary>
<SummaryTotal>
<AmountBadge color="red">{negativeVotesCount}</AmountBadge>
<span>{`${negativeVotes}%`}</span>
</SummaryTotal>
<HorizontalSeparator />
<SummaryDetails>
{proposalEvents?.votes
?.filter(voteEvent => isVoteNo(voteEvent.vote))
.map((voteEvent, i) => (
<Vote key={`vote-neg-${i}`}>
<BlockchainLink
size="short"
type="user"
text={voteEvent.voter}
/>
<span>
{bnum(voteEvent.amount)
.times('100')
.div(totalRepAtProposalCreation)
.toFixed(2, 4)}
%
</span>
</Vote>
))}
</SummaryDetails>
</NegativeSummary>
</SpaceAroundRow>
{!loadingSignedOrbitDBVotes && (
<div>
<SpaceAroundRow>
<strong>
Signed Votes <Question question="4" /> <br />
{!isDXDVotingMachine && <small>Non-Executable</small>}
</strong>
</SpaceAroundRow>
<SpaceAroundRow>
<PositiveSummary>
<SummaryTotal>
<AmountBadge color="green">
{
signedVotesOfProposal.filter(signedVote =>
isVoteYes(signedVote.vote)
).length
}
</AmountBadge>
{`${totalPositiveSignedVotes}%`}
</SummaryTotal>
<HorizontalSeparator />
<SummaryDetails>
{signedVotesOfProposal
.filter(signedVote => isVoteYes(signedVote.vote))
.map((signedVote, i) => (
<Vote key={`vote-pos-${i}`}>
<BlockchainLink
size="short"
type="user"
text={signedVote.voter}
/>
<span>
{bnum(signedVote.amount)
.times('100')
.div(totalRepAtProposalCreation)
.toFixed(2, 4)}
%
</span>
{isDXDVotingMachine && (
<ActionButton
style={{
height: '15px',
margin: '0px 0px 0px 2px',
maxWidth: '15px',
textAlign: 'center',
}}
color="#536DFE"
onClick={() => executeSignedVote(signedVote)}
>
<FiArrowUp />
</ActionButton>
)}
</Vote>
))}
</SummaryDetails>
</PositiveSummary>
<NegativeSummary>
<SummaryTotal>
<AmountBadge color="red">
{
signedVotesOfProposal.filter(signedVote =>
isVoteNo(signedVote.vote)
).length
}
</AmountBadge>
{`${totalNegativeSignedVotes}%`}
</SummaryTotal>
<HorizontalSeparator />
<SummaryDetails>
{signedVotesOfProposal
?.filter(signedVote => isVoteNo(signedVote.vote))
.map((signedVote, i) => (
<Vote key={`vote-neg-${i}`}>
<BlockchainLink
size="short"
type="user"
text={signedVote.voter}
/>
<span>
{bnum(signedVote.amount)
.times('100')
.div(totalRepAtProposalCreation)
.toFixed(2, 4)}
%
</span>
{isDXDVotingMachine && (
<ActionButton
style={{
height: '15px',
margin: '0px 0px 0px 2px',
maxWidth: '15px',
textAlign: 'center',
}}
color="#536DFE"
onClick={() => executeSignedVote(signedVote)}
>
<FiArrowUp />
</ActionButton>
)}
</Vote>
))}
</SummaryDetails>
</NegativeSummary>
</SpaceAroundRow>
</div>
)}
{Number(repPercentageAtCreation) > 0 && (
<small>{repPercentageAtCreation} % REP at proposal creation</small>
)}
{(proposal.stateInVotingMachine === 3 ||
proposal.stateInVotingMachine === 4) &&
votingMachineOfProposal.params.votersReputationLossRatio.toNumber() >
0 &&
finishTime.toNumber() > 0 && (
<TextCenter>
<small>
Voter REP Loss Ratio:
{votingMachineOfProposal.params.votersReputationLossRatio.toString()}
%
</small>
</TextCenter>
)}
{account &&
!finishTimeReached &&
votedAmount.toNumber() === 0 &&
Number(repPercentageAtCreation) > 0 &&
proposal.stateInVotingMachine >= 3 ? (
<SpaceAroundRow>
<ConfirmVoteModal
voteDecision={decision}
toAdd={votePercentage}
positive={parseFloat(positiveVotes)}
negative={parseFloat(negativeVotes)}
onConfirm={submitVote}
onCancel={() => setDecision(0)}
voteDetails={{
votingMachine: votingMachineOfProposal.address,
proposalId: proposalId,
voter: account,
decision: decision.toString(),
repAmount: totalRepAtProposalCreation
.times(bnum(votePercentage))
.div('100')
.toFixed(0, 1)
.toString(),
signVote: signVote,
}}
/>
<AmountInput
type="number"
placeholder="REP"
name="votePercentage"
max={repPercentageAtCreation}
value={votePercentage}
min="0"
step={
votePercentage > 10
? '1'
: votePercentage > 1
? '0.01'
: votePercentage > 0.1
? '0.001'
: '0.00001'
}
id="votePercentage"
onChange={onVoteValueChange}
style={{ flex: 2 }}
/>
<ActionButton
style={{ flex: 1, maxWidth: '20px', textAlign: 'center' }}
color="green"
onClick={() => setDecision(1)}
>
<FiThumbsUp />
</ActionButton>
<ActionButton
style={{ flex: 1, maxWidth: '20px', textAlign: 'center' }}
color="red"
onClick={() => setDecision(2)}
>
<FiThumbsDown />
</ActionButton>
<ActionButton
style={{ flex: 1, maxWidth: '20px', textAlign: 'center' }}
color="#536DFE"
onClick={() => setSignVote(!signVote)}
>
{signVote ? <FiWifiOff /> : <FiWifi />}
</ActionButton>
</SpaceAroundRow>
) : (
votedAmount.toNumber() !== 0 && (
<SpaceAroundRow>
<TextCenter>
{`
Already voted ${votedAmount.toNumber() > 0 ? 'for' : 'against'}
with
${votedAmount
.times('100')
.div(totalRepAtProposalCreation)
.toFixed(2, 4)}
% REP`}
</TextCenter>
</SpaceAroundRow>
)
)}
</>
);
}