Skip to content
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
2 changes: 0 additions & 2 deletions .env

This file was deleted.

12 changes: 12 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": ["react-app", "airbnb", "plugin:jsx-a11y/recommended"],
"plugins": ["jsx-a11y"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js"] }],
"no-param-reassign": ["error", { "props": false }],
"react/prop-types":"off",
"import/prefer-default-export":"off",
"react/button-has-type":"off",
"jsx-a11y/label-has-associated-control":"off"
}
}
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# New Blog

---

### This branch will keep the progress of developing create new blog page, it will be merged to the main after completing its functionalities, functional documentation and unit testing

---

### features :


- [x] Page UI
- [x] State managment with Redux Toolkit
- [x] Function Documentation
- [X] Convert from css to scss
- [ ] Unit testing
94 changes: 94 additions & 0 deletions data/db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"createBlog": [
{
"id": 1,
"handle": "",
"title": "",
"isPrivate": false,
"settings": {
"blogPassword": ""
}
},
{
"handle": "ahmedmma",
"title": "ahmedmahmoud",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 2
},
{
"handle": "fsvr",
"title": "vwrewefo",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 3
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 4
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 5
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 6
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 7
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 8
},
{
"handle": "f",
"title": "wffwrrvvrr",
"isPrivate": false,
"settings": {
"blogPassword": ""
},
"id": 9
},
{
"handle": "svsecwec",
"title": "sdvsveve",
"isPrivate": true,
"settings": {
"blogPassword": "svsvcwev"
},
"id": 10
}
]
}
Loading