Compare commits
5 Commits
a1d863e805
...
kh-test
| Author | SHA1 | Date | |
|---|---|---|---|
| 7694fc1e08 | |||
| 835795f526 | |||
| e12e4c5325 | |||
| fad59d9311 | |||
| d93b29a324 |
@ -1,12 +1,18 @@
|
||||
@using Oqtane.Modules.Controls
|
||||
@using Oqtane
|
||||
@using Oqtane.Modules.Controls
|
||||
@using SZUAbsolventenverein.Module.EventRegistration.Services
|
||||
@using SZUAbsolventenverein.Module.EventRegistration.Models
|
||||
@using System.Text.RegularExpressions
|
||||
|
||||
@namespace SZUAbsolventenverein.Module.EventRegistration
|
||||
@inherits ModuleBase
|
||||
@inject IEventRegistrationService EventRegistrationService
|
||||
@inject NavigationManager NavigationManager
|
||||
@inject IStringLocalizer<Edit> Localizer
|
||||
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
||||
@inject IUserService UserService
|
||||
@inject IProfileService ProfileService
|
||||
@inject ISettingService SettingService
|
||||
|
||||
<h3>Anmeldung zum Event</h3>
|
||||
|
||||
@ -20,15 +26,15 @@
|
||||
|
||||
@if (Status != null)
|
||||
{
|
||||
<p class="mt-3"><strong>Status:</strong>
|
||||
<p class="mt-2"><strong>Status: </strong>
|
||||
@if (Status == true)
|
||||
{
|
||||
@Localizer["Zusage"]<br />
|
||||
<button class="btn btn-danger" @onclick="Absage">@Localizer["Absagen"]</button>
|
||||
<span class ="fontsizeInf">@Localizer["Zugesagt"]</span><br />
|
||||
<p><button class="btn btn-danger" @onclick="Absage">@Localizer["Absagen"]</button></p>
|
||||
} else
|
||||
{
|
||||
@Localizer["Absage"]<br />
|
||||
<button class="btn btn-success" @onclick="Zusage">@Localizer["Zusagen"]</button>
|
||||
<span class="fontsizeInf"> @Localizer["Abgesagt"]</span><br />
|
||||
<p><button class="btn btn-success" @onclick="Zusage">@Localizer["Zusagen"]</button></p>
|
||||
}
|
||||
</p>
|
||||
} else {
|
||||
@ -71,6 +77,9 @@
|
||||
private Response _response;
|
||||
private bool? Status;
|
||||
|
||||
private List<Profile> _profiles = new List<Profile>();
|
||||
private Dictionary<string, string> _settings;
|
||||
|
||||
private async Task SendResponse(bool response)
|
||||
{
|
||||
if(_response == null)
|
||||
@ -91,18 +100,45 @@
|
||||
|
||||
private async void Zusage()
|
||||
{
|
||||
await SendResponse(true);
|
||||
if(ValidateProfiles())
|
||||
{
|
||||
await SendResponse(true);
|
||||
} else
|
||||
{
|
||||
var currentPathAndQuery = new Uri(NavigationManager.Uri).PathAndQuery;
|
||||
var encodedReturnUrl = Uri.EscapeDataString(currentPathAndQuery);
|
||||
var link = $"/profile?tab=Profile&returnurl={encodedReturnUrl}";
|
||||
|
||||
AddModuleMessage(string.Format(SharedLocalizer["ProfileRequired"], $"Vervollständige hier dein Profil mit deinem Jahrgang und deiner Fachrichtung: <a href=\"{link}\">Link zum Profil</a>"), MessageType.Warning);
|
||||
}
|
||||
}
|
||||
|
||||
private async void Absage()
|
||||
{
|
||||
await SendResponse(false);
|
||||
if(ValidateProfiles())
|
||||
{
|
||||
await SendResponse(false);
|
||||
} else
|
||||
{
|
||||
var currentPathAndQuery = new Uri(NavigationManager.Uri).PathAndQuery;
|
||||
var encodedReturnUrl = Uri.EscapeDataString(currentPathAndQuery);
|
||||
var link = $"/profile?tab=profile&returnurl={encodedReturnUrl}";
|
||||
|
||||
AddModuleMessage(string.Format(SharedLocalizer["ProfileRequired"], $"Vervollständige hier dein Profil mit deinem Jahrgang und deiner Fachrichtung: {link}"), MessageType.Warning);
|
||||
}
|
||||
}
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
_profiles = await ProfileService.GetProfilesAsync(PageState.Site.SiteId);
|
||||
var user = await UserService.GetUserAsync(PageState.User.UserId, PageState.Site.SiteId);
|
||||
if (user != null)
|
||||
{
|
||||
_settings = user.Settings;
|
||||
}
|
||||
|
||||
_id = Int32.Parse(PageState.QueryString["id"]);
|
||||
|
||||
Event currentEvent;
|
||||
@ -128,4 +164,46 @@
|
||||
AddModuleMessage(Localizer["Message.LoadError"], MessageType.Error);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private bool ValidateProfiles()
|
||||
{
|
||||
foreach (Profile profile in _profiles)
|
||||
{
|
||||
var value = GetProfileValue(profile.Name, string.Empty);
|
||||
if (string.IsNullOrEmpty(value) && !string.IsNullOrEmpty(profile.DefaultValue))
|
||||
{
|
||||
_settings = SettingService.SetSetting(_settings, profile.Name, profile.DefaultValue);
|
||||
}
|
||||
if (!profile.IsPrivate || UserSecurity.IsAuthorized(PageState.User, RoleNames.Admin))
|
||||
{
|
||||
if (profile.IsRequired && string.IsNullOrEmpty(value))
|
||||
{
|
||||
AddModuleMessage(string.Format(SharedLocalizer["ProfileRequired"], profile.Title), MessageType.Warning);
|
||||
return false;
|
||||
}
|
||||
if (!string.IsNullOrEmpty(profile.Validation))
|
||||
{
|
||||
Regex regex = new Regex(profile.Validation);
|
||||
bool valid = regex.Match(value).Success;
|
||||
if (!valid)
|
||||
{
|
||||
AddModuleMessage(string.Format(SharedLocalizer["ProfileInvalid"], profile.Title), MessageType.Warning);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private string GetProfileValue(string SettingName, string DefaultValue)
|
||||
{
|
||||
string value = SettingService.GetSetting(_settings, SettingName, DefaultValue);
|
||||
if (value.Contains("]"))
|
||||
{
|
||||
value = value.Substring(value.IndexOf("]") + 1);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,6 +6,13 @@
|
||||
.mt-3 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
.mt-2 strong {
|
||||
font-size: 1.4rem; /* Textgr<67><72>e <20> Standard ist ca. 1rem */
|
||||
font-weight: 700;
|
||||
}
|
||||
.fontsizeInf {
|
||||
font-size: 1.4rem; /* Textgr<67><72>e <20> Standard ist ca. 1rem */
|
||||
}
|
||||
.event-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@ -15,7 +22,7 @@
|
||||
|
||||
.event-card {
|
||||
/*background-color: var(--bs-gray-dark); */
|
||||
border: 2px solid rgb(var(--bs-primary-rgb)); /* Umrandung */
|
||||
border: 2px solid rgb(128 128 128); /* Umrandung */
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
||||
padding: 1.5rem;
|
||||
@ -24,11 +31,6 @@
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.event-card:hover {
|
||||
border-color: #66ccff; /* Heller beim Hover */
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.event-card h3 {
|
||||
margin-top: 0;
|
||||
@ -43,4 +45,157 @@
|
||||
margin-top: 1rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
/* vorher:
|
||||
.event-card:hover {
|
||||
border-color: #66ccff;
|
||||
transform: translateY(-4px); <-- das ist der <20>belt<6C>ter
|
||||
box-shadow: 0 6px 14px rgba(0,0,0,0.5);
|
||||
}
|
||||
*/
|
||||
|
||||
/* nachher <20> kein transform mehr */
|
||||
.event-card:hover {
|
||||
border-color: #66ccff;
|
||||
/* statt transform die Karte minimal "anheben" */
|
||||
margin-top: -4px; /* optischer Lift */
|
||||
box-shadow: 0 6px 14px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
/* sicherheitshalber: Overlay darf nicht abgeschnitten werden */
|
||||
.event-card {
|
||||
overflow: visible;
|
||||
}
|
||||
/* ---------- A) Hover nur auf Ger<65>ten mit Maus ---------- */
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
.event-card:hover {
|
||||
border-color: #66ccff;
|
||||
|
||||
box-shadow: 0 6px 14px rgba(0,0,0,.5);
|
||||
}
|
||||
}
|
||||
|
||||
/* Auf Touch-Ger<65>ten kein transform (verhindert Modal-Probleme) */
|
||||
@media (hover: none), (pointer: coarse) {
|
||||
.event-card:hover {
|
||||
transform: none;
|
||||
box-shadow: 0 6px 14px rgba(0,0,0,.5);
|
||||
}
|
||||
}
|
||||
|
||||
/* Sicherheitshalber: nichts abschneiden */
|
||||
.event-card {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
|
||||
/* ---------- B) Overlay/Modal (Desktop-Basis) ---------- */
|
||||
/* Falls schon vorhanden, kannst du diese Werte als Override nutzen */
|
||||
.overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0,0,0,.45);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
z-index: 2000;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
.modal {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 20px 60px rgba(0,0,0,.35);
|
||||
width: min(92vw, 720px);
|
||||
max-height: 85vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden; /* f<>r sticky header/footer */
|
||||
}
|
||||
|
||||
.modal-header,
|
||||
.modal-footer {
|
||||
padding: 1rem 1.25rem;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
border-bottom: 1px solid rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
border-top: 1px solid rgba(0,0,0,.1);
|
||||
display: flex;
|
||||
gap: .75rem;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 1rem 1.25rem;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
/* Medien responsiv im Detail-Dialog */
|
||||
.modal-body img,
|
||||
.modal-body video,
|
||||
.modal-body canvas,
|
||||
.modal-body iframe {
|
||||
max-width: 100% !important;
|
||||
height: auto !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
/* ---------- C) Mobile-Vollbild & Sticky-Header/Footer ---------- */
|
||||
@supports (height: 100dvh) {
|
||||
.modal {
|
||||
max-height: 100dvh;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.overlay {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.modal {
|
||||
width: 100vw;
|
||||
height: 100vh; /* nutzt auf modernen Browsern 100dvh (s.o.) */
|
||||
max-height: 100vh;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
/* Lesbare <20>berschriften auf Mobile */
|
||||
.modal-body h1 {
|
||||
font-size: clamp(1.25rem, 5.5vw, 2rem);
|
||||
}
|
||||
|
||||
.modal-body h2 {
|
||||
font-size: clamp(1.125rem, 5vw, 1.5rem);
|
||||
}
|
||||
}
|
||||
|
||||
/* iOS Safe-Area (Notch) */
|
||||
@supports (padding: max(0px)) {
|
||||
.modal {
|
||||
padding-bottom: max(0px, env(safe-area-inset-bottom));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user