Skip to content
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

[Feature] Project Updates Section #13

Open
AndrewNatoli opened this issue Jun 15, 2019 · 0 comments
Open

[Feature] Project Updates Section #13

AndrewNatoli opened this issue Jun 15, 2019 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@AndrewNatoli
Copy link
Member

Is your feature request related to a problem? Please describe.
We need to import the project-specific blog updates for the re-entry project from Laddr.

Describe the solution you'd like
React component that will pull and display the blog posts from the re-entry partners project in Laddr.

The posts feed is here:

https://brigade.opencharlotte.org/projects/json/4/updates

We also need to fetch author information from

https://brigade.opencharlotte.org/people/json/{author_id}

If we want to get fancy we could devise a way to cache author information so we're not bombarding the site with requests each time. At the least we want to reduce the number of requests per load period with something like

const idsToFetch = new Set(data.reduce((list, post) => {
  list.push(post.ID);
  return list;
}, []);

Design can be generic bootstrap panels. Can be the same look as appears in Laddr.

Additional context
https://brigade.opencharlotte.org/projects/re-entry_partners_of_mecklenburg_hub

@AndrewNatoli AndrewNatoli added the enhancement New feature or request label Jun 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants