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

add algolia #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,806 changes: 2,410 additions & 2,396 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions src/components/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ class App extends Component {
storyIds: PropTypes.array.isRequired,
isFetching: PropTypes.bool.isRequired,
hasMoreStores: PropTypes.bool.isRequired,
fetchStories: PropTypes.func.isRequired,
fetchStoriesFirstPage: PropTypes.func.isRequired,
fetchHits: PropTypes.func.isRequired,
};

componentDidMount() {
this.props.fetchStoriesFirstPage();
const { page, fetchHits } = this.props;
fetchHits({ page });
this.setBodyBackgroundColor();
}

Expand All @@ -48,22 +48,24 @@ class App extends Component {
}

fetchStories = () => {
const { storyIds, page, fetchStories, isFetching } = this.props;
const { page, fetchHits, isFetching } = this.props;
if (!isFetching) {
fetchStories({ storyIds, page });
fetchHits({ page: page + 1 });
}
};

render() {
const { stories, layout, theme, hasMoreStores } = this.props;
const title = '// Hacker News Reader';

return (
<ThemeProvider theme={theme === themes.light ? colorsLight : colorsDark}>
<div>
<Nav />
<Wrapper>
<TitleWrapper>
<Title>
// Hacker News Reader{' '}
<span style={{ marginRight: 5 }}>{title}</span>
<GithubLink
href="https://github.com/gitconnected/hacker-news-reader"
target="_blank"
Expand Down
3 changes: 1 addition & 2 deletions src/components/App/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ const mapStateToProps = state => ({
});

const mapDispatchToProps = dispatch => ({
fetchStories: ({ storyIds, page }) => dispatch(actions.fetchStories({ storyIds, page })),
fetchStoriesFirstPage: () => dispatch(actions.fetchStoryIds()),
fetchHits: ({ page }) => dispatch(actions.fetchHits({ page })),
});

export default connect(
Expand Down
3 changes: 2 additions & 1 deletion src/components/GridItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Item, Card, Image, Content, Title, Source } from './styles';
const GridItem = ({ url, title, id }) => {
const site = getSiteHostname(url) || 'news.ycombinator.com';
const link = getArticleLink({ url, id });
const sourceStr = `// ${site}`;

return (
<a href={link} target="_blank" rel="nofollow noreferrer nofollow">
Expand All @@ -16,7 +17,7 @@ const GridItem = ({ url, title, id }) => {
<Image src="https://miro.medium.com/max/1176/1*F9RzuXseG1VrTjFJd403gw.png" />
<Content>
<Title>{title}</Title>
<Source>// {site}</Source>
<Source>{sourceStr}</Source>
</Content>
</Card>
</Item>
Expand Down
2 changes: 1 addition & 1 deletion src/components/List/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class List extends Component {
return (
<ListWrapper>
{stories.map(story => (
<ListItem key={story.id} {...story} />
<ListItem key={story.objectID} {...story} />
))}
</ListWrapper>
);
Expand Down
33 changes: 19 additions & 14 deletions src/components/ListItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ import { Item, Title, Host, ExernalLink, Description, CommentLink } from './styl

const timeago = Timeago();

const ListItem = ({ by, kids = [], score, url, title, id, type, time }) => {
const ListItem = props => {
const { author, num_comments, points, url, title, objectID, created_at } = props;
const site = getSiteHostname(url) || 'news.ycombinator.com';
const link = getArticleLink({ url, id });
const commentUrl = `${HN_ITEM}${id}`;
const link = getArticleLink({ url, objectID });
const commentUrl = `${HN_ITEM}${objectID}`;

return (
<Item>
Expand All @@ -20,29 +21,33 @@ const ListItem = ({ by, kids = [], score, url, title, id, type, time }) => {
{title} <Host>({site})</Host>
</Title>
</ExernalLink>

<Description>
{score} points by{' '}
<CommentLink href={`${HN_USER}${by}`} rel="nofollow noreferrer noopener" target="_blank">
{by}
{points} points by{' '}
<CommentLink
href={`${HN_USER}${author}`}
rel="nofollow noreferrer noopener"
target="_blank"
>
{author}
</CommentLink>{' '}
{timeago.format(new Date(time * 1000).toISOString())} {' | '}
{timeago.format(new Date(created_at).toISOString())} {' | '}
<CommentLink href={commentUrl} rel="nofollow noreferrer noopener" target="_blank">
{kids.length} Comments
{num_comments} Comments
</CommentLink>
</Description>
</Item>
);
};

ListItem.propTypes = {
by: PropTypes.string.isRequired,
kids: PropTypes.array,
score: PropTypes.number.isRequired,
author: PropTypes.string.isRequired,
num_comments: PropTypes.number,
points: PropTypes.number.isRequired,
url: PropTypes.string,
title: PropTypes.string.isRequired,
id: PropTypes.number.isRequired,
type: PropTypes.string.isRequired,
time: PropTypes.number.isRequired,
objectID: PropTypes.string.isRequired,
created_at: PropTypes.string.isRequired,
};

export default ListItem;
4 changes: 3 additions & 1 deletion src/services/hackerNewsApi.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ApiService from './Api';

const JSON_QUERY = '.json?print=pretty';
const BASE_URL = 'https://hacker-news.firebaseio.com/v0';
const BASE_URL = 'http://hn.algolia.com/api/v1';
const client = new ApiService({ baseURL: BASE_URL });

const hackerNewsApi = {};
Expand All @@ -19,4 +19,6 @@ hackerNewsApi.getStoriesByPage = (ids, page) => {
return Promise.all(storyPromises);
};

hackerNewsApi.getFromPage = page => client.get(`/search?page=${page}&tags=(story,poll)`);

export default hackerNewsApi;
12 changes: 12 additions & 0 deletions src/store/story/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const actions = {
.catch(err => dispatch(request.failure(err)));
},
),

fetchStories: buildRequestCreator(actionTypes.FETCH_STORIES, ({ request, payload, dispatch }) => {
const { storyIds, page } = payload;
dispatch(request.request(payload));
Expand All @@ -31,6 +32,17 @@ const actions = {
.then(stories => dispatch(request.success({ stories })))
.catch(err => dispatch(request.failure(err)));
}),

fetchHits: buildRequestCreator(actionTypes.FETCH_STORIES, ({ request, payload, dispatch }) => {
const { page } = payload;
dispatch(request.request(payload));
return hackerNewsApi
.getFromPage(page)
.then(({ hits, nbPages }) => {
dispatch(request.success({ stories: hits, nbPages, page }));
})
.catch(err => dispatch(request.failure(err)));
}),
};

export default actions;
4 changes: 3 additions & 1 deletion src/store/story/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const getInitialState = () => ({
storyIds: [],
stories: [],
page: 0,
nbPages: 0,
isFetching: false,
error: '',
});
Expand All @@ -25,7 +26,8 @@ const story = (state = getInitialState(), { type, payload }) => {
return {
...state,
stories: [...state.stories, ...payload.stories],
page: state.page + 1,
page: payload.page,
nbPages: payload.nbPages,
isFetching: false,
};
default:
Expand Down
10 changes: 5 additions & 5 deletions src/store/story/selectors.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { createSelector } from 'reselect';

const storyIdsSelector = state => state.story.storyIds;
const storiesSelector = state => state.story.stories;
const storyPageSelector = state => state.story.page;
const storyNbPagesSelector = state => state.story.nbPages;

export const hasMoreStoriesSelector = createSelector(
storyIdsSelector,
storiesSelector,
(storyIds, stories) => storyIds.length > stories.length,
storyPageSelector,
storyNbPagesSelector,
(page, nbPages) => page < nbPages,
);