Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchParapheur
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
Maarch
MaarchParapheur
Commits
c85fbfde
Commit
c85fbfde
authored
4 years ago
by
Alex ORLUC
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #14561 TIME 0:10 WIP front indexation
parent
33f07798
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/frontend/app/indexation/indexation.component.ts
+18
-11
18 additions, 11 deletions
src/frontend/app/indexation/indexation.component.ts
with
18 additions
and
11 deletions
src/frontend/app/indexation/indexation.component.ts
+
18
−
11
View file @
c85fbfde
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
Component
,
OnInit
,
TemplateRef
,
ViewChild
,
ViewContainerRef
}
from
'
@angular/core
'
;
import
{
Component
,
OnInit
,
TemplateRef
,
ViewChild
,
ViewContainerRef
}
from
'
@angular/core
'
;
import
{
Router
}
from
'
@angular/router
'
;
import
{
Router
}
from
'
@angular/router
'
;
import
{
MenuController
}
from
'
@ionic/angular
'
;
import
{
LoadingController
,
MenuController
}
from
'
@ionic/angular
'
;
import
{
of
}
from
'
rxjs
'
;
import
{
of
}
from
'
rxjs
'
;
import
{
catchError
,
finalize
,
tap
}
from
'
rxjs/operators
'
;
import
{
catchError
,
finalize
,
tap
}
from
'
rxjs/operators
'
;
import
{
VisaWorkflowComponent
}
from
'
../document/visa-workflow/visa-workflow.component
'
;
import
{
VisaWorkflowComponent
}
from
'
../document/visa-workflow/visa-workflow.component
'
;
...
@@ -30,6 +30,7 @@ export class IndexationComponent implements OnInit {
...
@@ -30,6 +30,7 @@ export class IndexationComponent implements OnInit {
public
viewContainerRef
:
ViewContainerRef
,
public
viewContainerRef
:
ViewContainerRef
,
public
notificationService
:
NotificationService
,
public
notificationService
:
NotificationService
,
public
authService
:
AuthService
,
public
authService
:
AuthService
,
public
loadingController
:
LoadingController
,
)
{
}
)
{
}
ngOnInit
():
void
{
ngOnInit
():
void
{
...
@@ -47,17 +48,23 @@ export class IndexationComponent implements OnInit {
...
@@ -47,17 +48,23 @@ export class IndexationComponent implements OnInit {
this
.
signaturesService
.
detachTemplate
(
'
rightContent
'
);
this
.
signaturesService
.
detachTemplate
(
'
rightContent
'
);
}
}
async
onSubmit
()
{
onSubmit
()
{
if
(
this
.
isValid
())
{
if
(
this
.
isValid
())
{
const
objTosend
=
this
.
formatData
();
this
.
loadingController
.
create
({
for
(
let
index
=
0
;
index
<
objTosend
.
length
;
index
++
)
{
message
:
'
Enregistrement ...
'
,
console
.
log
(
'
save..
'
);
spinner
:
'
dots
'
await
this
.
saveDocument
(
objTosend
[
index
],
index
);
}).
then
(
async
(
load
:
HTMLIonLoadingElement
)
=>
{
}
load
.
present
();
if
(
this
.
errors
.
length
===
0
)
{
const
objTosend
=
this
.
formatData
();
this
.
notificationService
.
success
(
'
Document(s) importé(s)
'
);
for
(
let
index
=
0
;
index
<
objTosend
.
length
;
index
++
)
{
this
.
router
.
navigate
([
'
/home
'
]);
await
this
.
saveDocument
(
objTosend
[
index
],
index
);
}
}
load
.
dismiss
();
if
(
this
.
errors
.
length
===
0
)
{
this
.
notificationService
.
success
(
'
Document(s) importé(s)
'
);
this
.
router
.
navigate
([
'
/home
'
]);
}
});
}
}
}
}
...
...
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