Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dspace7 Angular
Manage
Activity
Members
Labels
Plan
Issues
42
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
vtechworks
Dspace7 Angular
Commits
395a78c3
Commit
395a78c3
authored
5 years ago
by
Yana De Pauw
Browse files
Options
Downloads
Patches
Plain Diff
62571: Update item move method
parent
41e9770a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/+item-page/edit-item-page/item-move/item-move.component.ts
+4
-1
4 additions, 1 deletion
...item-page/edit-item-page/item-move/item-move.component.ts
src/app/core/data/item-data.service.ts
+14
-8
14 additions, 8 deletions
src/app/core/data/item-data.service.ts
with
18 additions
and
9 deletions
src/app/+item-page/edit-item-page/item-move/item-move.component.ts
+
4
−
1
View file @
395a78c3
...
...
@@ -17,6 +17,7 @@ import {getItemEditPath} from '../../item-page-routing.module';
import
{
Observable
}
from
'
rxjs
'
;
import
{
of
as
observableOf
}
from
'
rxjs
'
;
import
{
RestResponse
}
from
'
../../../core/cache/response.models
'
;
import
{
Collection
}
from
'
../../../core/shared/collection.model
'
;
@
Component
({
selector
:
'
ds-item-move
'
,
...
...
@@ -34,6 +35,7 @@ export class ItemMoveComponent implements OnInit {
itemRD$
:
Observable
<
RemoteData
<
Item
>>
;
collectionSearchResults
:
Observable
<
any
[]
>
=
observableOf
([]);
selectedCollection
:
string
;
selectedCollectionObject
:
Collection
;
selectedCollectionId
:
string
;
itemId
:
string
;
...
...
@@ -92,6 +94,7 @@ export class ItemMoveComponent implements OnInit {
onClick
(
data
:
any
):
void
{
this
.
selectedCollection
=
data
.
name
;
this
.
selectedCollectionId
=
data
.
id
;
this
.
selectedCollectionObject
=
data
;
}
/**
...
...
@@ -105,7 +108,7 @@ export class ItemMoveComponent implements OnInit {
* Moves the item to a new collection based on the selected collection
*/
moveCollection
()
{
this
.
itemDataService
.
moveToCollection
(
this
.
itemId
,
this
.
selectedCollection
Id
).
pipe
(
first
()).
subscribe
(
this
.
itemDataService
.
moveToCollection
(
this
.
itemId
,
this
.
selectedCollection
Object
).
pipe
(
first
()).
subscribe
(
(
response
:
RestResponse
)
=>
{
this
.
router
.
navigate
([
getItemEditPath
(
this
.
itemId
)]);
if
(
response
.
isSuccessful
)
{
...
...
This diff is collapsed.
Click to expand it.
src/app/core/data/item-data.service.ts
+
14
−
8
View file @
395a78c3
...
...
@@ -12,15 +12,17 @@ import { URLCombiner } from '../url-combiner/url-combiner';
import
{
DataService
}
from
'
./data.service
'
;
import
{
RequestService
}
from
'
./request.service
'
;
import
{
HALEndpointService
}
from
'
../shared/hal-endpoint.service
'
;
import
{
DeleteByIDRequest
,
FindAllOptions
,
PatchRequest
,
PutRequest
,
RestRequest
}
from
'
./request.models
'
;
import
{
FindAllOptions
,
PatchRequest
,
PutRequest
,
RestRequest
}
from
'
./request.models
'
;
import
{
ObjectCacheService
}
from
'
../cache/object-cache.service
'
;
import
{
NotificationsService
}
from
'
../../shared/notifications/notifications.service
'
;
import
{
DSOChangeAnalyzer
}
from
'
./dso-change-analyzer.service
'
;
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
HttpClient
,
HttpHeaders
}
from
'
@angular/common/http
'
;
import
{
NormalizedObjectBuildService
}
from
'
../cache/builders/normalized-object-build.service
'
;
import
{
configureRequest
,
getRequestFromRequestHref
}
from
'
../shared/operators
'
;
import
{
RequestEntry
}
from
'
./request.reducer
'
;
import
{
RestResponse
}
from
'
../cache/response.models
'
;
import
{
HttpOptions
}
from
'
../dspace-rest-v2/dspace-rest-v2.service
'
;
import
{
Collection
}
from
'
../shared/collection.model
'
;
@
Injectable
()
export
class
ItemDataService
extends
DataService
<
Item
>
{
...
...
@@ -120,22 +122,26 @@ export class ItemDataService extends DataService<Item> {
);
}
public
getMoveItemEndpoint
(
itemId
:
string
,
collectionId
?:
string
):
Observable
<
string
>
{
public
getMoveItemEndpoint
(
itemId
:
string
):
Observable
<
string
>
{
return
this
.
halService
.
getEndpoint
(
this
.
linkPath
).
pipe
(
map
((
endpoint
:
string
)
=>
this
.
getIDHref
(
endpoint
,
itemId
)),
map
((
endpoint
:
string
)
=>
`
${
endpoint
}
/owningCollection
/move/
${
collectionId
?
`/
${
collectionId
}
`
:
''
}
`
)
map
((
endpoint
:
string
)
=>
`
${
endpoint
}
/owningCollection`
)
);
}
public
moveToCollection
(
itemId
:
string
,
collectionId
:
string
):
Observable
<
RestResponse
>
{
const
requestId
=
this
.
requestService
.
generateRequestId
();
public
moveToCollection
(
itemId
:
string
,
collection
:
Collection
):
Observable
<
RestResponse
>
{
const
options
:
HttpOptions
=
Object
.
create
({});
let
headers
=
new
HttpHeaders
();
headers
=
headers
.
append
(
'
Content-Type
'
,
'
text/uri-list
'
);
options
.
headers
=
headers
;
const
hrefObs
=
this
.
getMoveItemEndpoint
(
itemId
,
collectionId
);
const
requestId
=
this
.
requestService
.
generateRequestId
();
const
hrefObs
=
this
.
getMoveItemEndpoint
(
itemId
);
hrefObs
.
pipe
(
find
((
href
:
string
)
=>
hasValue
(
href
)),
map
((
href
:
string
)
=>
{
const
request
=
new
PutRequest
(
requestId
,
href
);
const
request
=
new
PutRequest
(
requestId
,
href
,
collection
.
self
,
options
);
this
.
requestService
.
configure
(
request
);
})
).
subscribe
();
...
...
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