Skip to content

Commit

Permalink
Merge pull request #364 from protofire/polls-list-fixes
Browse files Browse the repository at this point in the history
Polls List fixes
  • Loading branch information
leolower authored Mar 30, 2020
2 parents ea98e7f + ce48e39 commit efa8101
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
23 changes: 14 additions & 9 deletions src/containers/Polls/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const getHomeVariables = data => {
const ErrorEl = () => <div>ERROR: There was an error trying to fetch the data. </div>

function PollsInfo(props) {
const [resultVariables, setResultVariables] = useState(getHomeVariables({ governanceInfo: {} }))
const cachedData = lscache.get('polls') || []
const [cachedData, setCachedData] = useState<any>(lscache.get('polls') || [])
const [dataFetched, setDataFetched] = useState(false)
const [data, setData] = useState<any[]>(cachedData)
const [pollsBalances, setBalances] = useState<any>({})

Expand All @@ -30,7 +30,11 @@ function PollsInfo(props) {
const initialSort = React.useMemo(() => [{ id: 'date', desc: true }], [])

const { data: gData, ...gResult } = useQuery(GOVERNANCE_INFO_QUERY)
const pollsData = useQuery(POLLS_FIRST_QUERY, { variables: resultVariables })

const pollsData = useQuery(POLLS_FIRST_QUERY, {
variables: gData && getHomeVariables(gData),
skip: !gData || cachedData.length > 0,
})
const getPoll = row => {
if (row.id) props.history.push(`/poll/${row.id}`)
}
Expand Down Expand Up @@ -71,18 +75,19 @@ function PollsInfo(props) {

useEffect(() => {
lscache.set('polls', data, DEFAULT_CACHE_TTL)
setCachedData(data)
}, [data])

useEffect(() => {
if (gData) setResultVariables(getHomeVariables(gData))
}, [gData])

useEffect(() => {
if (data.length > 0 && mkrSupply) {
if (data.length > 0 && mkrSupply && !dataFetched) {
setDataFetched(true)
getPollsData(data).then(result => {
const polls = result.filter(Boolean)
Promise.all(
polls.map(poll => {
polls.map((poll: any) => {
if (poll.plurality && poll.participation) {
return Promise.resolve(poll)
}
return getPollData(poll, pollsBalances).then(data => {
return { ...poll, plurality: setPlurality(data), participation: getParticipation(data, mkrSupply) }
})
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Polls/queries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const pollsDetailFragment = gql`
`
const getPollsData = (pageIndex, pageSize, offset, ordering) => {
return `
polls_${pageIndex}: polls(first: ${pageSize}, skip: ${offset}, ${ordering}) {
polls_${pageIndex}: polls(first: ${pageSize}, skip: ${offset}, ${ordering}, where: {id_not_in: [9,8,11,6]}) {
...pollsDetailTotal
}
`
Expand Down
5 changes: 4 additions & 1 deletion src/utils/makerdao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,15 @@ export function getPollsData(polls) {
return Promise.all(
polls.map(async poll => {
try {
if (poll.fetched) {
return poll
}
// Poll black list
if (!['https://url.com'].includes(poll.url)) {
const pollDocument = await fetchPollFromUrl(poll.url)
if (pollDocument) {
const documentData = await formatYamlToJson(pollDocument)
const pollData = { ...poll, ...documentData }
const pollData = { ...poll, ...documentData, fetched: true }
pollData.active = isPollActive(pollData.startDate, pollData.endDate)
pollData.source = POLLING_EMITTER

Expand Down

0 comments on commit efa8101

Please sign in to comment.