Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
To-Do-List Abbas
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Famboupe Abbas
To-Do-List Abbas
Commits
90ba3d92
Commit
90ba3d92
authored
1 week ago
by
Famboupe Abbas
Browse files
Options
Downloads
Patches
Plain Diff
changed to local mongodb storage
parent
da45638d
Branches
main
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Controller.js
+3
-3
3 additions, 3 deletions
src/Controller.js
src/DatabaseController.js
+6
-6
6 additions, 6 deletions
src/DatabaseController.js
with
9 additions
and
9 deletions
src/Controller.js
+
3
−
3
View file @
90ba3d92
...
...
@@ -15,7 +15,7 @@ async function fetchTodoElements(){
fetchTodoElements
();
//Used by the button next to the textbox
todoForm
.
addEventListener
(
'
S
ubmit
'
,
function
(
e
){
todoForm
.
addEventListener
(
'
s
ubmit
'
,
function
(
e
){
e
.
preventDefault
();
addTodoElement
();
})
...
...
@@ -23,7 +23,7 @@ todoForm.addEventListener('Submit', function(e){
//Method updates the list in the HTML doc
async
function
updateList
(){
todoList
.
innerHTML
=
""
;
todoElements
.
forEach
(()
=>
{
todoElements
.
forEach
((
todo
,
index
)
=>
{
const
todoElement
=
createItem
(
todo
,
index
);
todoList
.
append
(
todoElement
);
})
...
...
@@ -56,7 +56,7 @@ async function updateStatus(index, isChecked){
newStatus
=
"
open
"
;
}
await
fetch
(
`
${
url
}
$
/
${
todoId
}
`
,
{
await
fetch
(
`
${
url
}
/
${
todoId
}
`
,
{
method
:
"
PATCH
"
,
headers
:
{
"
Content-Type
"
:
"
application/json
"
},
body
:
JSON
.
stringify
({
status
:
newStatus
}),
...
...
This diff is collapsed.
Click to expand it.
src/DatabaseController.js
+
6
−
6
View file @
90ba3d92
...
...
@@ -8,7 +8,7 @@ const PORT = process.env.PORT || 5000;
app
.
use
(
cors
());
app
.
use
(
express
.
json
());
const
uri
=
"
mongodb
+srv://famboupeabbas:dbCloudComputing@todocloudcomputing.pcms2.mongodb.net/?retryWrites=true&w=majority&appName=todo
CloudComputing
"
;
const
uri
=
"
mongodb
://localhost:27017/
CloudComputing
"
;
//Method to create database connection
mongoose
.
connect
(
uri
)
...
...
@@ -18,13 +18,13 @@ mongoose.connect(uri)
process
.
exit
(
1
);});
const
Template
=
new
mongoose
.
Schema
({
t
ask
:
String
,
status
:
{
type
:
s
tring
,
default
:
"
open
"
}
t
ext
:
String
,
status
:
{
type
:
S
tring
,
default
:
"
open
"
}
});
const
todoTemplate
=
mongoose
.
model
(
"
T
odo
"
,
Template
);
const
todoTemplate
=
mongoose
.
model
(
"
t
odo
s
"
,
Template
);
app
.
listen
(
PORT
,
()
=>
console
.
log
(
`Server was started on port
${
PORT
}
`
));
app
.
listen
(
PORT
,
()
=>
console
.
log
(
`Server was started on port
${
PORT
}
`
));
//Method to fetch all the elements from the database
app
.
get
(
"
/todos
"
,
async
(
req
,
res
)
=>
{
...
...
@@ -34,7 +34,7 @@ app.get("/todos", async (req, res) => {
//Method to add an element to the database
app
.
post
(
"
/todos
"
,
async
(
req
,
res
)
=>
{
const
addedTodo
=
new
Template
({
text
:
req
.
body
.
text
,
status
:
"
open
"
});
const
addedTodo
=
new
todo
Template
({
text
:
req
.
body
.
text
,
status
:
"
open
"
});
await
addedTodo
.
save
();
res
.
json
(
addedTodo
);
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment