react-icons/fa#FaMedal TypeScript Examples

The following examples show how to use react-icons/fa#FaMedal. 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: GovernanceInformation.tsx    From dxvote with GNU Affero General Public License v3.0 4 votes vote down vote up
GovernanceInformation = observer(() => {
  const {
    context: { daoStore },
  } = useContext();

  const totalRep = daoStore.daoCache.reputation.total;
  const governanceInfo = daoStore.getGovernanceInfo();

  function toNumber(weiNumber) {
    return bnum(weiNumber)
      .div(10 ** 18)
      .toFixed(0);
  }
  return (
    <GovernanceInfoWrapper>
      <Title centered>Stats</Title>
      <Row>
        <InfoBox>{toNumber(totalRep)} REP</InfoBox>
        <InfoBox>{governanceInfo.totalPositiveVotes} Positive Votes</InfoBox>
        <InfoBox>{governanceInfo.totalNegativeVotes} Negative Votes</InfoBox>
        <InfoBox>{governanceInfo.totalProposalsCreated} Proposals</InfoBox>
      </Row>

      <Title centered>Reputation Charts</Title>
      <Row>
        <Chart
          chartType="PieChart"
          loader={<div>Loading Chart</div>}
          data={governanceInfo.rep}
          options={{
            legend: 'none',
            pieSliceText: 'none',
            pieStartAngle: 100,
            title: 'Reputation Distribution',
            sliceVisibilityThreshold: 0.001, // 0.1%
          }}
        />
        <Chart
          width="100%"
          chartType="LineChart"
          loader={<div>Loading Chart</div>}
          data={governanceInfo.repEvents}
          options={{
            hAxis: { title: 'Block Number' },
            vAxis: { title: 'Reputation' },
            title: 'Reputation over Time',
            legend: 'none',
          }}
        />
      </Row>

      <Title centered>Governance Ranking</Title>

      <Row>
        <InfoBox>
          Create Proposal
          <br />
          <strong>1 to 30 Points</strong>
        </InfoBox>
        <InfoBox>
          Vote Winning Option
          <br />
          <strong>3 Points</strong>
        </InfoBox>
        <InfoBox>
          Vote Losing Option
          <br />
          <strong>1 Point</strong>
        </InfoBox>
        <InfoBox>
          Stake Winning Option
          <br />
          <strong>1 Point</strong>
        </InfoBox>
      </Row>

      <GovernanceTable>
        <TableHeader>
          <HeaderCell align="center">#</HeaderCell>
          <HeaderCell align="center">Address</HeaderCell>
          <HeaderCell align="center">Proposals Created</HeaderCell>
          <HeaderCell align="center">Voted</HeaderCell>
          <HeaderCell align="center">Staked</HeaderCell>
          <HeaderCell align="center">Score</HeaderCell>
        </TableHeader>
        <TableBody>
          {governanceInfo.ranking.map((user, i) => {
            return (
              <TableRow key={`user${i}`}>
                <DataCell align="center" weight="500">
                  {' '}
                  {i + 1}
                  {i === 0 ? (
                    <FaTrophy color="gold" />
                  ) : i === 1 ? (
                    <FaTrophy color="silver" />
                  ) : i === 2 ? (
                    <FaTrophy color="#CD7F32" />
                  ) : i < 6 ? (
                    <FaMedal color="gold" />
                  ) : i < 9 ? (
                    <FaMedal color="silver" />
                  ) : i < 12 ? (
                    <FaMedal color="#CD7F32" />
                  ) : (
                    <div />
                  )}
                </DataCell>
                <DataCell weight="500">
                  <BlockchainLink
                    size="long"
                    type="address"
                    text={user.address}
                    toCopy
                  />
                </DataCell>
                <DataCell>{user.proposals}</DataCell>
                <DataCell>
                  <Positive>{user.correctVotes} </Positive>-
                  <Negative> {user.wrongVotes}</Negative>
                </DataCell>
                <DataCell>
                  <Positive>{user.correctStakes} </Positive>-
                  <Negative> {user.wrongStakes}</Negative>
                </DataCell>
                <DataCell align="center">{user.score.toFixed(0)}</DataCell>
              </TableRow>
            );
          })}
        </TableBody>
      </GovernanceTable>
    </GovernanceInfoWrapper>
  );
})
Example #2
Source File: my-story.tsx    From portfolio with MIT License 4 votes vote down vote up
MyStory = () => {

  return (
    <VStack>
      <Section mb={14}>
        <PageSlideFade>
          <VStack>
            <Header mt={0} mb={1}>
              Developer Story
            </Header>
            {/* <Text
              fontSize={"xl"}
              color={useColorModeValue("gray.500", "gray.200")}
              maxW="lg"
              textAlign="center"
            >
              This page tells you my story in timeline shape.
            </Text> */}
          </VStack>
        </PageSlideFade>
      </Section>
      <VStack textAlign="start" align="flex-start" mb={0}>
        <Box>
          <StoryTimeline year={"2021"} index={0} />
          {companies.map((company, index) => (
            <StoryTimeline
              icon={BsFillBriefcaseFill}
              index={index}
            >
              {" "}
              <HStack>
                <Image
                  rounded="full"
                  w={[6, 8]}
                  h={[6, 8]}
                  objectFit="cover"
                  fallbackSrc={placeholder}
                  src={company.logo}
                  alt={company.alt}
                />
                <VStack align="start">
                  <Heading
                    fontSize={[12, 13, 15]}
                    lineHeight="shorter"
                    fontWeight="bold"
                  >
                    <Box>{company.title}</Box>
                    <Box mt={1}>{company.period}</Box>
                  </Heading>
                </VStack>
              </HStack>
              <Divider my={2} />
              <Text fontSize={[12, 13, 15]}>{company.role}</Text>
            </StoryTimeline>
          ))}
          <StoryTimeline year={"2017"} index={0} />
          {institutes.map((institute, index) => (
            <>
              <StoryTimeline
                icon={FaGraduationCap}
                index={index > 0 ? index + 1 : index}
              >
                {" "}
                <HStack>
                  <Image
                    rounded="full"
                    w={[6, 8]}
                    h={[6, 8]}
                    objectFit="cover"
                    fallbackSrc={placeholder}
                    src={institute.logo}
                    alt={institute.alt}
                  />
                  <VStack align="start">
                    <Heading
                      fontSize={[12, 13, 15]}
                      lineHeight="shorter"
                      fontWeight="bold"
                    >
                      <Box>{institute.short_title}</Box>
                      <Box mt={1}>{institute.period}</Box>
                    </Heading>
                  </VStack>
                </HStack>
                <Divider my={2} />
                <Text fontSize={[12, 13, 15]}>{institute.role}</Text>
              </StoryTimeline>
              {institute.awards &&
                institute.awards.map((award, index1) => (
                  <StoryTimeline icon={FaAward} index={index1 + index + 1}>
                    {" "}
                    <HStack>
                      <IconButton
                        colorScheme="blue"
                        rounded="full"
                        size="sm"
                        aria-label="medal"
                        icon={<FaMedal />}
                      />

                      <VStack align="start">
                        <Heading
                          fontSize={[12, 13, 15]}
                          lineHeight="shorter"
                          fontWeight="bold"
                        >
                          <Box>{award.title}</Box>
                          <Box mt={1}>{award.date}</Box>
                        </Heading>
                      </VStack>
                    </HStack>
                    <Divider my={2} />
                    <Text fontSize={[12, 13, 15]}>{award.description}</Text>
                  </StoryTimeline>
                ))}

              <StoryTimeline
                year={institute.startingYear}
                index={0}
                skipTrail={index === institutes.length - 1 ? true : false}
              />
            </>
          ))}
        </Box>
      </VStack>
    </VStack>
  );
}