Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
third-party
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cooperatic-foodcoops
third-party
Commits
8b9bd260
Commit
8b9bd260
authored
Mar 11, 2022
by
Thibault Grandjean
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add confirmation modal for create pair
parent
50e242ce
Pipeline
#1937
passed with stage
in 1 minute 30 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
25 deletions
+45
-25
manage_attached.js
members/static/js/admin/manage_attached.js
+37
-25
manage_attached_create_pair.html
templates/members/admin/manage_attached_create_pair.html
+8
-0
No files found.
members/static/js/admin/manage_attached.js
View file @
8b9bd260
...
...
@@ -224,6 +224,37 @@ function confirmDeletion(childId) {
},
'Valider'
);
}
function
create_pair
(
payload
)
{
$
.
ajax
({
type
:
'POST'
,
url
:
"/members/admin/manage_attached/create_pair"
,
dataType
:
"json"
,
contentType
:
"application/json; charset=utf-8"
,
data
:
JSON
.
stringify
(
payload
),
success
:
function
(
data
)
{
location
.
reload
()
},
error
:
function
(
data
)
{
err
=
{
msg
:
"erreur serveur"
,
ctx
:
'create pair'
};
if
(
typeof
data
.
responseJSON
!=
'undefined'
&&
typeof
data
.
responseJSON
.
errors
!=
'undefined'
)
{
err
.
msg
+=
' : '
+
data
.
responseJSON
.
errors
;
}
report_JS_error
(
err
,
'members.admin'
);
closeModal
();
var
message
=
'Erreur lors de création du binôme.'
;
data
.
responseJSON
.
errors
.
map
(
function
(
error
)
{
message
+=
(
'
\
n'
+
error
);
});
alert
(
message
);
}
});
}
$
(
document
).
ready
(
function
()
{
if
(
coop_is_connected
())
{
$
.
ajaxSetup
({
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)
}
});
...
...
@@ -346,31 +377,12 @@ $(document).ready(function() {
"child"
:
{
"id"
:
childId
}
};
$
.
ajax
({
type
:
'POST'
,
url
:
"/members/admin/manage_attached/create_pair"
,
dataType
:
"json"
,
contentType
:
"application/json; charset=utf-8"
,
data
:
JSON
.
stringify
(
payload
),
success
:
function
(
data
)
{
alert
(
"binôme créé"
);
},
error
:
function
(
data
)
{
err
=
{
msg
:
"erreur serveur"
,
ctx
:
'create pair'
};
if
(
typeof
data
.
responseJSON
!=
'undefined'
&&
typeof
data
.
responseJSON
.
errors
!=
'undefined'
)
{
err
.
msg
+=
' : '
+
data
.
responseJSON
.
errors
;
}
report_JS_error
(
err
,
'members.admin'
);
closeModal
();
var
message
=
'Erreur lors de création du binôme.'
;
data
.
responseJSON
.
errors
.
map
(
function
(
error
)
{
message
+=
(
'
\
n'
+
error
);
});
alert
(
message
);
}
});
var
modalContent
=
$
(
'#confirmModal'
).
html
();
openModal
(
modalContent
,
()
=>
{
if
(
is_time_to
(
'create_pair'
))
{
create_pair
(
payload
)
}
},
'Valider'
);
});
if
(
$
(
"#attached_members_table"
)
!=
"undefined"
)
{
...
...
templates/members/admin/manage_attached_create_pair.html
View file @
8b9bd260
...
...
@@ -14,6 +14,14 @@
{% endblock %}
{% block content %}
<div
id=
"template"
style=
"display:None;"
>
<div
id=
"confirmModal"
>
<h3>
Le binôme est sur le point d'être créé
</h3>
<br/>
<p>
Êtes-vous sur de vouloir continuer
</p>
<hr/>
</div>
</div>
<div
class=
"page_body"
>
<div
id=
"back_to_admin_index"
>
<button
type=
"button"
class=
"btn--danger"
><i
class=
"fas fa-arrow-left"
></i>
Retour
</button>
...
...
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