Welcome! I really appreciate that you checked out the contributing guide. This means you are thinking of contributing to this project. Well, you are at the right place.
Before you start contributing to any project it is important to understand the folder structure for that project. For this project, the details are as follows:
1) data
- This folder contains the data related to all the languages. This is where the actual shayari and quotes reside.
- for adding a new language make a new folder inside the `data` folder as `data/${Your_language_name}`.
- add the data file inside the folder as `data/${Your_language_name}/data.js`.
- NOTE: name the data file as 'data.js' only.
2) data_endpoints
- This folder contains the retriever functions, i.e., it is used to access the required language data from the data folder. This folder has seperate files for each language.
- for adding a retrieval file inside the folder, create file as `data_endpoints/${your_language_name.js}`.
3) routes
- This folder contains all the routes the API provides. It has a single file route.js
which has all the routes, which are mainly:
- */:language_name* -> returns all of the data for the language if no range is provided.
- */:language_name?min=value&max=value* -> returns the data in the specified range of min and max.
- */:language_name/random* -> returns a single random data from the language specified.
For contributing to this file, prefer reading the instructions in the file, but the brief is as follows:-
import the required retrieval file from the data_endpoints folder in route.js as:
import your_langauge_name from "../data_endpoints/your_langauge_name.js";
add the case statement in switch-case in each each route as instructed in the file.
4) languages.js
- contains an array of all the languages of which the data exists
- add your language name to the languages_array in lowercase.
5) index.js
- the entry point to this project, DO NOT CHANGE ANYTHING IN THIS FILE.
For installation and local setup, follow these steps:
Fork this repository.
Clone the forked repository.
git clone https://github.com/your_username/farzi-vichar-api
Run the following command to start your local server
npm install
npm start
Create a working branch and start making your changes.
git checkout -b your-new-branch-name
Commit your changes. Make sure to add a descriptive commit message.
git commit -m "your_message"
When you’re finished with the changes, create a pull request, also known as a PR.
data
directory.data
directory, (follow the pattern of already made directories) as:
data/Your_language_name
data/Your_language_name/data.js
create an array: const your_language_name_data_array = []
, which will be an array of objects. After adding the data export the array using export default your_language_name_data_array
.
const example_data_array = [
{
id: 1,
content:
"",
author: "",
category: "",
likes: 0,
views: 0,
ispublished: false,
isedited: false,
isfeatured: false,
link: "",
}
];
export default example_data_array;
data_endpoints
directory.data_endpoints/your_language_name.js
your_language_name.js
file, add the following code: import your_language_name_data_array from "../data/Your_language_name/data.js";
const your_language_name = (min, max) => {
const Data = your_language_name_data_array.filter((item) => {
if(Number(min) < your_language_name_data_array[0].id || Number(max) < your_language_name_data_array[0].id || Number(max) > your_language_name_data_array[your_language_name_data_array.length-1].id || Number(min) > your_language_name_data_array[your_language_name_data_array.length-1].id ){
throw new Error("NOT FOUND");
}else if(min && max){
return item.id >= Number(min) && item.id <= Number(max);
} else if(min){
return item.id >= Number(min);
} else if(max){
return item.id <= Number(max);
} else{
return true;
}
});
return Data;
}
export default your_language_name;
As already mentioned above the routes
folder contains all the routes the API provides. It has a single file route.js which provides access to all the language data based on the language name provided.
It uses a simple switch-case for returning the correct language data.
Inside routes/route.js
, follow these steps and for more info go to the file itslef:
import your_langauge_name from "../data_endpoints/your_langauge_name.js";
router.get("/:language_name", ...)
in switch-case, add the following: case "your_languge_name":
filteredData = your_language_name(min, max);
break;
router.get("/:language_name/random", ...)
in switch-case, add the following: case "your_languge_name":
filteredData = your_language_name(min, max);
break;
If you are a beginner, I would recommend you to use VS Code. Also, see this.
main
branch. Always create a new branch and then start making changes.
git push -u origin <branch>