-
Notifications
You must be signed in to change notification settings - Fork 14
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
Feature/polished UI frontend #13
Changes from all commits
6169b0d
bb308dd
f05556f
88e7588
fe626cc
30147d6
83d3736
4a49a7d
b249224
63b866d
42b2bf2
c61be30
3be2780
5b49e13
0e573e4
f458532
7d23f06
e32b161
dba8e6b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,11 +32,11 @@ public class UcSaveTaskItem { | |
* @return the {@link TaskItemEntity#getId() primary key} of the saved {@link TaskItemEntity}. | ||
*/ | ||
// @RolesAllowed(ApplicationAccessControlConfig.PERMISSION_SAVE_TASK_ITEM) | ||
public Long save(TaskItemEto item) { | ||
public TaskItemEntity save(TaskItemEto item) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Returning an Entity from a use case is not good practice. We'll have a talk about this in the training |
||
|
||
TaskItemEntity entity = this.taskItemMapper.toEntity(item); | ||
entity = this.taskItemRepository.save(entity); | ||
return entity.getId(); | ||
return entity; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,11 @@ public class UcSaveTaskList { | |
* @return the {@link TaskListEntity#getId() primary key} of the saved {@link TaskListEntity}. | ||
*/ | ||
// @RolesAllowed(ApplicationAccessControlConfig.PERMISSION_SAVE_TASK_LIST) | ||
public Long save(TaskListEto list) { | ||
public TaskListEntity save(TaskListEto list) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Returning an Entity from a use case is not good practice. We'll have a talk about this in the training |
||
|
||
TaskListEntity entity = this.taskListMapper.toEntity(list); | ||
entity = this.taskListRepository.save(entity); | ||
return entity.getId(); | ||
return entity; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,8 @@ | |
import org.example.app.task.common.TaskItemEto; | ||
import org.example.app.task.common.TaskListCto; | ||
import org.example.app.task.common.TaskListEto; | ||
import org.example.app.task.dataaccess.TaskItemEntity; | ||
import org.example.app.task.dataaccess.TaskListEntity; | ||
import org.example.app.task.logic.UcAddRandomActivityTaskItem; | ||
import org.example.app.task.logic.UcDeleteTaskItem; | ||
import org.example.app.task.logic.UcDeleteTaskList; | ||
|
@@ -31,7 +33,9 @@ | |
import org.example.app.task.logic.UcSaveTaskList; | ||
|
||
import java.net.URI; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Rest service for {@link org.example.app.task.common.TaskList}. | ||
|
@@ -74,11 +78,11 @@ public class TaskService { | |
@APIResponse(responseCode = "500", description = "Server unavailable or a server-side error occurred") | ||
public Response saveTask(@Valid TaskListEto taskList) { | ||
|
||
Long taskListId = this.ucSaveTaskList.save(taskList); | ||
if (taskList.getId() == null || taskList.getId() != taskListId) { | ||
return Response.created(URI.create("/task/list/" + taskListId)).build(); | ||
TaskListEntity savedTaskList = this.ucSaveTaskList.save(taskList); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Returning an Entity from a service is not good practice. We'll have a talk about this in the training |
||
if (taskList.getId() == null || !Objects.equals(taskList.getId(), savedTaskList.getId())) { | ||
return Response.created(URI.create("/task/list/" + savedTaskList.getId())).entity(savedTaskList.getId()).build(); | ||
} | ||
return Response.ok().build(); | ||
return Response.ok(savedTaskList.getVersion()).build(); | ||
} | ||
|
||
/** | ||
|
@@ -102,6 +106,19 @@ public TaskListEto findTaskList( | |
return task; | ||
} | ||
|
||
/** | ||
* @return all {@link TaskListEto}. | ||
*/ | ||
@GET | ||
@Path("/lists") | ||
@Produces(MediaType.APPLICATION_JSON) | ||
@Operation(summary = "Fetch task lists", description = "Fetch all task list") | ||
@APIResponse(responseCode = "200", description = "Task lists", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = TaskListEto[].class))) | ||
@APIResponse(responseCode = "500", description = "Server unavailable or a server-side error occurred") | ||
public List<TaskListEto> findTaskLists() { | ||
return this.ucFindTaskList.findAll(); | ||
} | ||
|
||
/** | ||
* @param id the {@link TaskListEto#getId() primary key} of the requested {@link TaskListEto}. | ||
* @return the {@link TaskListEto} for the given {@code id}. | ||
|
@@ -167,10 +184,10 @@ public Response addMultipleRandomActivities(@NotBlank @Schema(required = true, e | |
TaskListEto taskList = new TaskListEto(); | ||
taskList.setTitle(listTitle); | ||
|
||
Long taskListId = this.ucSaveTaskList.save(taskList); | ||
this.ucAddRandomActivityTask.addMultipleRandom(taskListId, listTitle); | ||
TaskListEntity taskListEntity = this.ucSaveTaskList.save(taskList); | ||
this.ucAddRandomActivityTask.addMultipleRandom(taskListEntity.getId(), listTitle); | ||
|
||
return Response.created(URI.create("/task/list/" + taskListId)).build(); | ||
return Response.created(URI.create("/task/list/" + taskListEntity.getId())).build(); | ||
} | ||
|
||
@POST | ||
|
@@ -197,10 +214,10 @@ public Response addExtractedIngredients(@Schema(required = true, example = """ | |
TaskListEto taskList = new TaskListEto(); | ||
taskList.setTitle(listTitle); | ||
|
||
Long taskListId = this.ucSaveTaskList.save(taskList); | ||
this.ucAddRandomActivityTask.addExtractedIngredients(taskListId, recipe); | ||
TaskListEntity taskListEntity = this.ucSaveTaskList.save(taskList); | ||
this.ucAddRandomActivityTask.addExtractedIngredients(taskListEntity.getId(), recipe); | ||
|
||
return Response.created(URI.create("/task/list/" + taskListId)).build(); | ||
return Response.created(URI.create("/task/list/" + taskListEntity.getId())).build(); | ||
} | ||
|
||
/** | ||
|
@@ -217,11 +234,11 @@ public Response addExtractedIngredients(@Schema(required = true, example = """ | |
@APIResponse(responseCode = "500", description = "Server unavailable or a server-side error occurred") | ||
public Response saveTaskItem(@Valid TaskItemEto item) { | ||
|
||
Long taskItemId = this.ucSaveTaskItem.save(item); | ||
if (item.getId() == null || item.getId() != taskItemId) { | ||
return Response.created(URI.create("/task/item/" + taskItemId)).entity(taskItemId).build(); | ||
TaskItemEntity savedTaskItem = this.ucSaveTaskItem.save(item); | ||
if (item.getId() == null || !Objects.equals(item.getId(), savedTaskItem.getId())) { | ||
return Response.created(URI.create("/task/item/" + savedTaskItem.getId())).entity(savedTaskItem.getId()).build(); | ||
} | ||
return Response.ok(taskItemId).build(); | ||
return Response.ok(savedTaskItem.getVersion()).build(); | ||
} | ||
|
||
/** | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,15 @@ quarkus.flyway.create-schemas=true | |
quarkus.flyway.migrate-at-start=true | ||
|
||
quarkus.http.cors=true | ||
quarkus.http.cors.origins=http://localhost:3000,http://localhost:8080 | ||
quarkus.http.cors.origins=http://localhost:5173,http://localhost:8080 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need this change at the training? Why not stick to 3000? |
||
quarkus.http.cors.headers=accept, authorization, content-type, x-requested-with | ||
quarkus.http.cors.methods=GET, POST, OPTIONS, DELETE | ||
|
||
%dev.quarkus.devservices.enabled=true | ||
%dev.quarkus.hibernate-orm.log.sql=true | ||
%dev.quarkus.hibernate-orm.validate-in-dev-mode=true | ||
%dev.quarkus.flyway.schemas=quarkus | ||
%dev.quarkus.http.access-log.enabled=true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should go to the main branch and we need to cherry pick it on all solution branches. Same goes for the whole frontend code |
||
|
||
%test.quarkus.rest-client.logging.scope=request-response | ||
%dev.quarkus.rest-client.logging.scope=request-response | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="favicon.ico" /> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#242E68" /> | ||
<meta name="description" content="A Powerful To-Do App" /> | ||
<link rel="apple-touch-icon" href="logo.png" /> | ||
<link rel="manifest" href="manifest.json" /> | ||
<title>My Todos</title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like solution/logic branch to me