react-icons/fi#FiAlertTriangle TypeScript Examples
The following examples show how to use
react-icons/fi#FiAlertTriangle.
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: Card.tsx From tobira with Apache License 2.0 | 6 votes |
Card: React.FC<Props> = ({ kind, iconPos = "left", children, ...rest }) => (
<div
css={{
display: "inline-flex",
flexDirection: iconPos === "left" ? "row" : "column",
borderRadius: 4,
padding: "8px 16px",
gap: 16,
alignItems: "center",
"& > svg": {
fontSize: 24,
minWidth: 24,
},
...match(kind, {
"error": () => ({
backgroundColor: "var(--danger-color)",
border: "1.5px solid var(--danger-color)",
color: "var(--danger-color-bw-contrast)",
}) as Record<string, string>,
"info": () => ({
backgroundColor: "var(--grey97)",
}),
}),
}}
{...rest}
>
{match(kind, {
"error": () => <FiAlertTriangle />,
"info": () => <FiInfo css={{ color: "var(--grey40)" }} />,
})}
<div>{children}</div>
</div>
)
Example #2
Source File: index.tsx From dxvote with GNU Affero General Public License v3.0 | 5 votes |
IconMap = { [ResultState.SUCCESS]: FiCheckCircle, [ResultState.ERROR]: FiXOctagon, [ResultState.INFO]: FiHelpCircle, [ResultState.WARNING]: FiAlertTriangle, }
Example #3
Source File: UserBox.tsx From tobira with Apache License 2.0 | 5 votes |
Logout: React.FC = () => {
const { t } = useTranslation();
type State = "idle" | "pending" | "error";
const [state, setState] = useState<State>("idle");
const actionProps = CONFIG.auth.logoutLink !== null
// Just a normal link to the specified URL
? {
htmlLink: true,
linkTo: CONFIG.auth.logoutLink,
}
// Our own internal link
: {
onClick: () => {
// We don't do anything if a request is already pending.
if (state === "pending") {
return;
}
setState("pending");
fetch("/~session", { method: "DELETE" })
.then(() => {
// We deliberately ignore the `status`. See `handle_logout`
// for more information.
//
// We hard forward to the home page to get rid of any stale state.
window.location.href = "/";
})
.catch(error => {
// TODO: this is not great. It should happen only
// extremely rarely, but still, just showing a triangle
// is not very great for the uesr.
// eslint-disable-next-line no-console
console.error("Error during logout: ", error);
setState("error");
});
},
};
return (
<MenuItem
icon={match(state, {
"idle": () => <FiLogOut />,
"pending": () => <Spinner />,
"error": () => <FiAlertTriangle />,
})}
borderTop
css={{ color: "var(--danger-color)" }}
{...actionProps}
>{t("user.logout")}</MenuItem>
);
}
Example #4
Source File: index.tsx From dxvote with GNU Affero General Public License v3.0 | 4 votes |
ProposalsPage = observer(() => {
const {
context: { daoStore, configStore, providerStore },
} = useContext();
const { getRep } = useRep();
const votingMachines = configStore.getNetworkContracts().votingMachines;
const networkName = configStore.getActiveChainName();
const { account } = providerStore.getActiveWeb3React();
const userEvents = daoStore.getUserEvents(account);
const {
proposals,
loading,
titleFilter,
setTitleFilter,
stateFilter,
setStateFilter,
schemesFilter,
setSchemesFilter,
} = useFilteredProposals();
const allProposals = daoStore.getAllProposals();
const activeProposalsCount = allProposals.filter(
proposal =>
proposal.stateInVotingMachine > VotingMachineProposalState.Executed
).length;
const history = useHistory();
return (
<ProposalsWrapper>
<SidebarWrapper>
<ProposalTableHeaderActions>
<NewProposalButton>
<LinkButton route={`/${networkName}/create/type`} width="200px">
+ New Proposal
</LinkButton>
</NewProposalButton>
<TitleSearch value={titleFilter} onFilter={setTitleFilter} />
<StatusSearch value={stateFilter} onFilter={setStateFilter} />
<SchemeSearch value={schemesFilter} onFilter={setSchemesFilter} />
<strong style={{ alignSelf: 'center' }}>
{allProposals.length} Total Proposals
</strong>
<strong style={{ alignSelf: 'center' }}>
{activeProposalsCount} Active Proposals
</strong>
</ProposalTableHeaderActions>
<FooterWrap>
<ProposalsExporter />
<Footer />
</FooterWrap>
</SidebarWrapper>
{loading && (
<LoadingBox>
<div className="loader">
<PulsingIcon size={80} inactive={false} />
</div>
</LoadingBox>
)}
{!loading && (
<TableProposal>
<TableHeader>
<TableRow>
<HeaderCell>Title</HeaderCell>
<HeaderCell>Scheme</HeaderCell>
<HeaderCell>Status</HeaderCell>
<HeaderCell>Stakes</HeaderCell>
<HeaderCell>Votes</HeaderCell>
</TableRow>
</TableHeader>
<TableBody>
{proposals.map((proposal, i) => {
const positiveStake = formatNumberValue(
normalizeBalance(proposal.positiveStakes, 18),
1
);
const negativeStake = formatNumberValue(
normalizeBalance(proposal.negativeStakes, 18),
1
);
const repAtCreation = getRep(
proposal.creationEvent.blockNumber
).totalSupply;
const positiveVotesPercentage = formatPercentage(
proposal.positiveVotes.div(repAtCreation),
2
);
const negativeVotesPercentage = formatPercentage(
proposal.negativeVotes.div(repAtCreation),
2
);
const timeToBoost = timeToTimestamp(proposal.boostTime);
const timeToFinish = timeToTimestamp(proposal.finishTime);
const votingMachineTokenName =
votingMachines[
daoStore.getVotingMachineOfProposal(proposal.id).address
].type == 'DXDVotingMachine'
? 'DXD'
: 'GEN';
const voted =
userEvents.votes.findIndex(
event => event.proposalId === proposal.id
) > -1;
const staked =
userEvents.stakes.findIndex(
event => event.proposalId === proposal.id
) > -1;
const created =
userEvents.newProposal.findIndex(
event => event.proposalId === proposal.id
) > -1;
const proposerVotedDown =
daoStore
.getVotesOfProposal(proposal.id)
.findIndex(
vote =>
vote.voter === proposal.proposer && isVoteNo(vote.vote)
) > -1;
return (
<StyledTableRow
onClick={() =>
history.push(`/${networkName}/proposal/${proposal.id}`)
}
key={`row-${i}`}
>
<DataCell
weight="800"
wrapText="true"
fontSize="inherit"
align="left"
>
<Link
to={`/${networkName}/proposal/${proposal.id}`}
component={UnstyledAnchor}
>
{created && (
<FiFeather
style={{ minWidth: '15px', margin: '0px 2px' }}
title="You created"
/>
)}
{voted && (
<FiCheckCircle
style={{ minWidth: '15px', margin: '0px 2px' }}
title="You voted"
/>
)}
{staked && (
<FiCheckSquare
style={{ minWidth: '15px', margin: '0px 2px' }}
title="You staked"
/>
)}
{proposerVotedDown && (
<FiAlertTriangle
style={{ minWidth: '15px', margin: '0px 2px' }}
title="The proposer downvoted this proposal. It may be incorrect."
/>
)}
{proposal.title.length > 0 ? proposal.title : proposal.id}
</Link>
</DataCell>
<DataCell>
{daoStore.daoCache.schemes[proposal.scheme].name}
</DataCell>
<DataCell>
<span>
{proposal.status} <br />
{timeToBoost !== '' ? (
<small>
Boost {timeToBoost} <br />
</small>
) : (
<span></span>
)}
{timeToFinish !== '' ? (
<small>Finish {timeToFinish} </small>
) : (
<span></span>
)}
{proposal.pendingAction === PendingAction.Execute ||
proposal.pendingAction === PendingAction.Finish ? (
<small> Pending Finish Execution </small>
) : (
<span></span>
)}
</span>
</DataCell>
<DataCell>
<Positive>
{positiveStake.toString()} {votingMachineTokenName}{' '}
</Positive>
<Separator>|</Separator>
<Negative>
{negativeStake.toString()} {votingMachineTokenName}
</Negative>
</DataCell>
<DataCell>
<Positive>{positiveVotesPercentage} </Positive>
<Separator>|</Separator>
<Negative>{negativeVotesPercentage}</Negative>
</DataCell>
</StyledTableRow>
);
})}
</TableBody>
</TableProposal>
)}
</ProposalsWrapper>
);
})