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

Flicker App in React #13

Open
wants to merge 11 commits into
base: main
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
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,50 @@ Pixel perfect mockup to design is a real focus for us at Labzone, the mockup for


### Good luck !

## Flicker App
This project is a Frontend system implemented in React with TypeScript to handle to demonstate to set up a React App, load in some photos from Flickr (JSON format) [public API](https://api.flickr.com/services/feeds/photos_public.gne?format=json) and display the photo, name and description in a card layout. The images should be clickable and link to the content. The app should have a header and a footer and ideally be responsive.

## Prerequisites

Make sure you have latest version of Node.js and npm installed on your machine.

- Node.js: [https://nodejs.org/]
- npm: [https://www.npmjs.com/]

## File Structure For Frontend
```
frontend
src/
|-- components/
| |-- hooks/
| |-- useFetch.tsx
| |-- useLoader.tsx
| |-- useObserver.tsx
|
| |-- cardGallery.tsx
| |-- cards.tsx
| |-- footer.tsx
| |-- header.tsx
| |-- search.tsx
|
|-- constants.ts
|-- App.tsx
|-- css/
| |--main.css
```

## Installation for frontend

```bash
$ cd saidot-flickr-app
$ npm install
```
## How to start frontend

```bash
# development
$ npm start
```

To verify that the application started sucecssfully in local navigate to http://localhost:3000 in your web browser.
23 changes: 23 additions & 0 deletions saidot-flickr-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
53 changes: 53 additions & 0 deletions saidot-flickr-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Flicker App
This project is a Frontend system implemented in React with TypeScript to handle to demonstate to set up a React App, load in some photos from Flickr (JSON format) [public API](https://api.flickr.com/services/feeds/photos_public.gne?format=json) and display the photo, name and description in a card layout. The images should be clickable and link to the content. The app should have a header and a footer and ideally be responsive.

## Prerequisites

Make sure you have latest version of Node.js and npm installed on your machine.

- Node.js: [https://nodejs.org/]
- npm: [https://www.npmjs.com/]

## File Structure For Frontend
```
frontend
src/
|-- components/
| |-- hooks/
| |-- useFetch.tsx
| |-- useLoader.tsx
| |-- useObserver.tsx
|
| |-- cardGallery.tsx
| |-- cards.tsx
| |-- footer.tsx
| |-- header.tsx
| |-- search.tsx
|
|-- constants.ts
|-- App.tsx
|-- css/
| |--main.css
```

## Installation for frontend

```bash
$ cd saidot-flickr-app
$ npm install
```
## How to start frontend

```bash
# development
$ npm start
```

To verify that the application started sucecssfully in local navigate to http://localhost:3000 in your web browser.

![flickerUi](flickerUi.png)

Binary file added saidot-flickr-app/flickerUi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading