Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
I
init-things
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
init-things
Commits
6bae51cd
Commit
6bae51cd
authored
Nov 22, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
b575540d
Pipeline
#7077
passed with stages
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
things/nest-typeorm/src/crud-base/crud-base.ts
things/nest-typeorm/src/crud-base/crud-base.ts
+7
-9
No files found.
things/nest-typeorm/src/crud-base/crud-base.ts
View file @
6bae51cd
import
{
ConsoleLogger
}
from
'
@nestjs/common
'
;
import
{
ClassConstructor
}
from
'
class-transformer
'
;
import
{
Repository
,
SelectQueryBuilder
}
from
'
typeorm
'
;
import
{
Repository
,
SelectQueryBuilder
,
UpdateResult
}
from
'
typeorm
'
;
import
{
BlankReturnMessageDto
,
ReturnMessageDto
,
...
...
@@ -141,15 +141,9 @@ export class CrudBase<
}
async
update
(
id
:
EntityId
<
T
>
,
entPart
:
Partial
<
T
>
)
{
let
result
:
UpdateResult
;
try
{
const
result
=
await
this
.
repo
.
update
({
id
,
isDeleted
:
false
},
entPart
);
if
(
!
result
.
affected
)
{
throw
new
BlankReturnMessageDto
(
404
,
`ID
${
id
}
not found.`
,
).
toException
();
}
return
new
BlankReturnMessageDto
(
200
,
'
success
'
);
result
=
await
this
.
repo
.
update
({
id
,
isDeleted
:
false
},
entPart
);
}
catch
(
e
)
{
this
.
error
(
`Failed to create entity ID
${
id
}
to
${
JSON
.
stringify
(
...
...
@@ -158,6 +152,10 @@ export class CrudBase<
);
throw
new
BlankReturnMessageDto
(
500
,
'
internal error
'
).
toException
();
}
if
(
!
result
.
affected
)
{
throw
new
BlankReturnMessageDto
(
404
,
`ID
${
id
}
not found.`
).
toException
();
}
return
new
BlankReturnMessageDto
(
200
,
'
success
'
);
}
async
remove
(
id
:
EntityId
<
T
>
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment