forked from enviPath/enviPy
This PR moves all the collection pages into the new UI in a rough push. I did not put the same amount of care into these as into search, index, and predict. ## Major changes - All modals are now migrated to a state based alpine.js implementation. - jQuery is no longer present in the base layout; ajax is replace by native fetch api - most of the pps.js is now obsolte (as I understand it; the code is not referenced any more @jebus please double check) - in-memory pagination for large result lists (set to 50; we can make that configurable later; performance degrades at around 1k) stukk a bit rough tracked in #235 ## Minor things - Sarch and index also use alpine now - The loading spinner is now CSS animated (not sure if it currently gets correctly called) ## Not done - Ihave not even cheked the admin pages. Not sure If these need migrations - The temporary migration pages still use the old template. Not sure what is supposed to happen with those? @jebus ## What I did to test - opend all pages in browse, and user ; plus all pages reachable from there. - Interacted and tested the functionality of each modal superfically with exception of the API key modal (no functional test). --- This PR is massive sorry for that; just did not want to push half-brokenn state. @jebus @liambrydon I would be glad if you could click around and try to break it :) Finally closes #133 Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#236 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
151 lines
4.2 KiB
HTML
151 lines
4.2 KiB
HTML
{% load static %}
|
|
<!-- Edit Group Member -->
|
|
<dialog
|
|
id="edit_group_member_modal"
|
|
class="modal"
|
|
x-data="{
|
|
isSubmitting: false,
|
|
|
|
reset() {
|
|
this.isSubmitting = false;
|
|
},
|
|
|
|
submitForm(form) {
|
|
if (form && form.checkValidity()) {
|
|
form.submit();
|
|
} else if (form) {
|
|
form.reportValidity();
|
|
}
|
|
}
|
|
}"
|
|
@close="reset()"
|
|
>
|
|
<div class="modal-box">
|
|
<!-- Header -->
|
|
<h3 class="text-lg font-bold">Add or Remove Group Member</h3>
|
|
|
|
<!-- Close button (X) -->
|
|
<form method="dialog">
|
|
<button
|
|
class="btn btn-sm btn-circle btn-ghost absolute top-2 right-2"
|
|
:disabled="isSubmitting"
|
|
>
|
|
✕
|
|
</button>
|
|
</form>
|
|
|
|
<!-- Body -->
|
|
<div class="py-4">
|
|
<p class="mb-4">
|
|
To add member (either User or entire Groups) to this group select the
|
|
entity you want to add below and click the check mark.
|
|
<br />
|
|
To remove member simply click the X button next to the member.
|
|
</p>
|
|
|
|
<!-- Add Member Form -->
|
|
<form
|
|
id="modal-form-group-member"
|
|
accept-charset="UTF-8"
|
|
action=""
|
|
method="post"
|
|
class="mb-4"
|
|
>
|
|
{% csrf_token %}
|
|
<div class="flex gap-2 items-end">
|
|
<div class="form-control flex-1">
|
|
<label class="label">
|
|
<span class="label-text">User or Group</span>
|
|
</label>
|
|
<select
|
|
id="select_member"
|
|
name="member"
|
|
class="select select-bordered w-full"
|
|
required
|
|
>
|
|
<optgroup label="Users">
|
|
{% for u in users %}
|
|
<option value="{{ u.url }}">{{ u.username }}</option>
|
|
{% endfor %}
|
|
</optgroup>
|
|
<optgroup label="Groups">
|
|
{% for g in groups %}
|
|
<option value="{{ g.url }}">{{ g.name|safe }}</option>
|
|
{% endfor %}
|
|
</optgroup>
|
|
</select>
|
|
<input type="hidden" name="action" value="add" />
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Add</button>
|
|
</div>
|
|
</form>
|
|
|
|
<!-- User Members -->
|
|
{% if group.user_member.all %}
|
|
<div class="divider">User Members</div>
|
|
<div class="space-y-2">
|
|
{% for u in group.user_member.all %}
|
|
<form
|
|
id="modal-form-group-member_{{ u.uuid }}"
|
|
accept-charset="UTF-8"
|
|
action=""
|
|
method="post"
|
|
>
|
|
{% csrf_token %}
|
|
<div class="flex items-center gap-2">
|
|
<span class="flex-1">{{ u.username }}</span>
|
|
<input type="hidden" name="member" value="{{ u.url }}" />
|
|
<input type="hidden" name="action" value="remove" />
|
|
<button type="submit" class="btn btn-error btn-sm">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Group Members -->
|
|
{% if group.group_member.all %}
|
|
<div class="divider">Group Members</div>
|
|
<div class="space-y-2">
|
|
{% for g in group.group_member.all %}
|
|
<form
|
|
id="modal-form-group-member_{{ g.uuid }}"
|
|
accept-charset="UTF-8"
|
|
action=""
|
|
method="post"
|
|
>
|
|
{% csrf_token %}
|
|
<div class="flex items-center gap-2">
|
|
<span class="flex-1">{{ g.name|safe }}</span>
|
|
<input type="hidden" name="member" value="{{ g.url }}" />
|
|
<input type="hidden" name="action" value="remove" />
|
|
<button type="submit" class="btn btn-error btn-sm">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="modal-action">
|
|
<button
|
|
type="button"
|
|
class="btn"
|
|
onclick="this.closest('dialog').close()"
|
|
>
|
|
Close
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Backdrop -->
|
|
<form method="dialog" class="modal-backdrop">
|
|
<button>close</button>
|
|
</form>
|
|
</dialog>
|