Author SHA1 Message Date
walamana 924b443bdc feat: add edit gottesdienst button on card header for admin 2026-07-14 22:15:41 +02:00
walamana fe121795a0 feat: add import zelebrationsplan button to ListView 2026-07-14 22:14:03 +02:00
walamana 2ea6a67790 feat: show green name chips of coming ministrants above dropdown 2026-07-14 22:11:17 +02:00
walamana 7d3d1587c4 fix: mark count only counts value 1 (check) marks, excludes -1 2026-07-14 22:10:26 +02:00
walamana 2da6b33b36 fix: show all ministrants in expanded card list, not only those with marks 2026-07-14 22:09:34 +02:00
walamana edaa5fe94f feat: clickable marks for admin, mark counts, collapsible card list
- Admin can click a ministrant's mark badge to cycle through states
- Each ministrant shows total marks count across all gottesdienste
- Ministrant list in cards starts collapsed showing only count, expands on click
2026-07-14 22:05:52 +02:00
walamana 7e5fa85a0a feat: ministrant list tab with add/edit, action bar at top 2026-07-14 22:05:00 +02:00
walamana 39929361a0 feat: add add/edit ministrant actions in ListView
- Each ministrant row shows an edit button for admin
- Bottom of ministrant list has an add button
- Events wired to PlanView's createMinistrant dialog
2026-07-14 22:01:15 +02:00
walamana 9e70dea85a feat: add tabs to ListView for Gottesdienste and Ministranten
- Tab bar with two tabs at top of list view
- Gottesdienste tab shows the existing card list
- Ministranten tab shows a simple list of all ministrants with name and username
2026-07-14 21:59:59 +02:00
walamana a8c459d714 feat: add 'Gottesdienst' button at bottom of ListView for admin
- ListView accepts admin prop and shows add button when true
- Emits addGottesdienst event handled by PlanView's createGottesdienst
- Dashed border style to distinguish it as an add action
2026-07-14 21:58:25 +02:00
walamana 9a42d16f9e style: make action buttons smaller and less dense
- Reduced button font-size to 13px
- Reduced button padding to 4px 10px 4px 6px
- Reduced icon size to 18px with smaller margin
2026-07-14 21:55:56 +02:00
walamana 9d89f32374 refactor: move action bar to top and lighten styling
- Moved PlanActionBar from fixed bottom to sticky top below GroupView
- Removed position: fixed and bottom padding workaround
- Action bar now uses lighter bg (#fafafa), thinner padding, border-bottom
- Removed unused padding-bottom: 100px from .plan, reduced to 24px
2026-07-14 21:55:13 +02:00
walamana ad29d0682e feat: add list view with GottesdienstCard components
- New GottesdienstCard component shows each service with its info
- Shows the currently logged-in user's mark as a toggle checkbox
- Lists ministrants who have responded with their mark status
- Admin view hides the checkbox, shows responses only
- New ListView wrapper renders all cards
- PlanView gets a Tabelle/Liste toggle between table and card views
2026-07-14 21:51:55 +02:00
walamana d8ca8d743c Make birthday nullable in ministrant model, DAO, and DB schema 2026-07-14 21:22:58 +02:00
walamana 0efa7ed8d1 docker-compose.yml aktualisiert
Deploy Miniplan / build (push) Successful in 36s
2026-05-31 09:37:51 +02:00
walamana f5af3ede12 fix: update docker file java image
Deploy Miniplan / build (push) Successful in 3m27s
2026-04-30 22:41:55 +02:00
walamana 213065b86c feat: implement unauthorized error handling and login popup
Deploy Miniplan / build (push) Failing after 42s
2026-04-30 22:39:04 +02:00
walamana a3e115824b fix: use german locale for time conversion
Deploy Miniplan / build (push) Successful in 2m11s
2025-04-16 13:57:26 +02:00
walamana f27a5121fe fix: always use german locale
Deploy Miniplan / build (push) Successful in 2m13s
2025-04-16 13:48:31 +02:00
walamana 74f8c8a7ac fix: imports
Deploy Miniplan / build (push) Successful in 1m54s
2025-04-16 00:46:17 +02:00
walamana ec16195a4f fix: update imports
Deploy Miniplan / build (push) Failing after 24s
2025-04-16 00:44:12 +02:00
walamana b9ff5e66fd feat: add missing api
Deploy Miniplan / build (push) Failing after 23s
2025-04-16 00:42:15 +02:00
walamana 6a335247ca feat: import gottesdienste from zelebrationsplan
Deploy Miniplan / build (push) Failing after 1m0s
2025-04-16 00:40:20 +02:00
walamana 67cbb650f0 fix: cut string details on smaller displays
Deploy Miniplan / build (push) Successful in 55s
2025-03-27 18:04:56 +01:00
walamana 06fba58f37 fix: give postgres volume a name
Deploy Miniplan / build (push) Successful in 16s
2025-03-22 08:53:07 +01:00
walamana 9eecde7a80 feat: enable password update
Deploy Miniplan / build (push) Successful in 2m21s
2025-03-22 07:56:51 +01:00
walamana e4de1c62f8 fix gradle build
Deploy Miniplan / build (push) Successful in 2m3s
2025-03-21 23:01:04 +01:00
walamana 7ca5503719 fix gradle build
Deploy Miniplan / build (push) Successful in 2m3s
2025-03-21 22:45:47 +01:00
walamana 37b9bbc031 fix gradle build
Deploy Miniplan / build (push) Successful in 2m16s
2025-03-21 22:36:14 +01:00
walamana 063aeeb50e fix: use correct gradle version in dockerfile
Deploy Miniplan / build (push) Successful in 2m20s
2025-03-21 22:22:20 +01:00
walamana b7f0568482 Merge pull request 'feat/update-gottesdienste' (#5) from feat/update-gottesdienste into main
Deploy Miniplan / build (push) Failing after 1m36s
Reviewed-on: #5
2025-03-21 21:30:36 +01:00
33 changed files with 1554 additions and 124 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ RUN npm install
RUN npm run build-only
FROM openjdk:latest as miniplan
FROM amazoncorretto:18 as miniplan
LABEL authors="walamana"
RUN mkdir -p /app/public
+8 -1
View File
@@ -3,6 +3,9 @@ name: miniplan
networks:
backend:
volumes:
postgres:
services:
db:
image: postgres:16
@@ -11,8 +14,12 @@ services:
- POSTGRES_PASSWORD=minis
- POSTGRES_USER=minis
- POSTGRES_DB=minis
ports:
- 5432:5432
networks:
- backend
volumes:
- postgres:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready", "-d", "db_prod"]
interval: 30s
@@ -21,7 +28,7 @@ services:
start_period: 80s
app:
image: git.walamana.de/walamana/miniplan:latest
restart: no
restart: on-failure
depends_on:
- db
networks:
+1
View File
@@ -9,6 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"dropzone-vue3": "^1.0.2",
"rxjs": "^7.8.1"
}
}
+2
View File
@@ -11,3 +11,5 @@ DATABASE_PASSWORD=abc
ADMIN_PASSWORD=123
FRONTEND_PATH=./public
APPLICATION_NAME=Miniplan\ Hl.\ Familie
PORT=8080
+2 -2
View File
@@ -1,4 +1,4 @@
FROM gradle:latest as build_backend
FROM gradle:7.5.1 as build_backend
COPY --chownn=gradle:gradle . /home/gradle/src
WORKDIR /home/gradle/src
@@ -11,7 +11,7 @@ WORKDIR /home/node/app
COPY --chown=node:node /pub
FROM openjdk:latest
FROM amazoncorretto:18
LABEL authors="walamana"
RUN mkdir /miniplan
+3 -3
View File
@@ -1,7 +1,7 @@
ktor {
development = true
deployment {
port = "${PORT}"
port = ${PORT}
}
application {
modules = [ de.walamana.ApplicationKt.module ]
@@ -9,7 +9,7 @@ ktor {
}
jwt {
secret = "${SECRET}"
secret = ${SECRET}
issuer = "http://0.0.0.0:8080/"
audience = "http://0.0.0.0:8080/"
realm = "mini-data"
@@ -21,5 +21,5 @@ database {
}
admin {
password = "${ADMIN}"
password = ${ADMIN}
}
+7 -4
View File
@@ -5,10 +5,10 @@ val logback_version: String by project
val exposed_version: String by project
val h2_version: String by project
plugins {
kotlin("jvm") version "2.1.20"
id("io.ktor.plugin") version "3.1.1"
kotlin("plugin.serialization") version "2.1.20"
id("com.palantir.docker") version "0.35.0"
kotlin("jvm") version "1.9.0"
id("io.ktor.plugin") version "2.3.3"
kotlin("plugin.serialization") version "1.9.0"
id("com.palantir.docker") version "0.36.0"
}
group = "de.walamana"
@@ -44,6 +44,9 @@ dependencies {
implementation("io.github.cdimascio:dotenv-kotlin:6.4.1")
implementation("at.favre.lib:bcrypt:0.10.2")
implementation("org.apache.poi:poi:5.2.3") // Check for the latest version
implementation("org.apache.poi:poi-ooxml:5.2.3") // Check for the latest version
implementation("org.apache.xmlbeans:xmlbeans:5.0.2") // Check for the latest version
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
Binary file not shown.
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
+31 -13
View File
@@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
##############################################################################
#
@@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,13 +82,12 @@ do
esac
done
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -133,22 +134,29 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
@@ -193,11 +201,15 @@ if "$cygwin" || "$msys" ; then
done
fi
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
@@ -205,6 +217,12 @@ set -- \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+21 -16
View File
@@ -13,8 +13,10 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%" == "" @echo off
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@@ -25,7 +27,8 @@
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@@ -40,13 +43,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
if %ERRORLEVEL% equ 0 goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
@@ -56,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
@@ -75,13 +78,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
@@ -20,7 +20,7 @@ data class Ministrant(
val passwordHash: String? = "",
val firstname: String,
val lastname: String,
val birthday: DateAsLong,
val birthday: DateAsLong? = null,
val privileges: CommaSeperatedStringList
)
@@ -38,7 +38,7 @@ object Ministranten : Table() {
val passwordHash = varchar("passwordHash", 1024)
val firstname = varchar("firstname", 128)
val lastname = varchar("lastname", 128)
val birthday = long("birthday")
val birthday = long("birthday").nullable()
val privileges = varchar("privileges", 1024)
override val primaryKey = PrimaryKey(id)
@@ -51,7 +51,7 @@ object MinistrantenDao {
if (showPasswordHash) row[Ministranten.passwordHash] else "",
row[Ministranten.firstname],
row[Ministranten.lastname],
Date(row[Ministranten.birthday]),
row[Ministranten.birthday]?.let(::Date),
row[Ministranten.privileges].split(",")
)
@@ -96,7 +96,7 @@ object MinistrantenDao {
passwordHash: String,
firstname: String,
lastname: String,
birthday: Date,
birthday: Date?,
privileges: List<String>
) = dbQuery {
val statement = Ministranten.insert {
@@ -104,7 +104,7 @@ object MinistrantenDao {
it[Ministranten.passwordHash] = ""
it[Ministranten.firstname] = firstname
it[Ministranten.lastname] = lastname
it[Ministranten.birthday] = birthday.time
it[Ministranten.birthday] = birthday?.time
it[Ministranten.privileges] = privileges.joinToString(",")
}
Security.setPassword(username, passwordHash)
@@ -29,6 +29,7 @@ fun Application.configureDatabases() {
SchemaUtils.create(GottesdienstGroups)
SchemaUtils.create(Gottesdienste)
SchemaUtils.create(Marks)
exec("ALTER TABLE MINISTRANTEN ALTER COLUMN birthday BIGINT NULL;")
}
}
@@ -10,9 +10,13 @@ fun Application.configureHTTP() {
allowMethod(HttpMethod.Put)
allowMethod(HttpMethod.Delete)
allowMethod(HttpMethod.Patch)
allowMethod(HttpMethod.Post)
allowMethod(HttpMethod.Options)
allowHeader(HttpHeaders.Authorization)
allowHeader(HttpHeaders.AccessControlAllowOrigin)
allowHeader(HttpHeaders.ContentType)
allowHeader(HttpHeaders.CacheControl)
allowHeader("x-requested-with")
allowNonSimpleContentTypes = true
// allowHeader("MyCustomHeader")
anyHost() // @TODO: Don't do this in production if possible. Try to limit it.
@@ -59,7 +59,7 @@ fun Payload.mid() = getClaim("id").asInt()
object Security {
fun DEFAULT_EXPIRY() = Date(System.currentTimeMillis() + 1000 * 60 * 60);
fun DEFAULT_EXPIRY() = Date(System.currentTimeMillis() + 1000 * 60 * 60 * 24 * 14);
suspend fun authenticateUser(application: Application, username: String, password: String): Ministrant? {
println("Username $username password $password")
@@ -0,0 +1,85 @@
package de.walamana.service
import de.walamana.models.Gottesdienst
import org.apache.poi.ss.usermodel.Row
import org.apache.poi.xssf.usermodel.XSSFWorkbook
import java.io.File
import java.io.InputStream
import java.lang.Exception
import java.time.*
import java.time.format.DateTimeFormatter
import java.util.*
import kotlin.collections.ArrayList
import kotlin.collections.HashMap
object ZelebrationsplanParser {
private val weekdays = listOf("Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag")
fun parse(ins: InputStream, planId: Int): HashMap<String, ArrayList<Gottesdienst>> {
val workbook = XSSFWorkbook(ins)
val sheet = workbook.getSheetAt(0)
var currentDate: String? = null
val gottesdienste = hashMapOf<String, ArrayList<Gottesdienst>>()
for (row in sheet) {
val r = rowToArray(row)
val weekday = weekdays.firstOrNull { r[0]?.startsWith(it) == true }
if(weekday != null) {
currentDate = r[0]!!
}else if(r[0]?.isBlank() == true) {
println("Empty line")
}else if(r.all { it != null }){
try {
val time = formatTime(currentDate!!, r[1]!!)
val pfarrei = r[0]!!
val attendance = time - Duration.ofMinutes(30)
gottesdienste[pfarrei] = gottesdienste.getOrElse(pfarrei) { arrayListOf() }.apply {
add(Gottesdienst(
id = 0,
name = r[2]!!,
date = time.toDate(),
attendance = attendance.toDate(),
planId = planId
))
}
} catch (e: Exception) {
e.printStackTrace()
}
}
}
return gottesdienste
}
private fun formatTime(date: String, time: String): LocalDateTime {
try{
return LocalDateTime.parse("$date, $time", DateTimeFormatter.ofPattern("EEEE, d. MMMM yyyy, H.mm 'Uhr'", Locale.GERMANY))
} catch (_: Exception) {}
try{
return LocalDateTime.parse("$date, $time", DateTimeFormatter.ofPattern("EEEE, d. MMMM yyyy, H:mm 'Uhr'", Locale.GERMANY))
} catch (_: Exception) {}
try{
return LocalDateTime.parse("$date, $time", DateTimeFormatter.ofPattern("EEEE, d. MMMM yyyy, 'a. 'H.mm 'Uhr'", Locale.GERMANY))
} catch (_: Exception) {}
return LocalDateTime.parse("$date, $time", DateTimeFormatter.ofPattern("EEEE, d. MMMM yyyy, 'a. 'H:mm 'Uhr'", Locale.GERMANY))
}
private fun rowToArray(row: Row): Array<String?> {
return arrayOf(row.getCell(0)?.stringCellValue, row.getCell(1)?.stringCellValue, row.getCell(2)?.stringCellValue, row.getCell(3)?.stringCellValue)
}
private fun LocalDateTime.toDate() = Date.from(this.atZone(ZoneId.of("Europe/Berlin")).toInstant())
}
fun main() {
File("Zelebrationsplan Mai 2025.xlsx").inputStream().use {
ZelebrationsplanParser.parse(it, 0)
}
}
@@ -34,6 +34,7 @@ data class AuthenticationResult(
@Serializable
data class AuthenticationUpdateRequest(
val username: String?,
val newPassword: String
)
@@ -70,7 +71,11 @@ fun Route.configureAuthenticationRoutes() {
val principal = call.principal<JWTPrincipal>()!!
val request = call.receive<AuthenticationUpdateRequest>()
Security.setPassword(principal.payload.username(), request.newPassword)
val username = if(request.username != null && principal.payload.username() == "admin") {
request.username
} else principal.payload.username()
Security.setPassword(username, request.newPassword)
call.respond(hashMapOf("success" to true))
}
@@ -92,8 +97,6 @@ fun Route.configureAuthenticationRoutes() {
call.respond(hashMapOf("password" to newPassword))
}
}
}
@@ -1,9 +1,10 @@
package de.walamana.views
import de.walamana.models.Gottesdienst
import de.walamana.models.Gottesdienste
import de.walamana.models.GottesdiensteDao
import de.walamana.service.ZelebrationsplanParser
import io.ktor.http.*
import io.ktor.http.content.*
import io.ktor.server.application.*
import io.ktor.server.request.*
import io.ktor.server.response.*
@@ -43,5 +44,17 @@ fun Route.configureGottesdiensteRoutes() {
GottesdiensteDao.deleteGottesdienst(id)
call.respond(HttpStatusCode.OK)
}
post("/parseZelebrationsplan") {
val id = call.parameters.getOrFail("id").toInt()
val multipartData = call.receiveMultipart()
multipartData.forEachPart { part ->
if(part is PartData.FileItem) {
val data = ZelebrationsplanParser.parse(part.streamProvider(), planId = id)
call.respond(data)
}
part.dispose()
}
}
}
}
@@ -3,6 +3,7 @@ package de.walamana.views
import de.walamana.models.GottesdienstGroup
import de.walamana.models.GottesdienstGroupDao
import de.walamana.models.GottesdienstGroups
import de.walamana.plugins.getJWTEnvironment
import de.walamana.service.PlanDao
import io.ktor.server.application.*
import io.ktor.server.auth.*
@@ -14,6 +15,7 @@ import io.ktor.server.util.*
fun Route.configurePlanRoutes() {
route("/plan") {
authenticate {
get {
val principal = call.principal<JWTPrincipal>()
val isAnonymous = principal == null
@@ -22,6 +24,7 @@ fun Route.configurePlanRoutes() {
call.respond(plan)
}
}
}
route("/groups") {
get {
val offset = call.parameters.get("offset")?.toLong() ?: 0
+51
View File
@@ -8,6 +8,7 @@
"name": "minis-new",
"version": "0.0.0",
"dependencies": {
"dropzone-vue3": "^1.0.2",
"rxjs": "^7.8.1",
"underscore": "^1.13.7",
"vue": "^3.3.4",
@@ -393,6 +394,12 @@
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
},
"node_modules/@swc/helpers": {
"version": "0.2.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.2.14.tgz",
"integrity": "sha512-wpCQMhf5p5GhNg2MmGKXzUNwxe7zRiCsmqYsamez2beP7mKPCSiu+BjZcdN95yYSzO857kr0VfQewmGpS77nqA==",
"license": "MIT"
},
"node_modules/@tsconfig/node18": {
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/@tsconfig/node18/-/node18-18.2.0.tgz",
@@ -749,6 +756,18 @@
"url": "https://github.com/sponsors/mesqueeb"
}
},
"node_modules/core-js": {
"version": "3.41.0",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz",
"integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==",
"hasInstallScript": true,
"license": "MIT",
"peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
}
},
"node_modules/cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
@@ -802,6 +821,32 @@
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/dropzone": {
"version": "6.0.0-beta.2",
"resolved": "https://registry.npmjs.org/dropzone/-/dropzone-6.0.0-beta.2.tgz",
"integrity": "sha512-k44yLuFFhRk53M8zP71FaaNzJYIzr99SKmpbO/oZKNslDjNXQsBTdfLs+iONd0U0L94zzlFzRnFdqbLcs7h9fQ==",
"license": "MIT",
"dependencies": {
"@swc/helpers": "^0.2.13",
"just-extend": "^5.0.0"
}
},
"node_modules/dropzone-vue3": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/dropzone-vue3/-/dropzone-vue3-1.0.2.tgz",
"integrity": "sha512-kP+bp7sgNZtO+tdsZv/Vjga8/ltLqXKyWTCbQ5IK9SxxjO8SDUGlnZDZMVhbwsZx+fmHMTxkEoTYlonOdMplGQ==",
"license": "MIT",
"dependencies": {
"dropzone": "^6.0.0-beta.2"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"core-js": "^3.21.1",
"vue": ">=3.0.0"
}
},
"node_modules/errno": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
@@ -1438,6 +1483,12 @@
"integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
"dev": true
},
"node_modules/just-extend": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/just-extend/-/just-extend-5.1.1.tgz",
"integrity": "sha512-b+z6yF1d4EOyDgylzQo5IminlUmzSeqR1hs/bzjBNjuGras4FXq/6TrzjxfN0j+TmI0ltJzTNlqXUMCniciwKQ==",
"license": "MIT"
},
"node_modules/less": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz",
+1
View File
@@ -10,6 +10,7 @@
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
},
"dependencies": {
"dropzone-vue3": "^1.0.2",
"rxjs": "^7.8.1",
"underscore": "^1.13.7",
"vue": "^3.3.4",
+5
View File
@@ -5,6 +5,7 @@ import LoginPanel from "@/components/LoginPanel.vue";
import {onMounted, ref} from "vue";
import {Auth} from "@/services/auth";
import DialogHost from "@/components/dialog/DialogHost.vue";
import {LoginService} from "@/services/LoginService";
let showPopup = ref(false)
let loggedIn = ref(false)
@@ -25,6 +26,10 @@ onMounted(() => {
Auth.checkForToken()
})
LoginService.subject.subscribe(() => {
showPopup.value = true
})
</script>
<template>
+469
View File
@@ -0,0 +1,469 @@
<script setup lang="ts">
import type {Gottesdienst, Mark, SimplifiedMinistrant} from "@/models/models"
import {computed, ref} from "vue"
const props = defineProps<{
gottesdienst: Gottesdienst
ministranten: SimplifiedMinistrant[]
marks: Mark[]
editable: string[]
currentUsername: string
}>()
const emit = defineEmits<{
toggleMark: [gid: number, mid: number]
editGottesdienst: [id: number]
}>()
const isAdmin = computed(() => props.currentUsername === "admin")
const currentMini = computed(() => props.ministranten.find(m => m.username === props.currentUsername))
const showCheckbox = computed(() => !!currentMini.value && !isAdmin.value)
const expanded = ref(false)
const responseCount = computed(() =>
props.marks.filter(m => m.gid === props.gottesdienst.id && m.value !== 0).length
)
const comingMinistrants = computed(() => {
const miniMap = new Map(props.ministranten.map(m => [m.id, m]))
return props.marks
.filter(m => m.gid === props.gottesdienst.id && m.value === 1)
.map(m => miniMap.get(m.mid))
.filter((m): m is SimplifiedMinistrant => !!m)
})
const allMinistrants = computed(() => {
const miniMap = new Map(props.ministranten.map(m => [m.id, m]))
const marksMap = new Map(props.marks.filter(m => m.gid === props.gottesdienst.id).map(m => [m.mid, m]))
return props.ministranten
.map(mini => ({
ministrant: mini,
mark: marksMap.get(mini.id) ?? {gid: props.gottesdienst.id, mid: mini.id, value: 0} as Mark
}))
})
function ministrantTotalMarks(miniId: number): number {
return props.marks.filter(m => m.mid === miniId && m.value === 1).length
}
function getMark(gid: number, mid: number): Mark {
const mark = props.marks.find(m => m.mid === mid && m.gid === gid)
return mark ?? {gid, mid, value: 0}
}
function getIconForMark(gid: number, mid: number): string {
const mark = getMark(gid, mid).value
switch (mark) {
case -1: return "remove"
case 0: return "question_mark"
case 1: return "close"
}
return ""
}
function getMarkClass(gid: number, mid: number): Record<string, boolean> {
const mark = getMark(gid, mid).value
return {
minus: mark === -1,
neutral: mark === 0,
cross: mark === 1
}
}
function getHintForMark(gid: number, mid: number): string {
const mark = getMark(gid, mid).value
switch (mark) {
case -1: return "Ich kann nicht"
case 0: return "Egal"
case 1: return "Ich komme"
}
return ""
}
function two(s: number): string {
return (s < 10 ? "0" : "") + s
}
function formatDay(time: number | Date): string {
const date = new Date(time)
return two(date.getDate()) + "." + two(date.getMonth() + 1) + "."
}
function formatTime(time: number | Date): string {
const date = new Date(time)
return two(date.getHours()) + ":" + two(date.getMinutes())
}
function formatWeekday(time: number | Date): string {
const date = new Date(time)
switch (date.getDay()) {
case 1: return "Montag"
case 2: return "Dienstag"
case 3: return "Mittwoch"
case 4: return "Donnerstag"
case 5: return "Freitag"
case 6: return "Samstag"
case 0: return "Sonntag"
}
return ""
}
function toggleOwnMark() {
if (!currentMini.value) return
emit("toggleMark", props.gottesdienst.id, currentMini.value.id)
}
function getOwnMarkIcon(): string {
if (!currentMini.value) return ""
const mark = getMark(props.gottesdienst.id, currentMini.value.id).value
switch (mark) {
case -1: return "close"
case 0: return ""
case 1: return "check"
}
return ""
}
function getOwnMarkClass(): Record<string, boolean> {
if (!currentMini.value) return {}
const mark = getMark(props.gottesdienst.id, currentMini.value.id).value
return {
minus: mark === -1,
neutral: mark === 0,
cross: mark === 1
}
}
function getOwnMarkHint(): string {
if (!currentMini.value) return ""
const mark = getMark(props.gottesdienst.id, currentMini.value.id).value
switch (mark) {
case -1: return "Ich kann nicht"
case 0: return "keine Angabe"
case 1: return "Ich komme"
}
return ""
}
</script>
<template>
<div class="card">
<div class="card-header">
<div class="title-row">
<button
v-if="showCheckbox"
class="own-mark"
:class="getOwnMarkClass()"
@click="toggleOwnMark"
:title="getOwnMarkHint()"
>
<i v-if="getOwnMarkIcon()" class="icon">{{ getOwnMarkIcon() }}</i>
</button>
<span class="name">{{ gottesdienst.name !== "" ? gottesdienst.name : "Gottesdienst" }}</span>
<button v-if="isAdmin" class="edit-godi-btn" @click="emit('editGottesdienst', gottesdienst.id)" title="Gottesdienst bearbeiten">
<i class="icon">edit</i>
</button>
</div>
<div class="info">
<span class="date">am {{ formatWeekday(gottesdienst.date) }} {{ formatDay(gottesdienst.date) }}</span>
<span class="time">um {{ formatTime(gottesdienst.date) }} Uhr</span>
<span class="attendance">Anwesenheit: {{ formatTime(gottesdienst.attendance) }}</span>
</div>
</div>
<div class="card-body" v-if="allMinistrants.length > 0">
<div class="coming-summary" v-if="comingMinistrants.length > 0">
<span v-for="m in comingMinistrants" :key="m.id" class="coming-chip">
{{ m.firstname }}
</span>
</div>
<button class="collapse-toggle" @click="expanded = !expanded">
<i class="icon">{{ expanded ? 'expand_less' : 'expand_more' }}</i>
{{ responseCount }} Rückmeldungen
</button>
<template v-if="expanded">
<div
v-for="{ministrant, mark} in allMinistrants"
:key="ministrant.id"
class="ministrant-row"
:class="getMarkClass(gottesdienst.id, ministrant.id)"
>
<span class="mini-name">{{ ministrant.firstname }} {{ ministrant.lastname }}</span>
<span class="mark-count">{{ ministrantTotalMarks(ministrant.id) }}</span>
<span
class="mark-badge"
:class="{ clickable: isAdmin }"
@click="isAdmin && emit('toggleMark', gottesdienst.id, ministrant.id)"
>
<i class="icon">{{ getIconForMark(gottesdienst.id, ministrant.id) }}</i>
<span class="hint">{{ getHintForMark(gottesdienst.id, ministrant.id) }}</span>
</span>
</div>
</template>
</div>
<div class="card-body empty" v-else>
<span class="no-marks">Keine Ministranten</span>
</div>
</div>
</template>
<style scoped lang="less">
.card {
background: #ffffff;
border: 1px solid #d7d5d5;
border-radius: 8px;
margin-bottom: 12px;
overflow: hidden;
}
.card-header {
padding: 12px 16px;
border-bottom: 1px solid #e8e8e8;
.title-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 4px;
.name {
font-weight: 700;
font-size: 18px;
flex: 1;
}
.edit-godi-btn {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
padding: 0;
margin: 0;
border: none;
border-radius: 4px;
background: transparent;
color: #aaa;
cursor: pointer;
transition: 100ms;
flex-shrink: 0;
i {
font-size: 20px;
margin: 0;
}
&:hover {
background: #f0f0f0;
color: #555;
}
}
}
.own-mark {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border: 2px solid #cecece;
border-radius: 6px;
background: #ffffff;
cursor: pointer;
flex-shrink: 0;
padding: 0;
margin: 0;
transition: 100ms;
i {
margin: 0;
}
&:hover {
border-color: #919191;
}
&.minus {
border-color: #690b0b;
background: #fdd5d5;
color: #690b0b;
}
&.cross {
border-color: #045b04;
background: #d1fcd1;
color: #045b04;
}
&.neutral {
border-color: #9f9f9f;
background: #f0f0f0;
color: #9f9f9f;
}
i {
font-size: 20px;
font-variation-settings: "wght" 600;
}
}
.info {
display: flex;
flex-wrap: wrap;
gap: 4px 16px;
font-size: 14px;
color: #656565;
span {
font-weight: 700;
}
}
}
.card-body {
padding: 8px 16px;
&.empty {
padding: 16px;
text-align: center;
color: #9f9f9f;
font-size: 14px;
}
.coming-summary {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin-bottom: 8px;
.coming-chip {
display: inline-block;
padding: 2px 8px;
font-size: 13px;
font-weight: 600;
background: #d1fcd1;
color: #045b04;
border-radius: 4px;
}
}
.collapse-toggle {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
padding: 6px 0;
margin: 0;
border: none;
background: transparent;
font-size: 14px;
font-weight: 600;
color: #777;
cursor: pointer;
i {
font-size: 20px;
}
&:hover {
color: #444;
}
}
.ministrant-row {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 0 8px 26px;
border-bottom: 1px solid #f0f0f0;
&:last-child {
border-bottom: none;
}
.mini-name {
font-size: 15px;
font-weight: 500;
flex: 1;
}
.mark-count {
font-size: 12px;
color: #aaa;
font-weight: 600;
min-width: 20px;
text-align: center;
}
.mark-badge {
display: flex;
align-items: center;
gap: 6px;
i {
border-radius: 100%;
padding: 2px;
font-size: 20px;
}
.hint {
font-size: 13px;
white-space: nowrap;
}
&.clickable {
cursor: pointer;
padding: 2px 4px;
border-radius: 4px;
transition: 100ms;
&:hover {
background: rgba(0,0,0,0.04);
}
}
}
&.minus {
.mark-badge {
color: #690b0b;
i {
background: #fdd5d5;
}
.hint {
color: #690b0b;
}
}
}
&.cross {
.mark-badge {
color: #045b04;
i {
background: #d1fcd1;
}
.hint {
color: #045b04;
}
}
}
&.neutral {
.mark-badge {
color: #9f9f9f;
i {
background: #f0f0f0;
}
.hint {
color: #9f9f9f;
}
}
}
}
}
</style>
+12 -3
View File
@@ -135,11 +135,13 @@ function dateToValueString(time) {
<div class="bar">
<div class="controls">
<button class="flat left" v-if="prev != null && prev <= groups.length - 1" @click="back">
<i>arrow_left_alt</i>{{ formatDateShort(get(prev).from) }} - {{ formatDateShort(get(prev).to) }}
<i>arrow_left_alt</i>
<span class="hide-mobile">{{ formatDateShort(get(prev).from) }} - {{ formatDateShort(get(prev).to) }}</span>
</button>
<div class="width: 100%"/>
<button class="flat right" v-if="next != null && next > 0" @click="forward">
{{ formatDateShort(get(next).from) }} - {{ formatDateShort(get(next).to) }}<i>arrow_right_alt</i>
<span class="hide-mobile">{{ formatDateShort(get(next).from) }} - {{ formatDateShort(get(next).to) }}</span>
<i>arrow_right_alt</i>
</button>
<button class="flat right" v-if="(next == null || next <= 0) && admin" style="margin-right: 20px"
@click="$emit('new')">
@@ -147,7 +149,7 @@ function dateToValueString(time) {
</button>
</div>
<template v-if="groups.length > 0">
<span style="z-index: 1">Miniplan vom {{ formatDate(get(cur).from) }} bis {{ formatDate(get(cur).to) }}</span>
<span style="z-index: 1"><span class="hide-mobile">Miniplan vom </span> {{ formatDate(get(cur).from) }} bis {{ formatDate(get(cur).to) }}</span>
<span v-if="admin" style="display: flex; align-items: center; z-index: 1">
<button class="icon flat" @click="$emit('delete', get(cur).id)"><i>delete</i></button>
<button class="icon flat" @click="$emit('edit', get(cur).id)"><i>edit</i></button>
@@ -208,5 +210,12 @@ function dateToValueString(time) {
margin: 0 10px
}
@media(max-width: 800px) {
.hide-mobile {
display: none;
}
}
}
</style>
+269
View File
@@ -0,0 +1,269 @@
<script setup lang="ts">
import {ref} from "vue"
import type {Gottesdienst, Mark, SimplifiedMinistrant} from "@/models/models"
import GottesdienstCard from "@/components/GottesdienstCard.vue"
defineProps<{
gottesdienste: Gottesdienst[]
ministranten: SimplifiedMinistrant[]
marks: Mark[]
editable: string[]
currentUsername: string
admin: boolean
}>()
const emit = defineEmits<{
toggleMark: [gid: number, mid: number]
addGottesdienst: []
editGottesdienst: [id: number]
addMinistrant: []
editMinistrant: [id: number]
importZelebrationsplan: []
}>()
const activeTab = ref<"gottesdienste" | "ministranten">("gottesdienste")
</script>
<template>
<div class="list-view">
<div class="tab-bar">
<button
class="tab"
:class="{ active: activeTab === 'gottesdienste' }"
@click="activeTab = 'gottesdienste'"
><i class="icon">list</i> Gottesdienste</button>
<button
class="tab"
:class="{ active: activeTab === 'ministranten' }"
@click="activeTab = 'ministranten'"
><i class="icon">groups</i> Ministranten</button>
</div>
<template v-if="activeTab === 'gottesdienste'">
<GottesdienstCard
v-for="godi in gottesdienste"
:key="godi.id"
:gottesdienst="godi"
:ministranten="ministranten"
:marks="marks"
:editable="editable"
:current-username="currentUsername"
@toggle-mark="(gid, mid) => emit('toggleMark', gid, mid)"
@edit-gottesdienst="(id) => emit('editGottesdienst', id)"
/>
<button v-if="admin" class="add-godi" @click="emit('addGottesdienst')">
<i class="icon">add</i> Gottesdienst
</button>
<button v-if="admin" class="import-btn" @click="emit('importZelebrationsplan')">
<i class="icon">upload</i> Zelebrationsplan importieren
</button>
</template>
<template v-else>
<div class="mini-list">
<div v-for="mini in ministranten" :key="mini.id" class="mini-row">
<span class="mini-name">{{ mini.firstname }} {{ mini.lastname }}</span>
<span class="mini-username">@{{ mini.username }}</span>
<button v-if="admin" class="edit-btn" @click="emit('editMinistrant', mini.id)">
<i class="icon">edit</i>
</button>
</div>
<div v-if="ministranten.length === 0" class="empty-state">
Keine Ministranten
</div>
<button v-if="admin" class="add-mini" @click="emit('addMinistrant')">
<i class="icon">add</i> Ministrant
</button>
</div>
</template>
</div>
</template>
<style scoped lang="less">
.list-view {
padding: 12px;
}
.tab-bar {
display: flex;
gap: 4px;
margin-bottom: 12px;
background: #f0f0f0;
border-radius: 8px;
padding: 3px;
.tab {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 8px;
font-size: 14px;
font-weight: 600;
border: none;
border-radius: 6px;
background: transparent;
color: #777;
cursor: pointer;
transition: 100ms;
i {
font-size: 20px;
}
&.active {
background: #ffffff;
color: #222;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
&:not(.active):hover {
color: #555;
}
}
}
.mini-list {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
.mini-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 14px;
border-bottom: 1px solid #f0f0f0;
&:last-child {
border-bottom: none;
}
.mini-name {
font-size: 15px;
font-weight: 500;
}
.mini-username {
font-size: 13px;
color: #999;
}
}
.mini-row {
.edit-btn {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
padding: 0;
margin: 0;
border: none;
border-radius: 4px;
background: transparent;
color: #aaa;
cursor: pointer;
transition: 100ms;
flex-shrink: 0;
i {
font-size: 18px;
margin: 0;
}
&:hover {
background: #f0f0f0;
color: #555;
}
}
}
.empty-state {
padding: 24px;
text-align: center;
color: #999;
font-size: 14px;
}
.add-mini {
display: flex;
width: 100%;
padding: 10px;
font-size: 14px;
justify-content: center;
background: #fafafa;
border: none;
border-top: 1px solid #f0f0f0;
border-radius: 0;
cursor: pointer;
color: #777;
transition: 100ms;
margin: 0;
i {
font-size: 20px;
margin-right: 6px;
}
&:hover {
background: #f0f0f0;
color: #444;
}
}
}
.add-godi {
display: flex;
width: 100%;
margin: 16px 0;
padding: 12px;
font-size: 15px;
justify-content: center;
background: #f5f5f5;
border: 1px dashed #c4c4c4;
border-radius: 8px;
cursor: pointer;
color: #555;
transition: 100ms;
i {
font-size: 22px;
margin-right: 6px;
}
&:hover {
background: #eaeaea;
border-color: #999;
color: #333;
}
}
.import-btn {
display: flex;
width: 100%;
margin: 16px 0;
padding: 12px;
font-size: 15px;
justify-content: center;
background: #f5f5f5;
border: 1px dashed #c4c4c4;
border-radius: 8px;
cursor: pointer;
color: #555;
transition: 100ms;
i {
font-size: 22px;
margin-right: 6px;
}
&:hover {
background: #eaeaea;
border-color: #999;
color: #333;
}
}
</style>
+14 -1
View File
@@ -45,7 +45,9 @@ async function attemptLogin() {
<template>
<div class="container">
<img src="./../assets/minis_logo.png" style="height: 80px"/>
<span class="title">Anmelden</span>
<span class="subtitle">Um den Miniplan einsehen zu können, logge dich bitte ein.</span>
<Input class="input" v-model:value="username" label="Nutzername"/>
<Input class="input" v-model:value="password" label="Passwort" type="password"/>
<span v-if="invalid" style="color: red; text-align: center; margin-bottom: 10px">Benutzername oder<br> Passwort falsch.</span>
@@ -69,11 +71,22 @@ async function attemptLogin() {
.title{
display: inline-block;
font-size: 24px;
margin-bottom: 24px;
margin-bottom: 8px;
margin-top: 16px;
}
.subtitle {
margin-bottom: 30px;
max-width: 300px;
text-align: center;
opacity: 0.5;
font-style: italic;
line-height: 1.3rem;
}
.input {
margin-bottom: 16px;
min-width: 300px;
}
button{
margin-top: 8px;
+20 -17
View File
@@ -1,5 +1,5 @@
<script setup lang="ts">
const emit = defineEmits(["addPlan", "addGodi", "addMini", "save"])
const emit = defineEmits(["addPlan", "addGodi", "addMini", "importZelebrationsplan", "save"])
const props = defineProps<{
save: boolean,
plan: boolean,
@@ -12,6 +12,7 @@ const props = defineProps<{
<div class="action-bar" :class="{save: true}">
<div class="other-action">
<button class="add-plan" :class="{show: props.plan}" @click="$emit('addPlan')"> <i class="icon">add_box</i> Neuer Plan</button>
<button class="import-zelebrationsplan" :class="{show: props.godi}" @click="$emit('importZelebrationsplan')"> <i class="icon">upload</i> Zelebrationsplan importieren</button>
<button class="add-godi" :class="{show: props.godi}" @click="$emit('addGodi')"> <i class="icon">add</i> Gottesdienst</button>
<button class="add-mini" :class="{show: props.godi}" @click="$emit('addMini')"> <i class="icon">add</i> Ministrant</button>
</div>
@@ -24,17 +25,23 @@ const props = defineProps<{
<style scoped lang="less">
.action-bar {
width: calc(100% - 32px * 2);
border-top: 1px solid #d7d5d5;
width: calc(100% - 24px * 2);
display: flex;
padding: 10px 32px;
background: #ffffff;
padding: 6px 24px;
background: #fafafa;
justify-content: flex-end;
border-bottom: 1px solid #e0e0e0;
.other-action{
transition: 200ms translate;
translate: 220px;
transition-delay: 100ms;
display: flex;
gap: 6px;
flex-wrap: wrap;
button {
margin: 0;
}
};
&.save .other-action {
@@ -44,21 +51,17 @@ const props = defineProps<{
}
button {
font-size: 13px;
padding: 4px 10px 4px 6px;
i {
font-size: 18px;
margin-right: 6px;
}
&:not(.show){
display: none;
}
&.save{
&:not(.show){
display: flex;
}
width: 220px;
translate: 0 calc(100% + 20px);
transition: 200ms translate;
&.show {
translate: 0;
transition-delay: 100ms;
}
}
}
@media print {
@@ -7,6 +7,7 @@ import {ref, toRaw} from "vue";
import {onKeyPress} from "@/composables/enter";
import {API} from "@/services/api";
import {Dialogs} from "@/services/DialogService";
import UpdatePasswordDialog from "@/components/dialog/UpdatePasswordDialog.vue";
interface CreateMinistrantDialogProps extends DialogControls {
onCreate: (any) => (Promise<any> | undefined),
onDelete: (id) => (Promise<any> | undefined),
@@ -62,6 +63,23 @@ async function resetPassword(username: string) {
console.log(result)
}
async function updatePassword(username: string) {
Dialogs.createDialog(
UpdatePasswordDialog,
{
onDismiss(){},
onNegative(){},
onPositive(){},
},
{
async onUpdated(newPassword: string){
await API.updatePassword(username, newPassword)
},
username
}
)
}
</script>
<template>
@@ -75,7 +93,9 @@ async function resetPassword(username: string) {
<Input class="input" v-model:value="ministrant.privileges" label="Privilegien"/>
<div class="actions" v-if="ministrant.id != -1">
<button @click="resetPassword(ministrant.username)"><i>lock_reset</i>Passwort zurücksetzen
<!-- <button @click="resetPassword(ministrant.username)"><i>lock_reset</i>Passwort zurücksetzen-->
<!-- </button>-->
<button @click="updatePassword(ministrant.username)"><i>lock_reset</i>Passwort ändern
</button>
<button class="red" @click="deleteMinistrant()"><i>delete</i>Entfernen</button>
</div>
@@ -0,0 +1,258 @@
<script setup lang="ts">
import Dialog from "@/components/dialog/Dialog.vue";
import type {DialogControls} from "@/components/dialog/dialog";
import {ref} from "vue";
import {API} from "@/services/api";
import vueDropzone from "dropzone-vue3"
import type {Gottesdienst} from "@/models/models";
interface ImportZelebrationsplanProps extends DialogControls {
onImport(gottesdienste: Gottesdienst[])
planId: number
}
const props = defineProps<ImportZelebrationsplanProps>()
const gottesdienste = ref<(Gottesdienst & {checked: boolean, pfarrei: string})[]>([])
const pfarreien = ref<string[]>([])
const filter = ref("Pfarrei wählen")
const importing = ref(false)
const progress = ref(0)
const dropzoneOptions = {
url: API.getZelebrationsplanParsingUrl(props.planId),
parallelUploads: 1,
acceptedFiles: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
disablePreviews: true,
init: function() {
this.on("complete", file => {
console.log("File", file)
let response = JSON.parse(file.xhr?.responseText)
gottesdienste.value = Object.keys(response).reduce((acc, next) => {
return acc.concat(response[next].map((it: any) => ({
...it,
checked: false,
pfarrei: next
})));
}, []);
pfarreien.value = Object.keys(response)
})
}
}
async function importZelebrationsplan() {
const godis = gottesdienste.value.filter(it => it.checked)
importing.value = true
for(let godi of godis) {
const id = await API.addGottesdienstNew({
...godi,
date: new Date(godi.date),
attendance: new Date(godi.attendance)
})
progress.value += 1
godi.id = id
}
props.onImport(godis)
props.onDismiss()
}
function canImport() {
return gottesdienste.value.filter(it => it.checked).length > 0
}
function amountChecked() {
return gottesdienste.value.filter(it => it.checked).length
}
function selectAll() {
return gottesdienste.value.forEach(it => {
if(it.pfarrei == filter.value) {
it.checked = true
}
})
}
function deselectAll() {
return gottesdienste.value.forEach(it => it.checked = false)
}
function two(s) {
return (s < 10 ? "0" : "") + s
}
function formatDay(time) {
let date = new Date(time)
return two(date.getDate()) + "." + two(date.getMonth() + 1) + "."
}
function formatTime(time) {
let date = new Date(time)
return two(date.getHours()) + ":" + two(date.getMinutes())
}
function formatWeekday(time) {
let date = new Date(time)
switch (date.getDay()) {
case 1:
return "Mo";
case 2:
return "Di";
case 3:
return "Mi";
case 4:
return "Do";
case 5:
return "Fr";
case 6:
return "Sa";
case 0:
return "So"
}
}
function getGottesdienste() {
return gottesdienste.value.filter(it => it["pfarrei"] == filter.value || it.checked)
}
</script>
<template>
<Dialog class="dialog">
<h3>Zelebrationsplan importieren</h3>
<vue-dropzone v-if="gottesdienste.length == 0" id="dropzone" :options="dropzoneOptions"/>
<div class="select" v-if="gottesdienste.length > 0 && !importing">
<span>Gottesdienste ausgewählt: <strong>{{amountChecked()}} / {{getGottesdienste().length}}</strong></span>
<div style="margin: 10px 0; display: flex; align-items: center">
<select v-model="filter">
<option disabled selected>Pfarrei wählen</option>
<option v-for="pfarrei in pfarreien">{{pfarrei}}</option>
</select>
<template v-if="filter">
<button class="flat" @click="selectAll"><i class="icon">select_all</i>Alle auswählen</button>
<button class="flat" @click="deselectAll"><i class="icon">deselect</i>Alle abwählen</button>
</template>
</div>
<div class="list">
<table>
<thead>
<tr>
<td></td>
<td>Titel</td>
<td></td>
<td>Datum</td>
<td>Uhrzeit</td>
<td>Anwesenheit</td>
</tr>
</thead>
<tbody>
<tr v-for="godi in getGottesdienste()" @click.stop="godi.checked = !godi.checked">
<td><input type="checkbox" v-model="godi.checked"/></td>
<td style="width: 100%">{{godi.name}}</td>
<td>{{formatWeekday(godi.date)}}</td>
<td>{{formatDay(godi.date)}}</td>
<td>{{formatTime(godi.date)}}</td>
<td>{{formatTime(godi.attendance)}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div v-if="importing" style="display: flex; align-items: center; justify-content: center; padding: 100px; flex-direction: column; gap: 10px">
<p>Gottesdienste werden importiert...</p>
<p style="font-size: 3rem"><strong>{{progress}} / {{amountChecked()}}</strong></p>
</div>
<div class="buttons" style="display: flex; justify-content: end; margin-top: 20px;">
<button @click="onDismiss">Abbrechen</button>
<button v-if="canImport()" @click="importZelebrationsplan">Importieren</button>
</div>
</Dialog>
</template>
<style scoped lang="less">
.dialog {
display: flex;
flex-direction: column;
width: min(90vw, 700px);
h3{
margin-bottom: 30px;
}
.input {
margin-bottom: 16px;
}
}
.upload {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px 100px;
border: 1px solid #e1e1e1;
border-radius: 4px;
text-align: center;
cursor: pointer;
user-select: none;
transition: background 200ms;
.icon {
font-size: 50px;
color: #989898;
}
span {
margin-top: 20px;
color: #bdbdbd;
font-size: 14px;
line-height: 20px;
}
&:hover {
background: #f9f9f9;
}
}
.list {
max-height: 400px;
overflow-y: auto;
border: 1px solid #f1f1f1;
border-radius: 4px;
table {
width: 100%;
height: 100%;
border-spacing: 0;
thead {
font-weight: bold;
}
tr td{
padding: 12px 10px;
border-bottom: 1px solid #e1e1e1;
transition: background 200ms;
}
tr:hover td {
cursor: pointer;
background: #f6f6f6;
}
tbody tr:last-child td{
border-bottom: none;
}
}
}
</style>
@@ -0,0 +1,61 @@
<script setup lang="ts">
import type {DialogControls} from "@/components/dialog/dialog";
import Dialog from "@/components/dialog/Dialog.vue";
import Input from "@/components/Input.vue";
import {ref} from "vue";
interface UpdatePasswordDialogProps extends DialogControls {
username: string,
onUpdated: (newPassword: string) => (Promise<any> | undefined)
}
const props = defineProps<UpdatePasswordDialogProps>()
const newPassword = ref("")
const newPasswordCheck = ref("")
function updatePassword() {
if(newPassword.value !== newPasswordCheck.value) {
alert("Beide Passwörter müssen gleich sein!")
return
}
props.onUpdated(newPassword.value)
props.onPositive()
}
</script>
<template>
<Dialog class="dialog">
<h3>Passwort zurücksetzen</h3>
<Input class="input" v-model:value="newPassword" type="password" label="Neues Passwort"/>
<Input class="input" v-model:value="newPasswordCheck" type="password" label="Wiederholen"/>
<div class="buttons" style="display: flex; justify-content: end; margin-top: 20px;">
<button @click="onDismiss">Abbrechen</button>
<button @click="updatePassword">Passwort speichern</button>
</div>
</Dialog>
</template>
<style scoped lang="less">
.dialog {
display: flex;
flex-direction: column;
width: 500px;
h3{
margin-bottom: 30px;
}
.input {
margin-bottom: 16px;
}
}
</style>
+9
View File
@@ -0,0 +1,9 @@
import {Subject} from "rxjs";
export namespace LoginService {
export const subject = new Subject<void>();
export function showLoginPopup() {
subject.next()
}
}
+22 -3
View File
@@ -3,7 +3,7 @@ import {Auth} from "@/services/auth";
const API_ENDPOINT = import.meta.env.MODE == "development"
? "http://0.0.0.0:8080/api"
? "http://localhost:8080/api"
: window.location.origin + "/api"
@@ -30,11 +30,21 @@ function getToken(): string | null {
return ""
}
export class UnauthorizedError extends Error {
constructor() {
super("UnauthorizedError");
}
}
export namespace API {
export async function getPlan(id: number) {
return api(`/plan?id=${id}`).then(res => res.json())
.then(data => {
return api(`/plan?id=${id}`).then(res => {
if(res.status == 401) {
throw new UnauthorizedError()
}
return res.json()
}).then(data => {
return {
gottesdienste: data.gottesdienste,
ministranten: data.ministranten,
@@ -134,6 +144,15 @@ export namespace API {
.then(res => res.json())
}
export async function updatePassword(username: String, newPassword: string): Promise<any> {
return api("/auth/update", "PUT", { username, newPassword })
.then(res => res.json())
}
export function getZelebrationsplanParsingUrl(planId: number) {
return API_ENDPOINT + "/gottesdienste/parseZelebrationsplan?id=" + planId
}
}
+114 -16
View File
@@ -2,9 +2,10 @@
import {computed, onMounted, reactive, ref, toRaw, watch} from "vue";
import TablePlan from "@/components/TablePlan.vue";
import {API} from "@/services/api";
import {API, UnauthorizedError} from "@/services/api";
import type {Gottesdienst, GottesdienstGroup, Mark, SimplifiedMinistrant} from "@/models/models";
import MobilePlan from "@/components/MobilePlan.vue";
import ListView from "@/components/ListView.vue";
import PlanActionBar from "@/components/PlanActionBar.vue";
import {Auth} from "@/services/auth";
import GroupView from "@/components/GroupView.vue";
@@ -16,6 +17,8 @@ import CreateMinistrantDialog from "@/components/dialog/CreateMinistrantDialog.v
import {useRoute, useRouter} from "vue-router";
import debounce from "underscore/modules/debounce.js"
import SavingIndicator from "@/components/SavingIndicator.vue";
import ImportZelebrationsplanDialog from "@/components/dialog/ImportZelebrationsplanDialog.vue";
import {LoginService} from "@/services/LoginService";
const MAX_WIDTH_MOBILE = 600;
@@ -36,6 +39,8 @@ const plan = reactive<{
groups: []
})
const mobile = ref(window.innerWidth <= MAX_WIDTH_MOBILE)
const viewMode = ref<"table" | "list">("table")
const currentUsername = ref("")
const editedMarks = reactive<Mark[]>([]);
const editPlanAdmin = ref(false)
const planId = ref(parseInt(route.params.id as string))
@@ -55,16 +60,29 @@ watch(() => route.params.id, async (value, oldValue) => {
})
async function loadPlan() {
try {
const { ministranten, gottesdienste, marks} = await API.getPlan(planId.value)
plan.ministranten = ministranten
plan.gottesdienste = gottesdienste
plan.marks = marks
Auth.checkForToken()
} catch (e: any) {
if(e instanceof UnauthorizedError) {
LoginService.showLoginPopup()
let subscription = Auth.loggedInSubject.subscribe((loggedIn) => {
subscription.unsubscribe()
if(loggedIn) {
loadPlan()
}
})
}
}
}
Auth.loggedInSubject.subscribe(async (loggedIn) => {
console.log("logged in " + loggedIn)
if (loggedIn) {
currentUsername.value = Auth.getUser()
plan.editable = Auth.getPrivileges()
if (Auth.getUser() == "admin") {
editPlanAdmin.value = true
@@ -72,6 +90,7 @@ Auth.loggedInSubject.subscribe(async (loggedIn) => {
console.log("Plan", plan.ministranten)
}
} else {
currentUsername.value = ""
editPlanAdmin.value = false
plan.editable = []
}
@@ -279,6 +298,18 @@ async function createMinistrant(ministrantId?: number) {
})
}
async function importZelebrationsplan() {
Dialogs.createDialog(ImportZelebrationsplanDialog, {
onPositive() {},
onNegative() {},
onDismiss() {}
}, {
planId: planId.value,
async onImport(godis: Gottesdienst[]) {
plan.gottesdienste.push(...godis)
}
})
}
</script>
@@ -286,10 +317,46 @@ async function createMinistrant(ministrantId?: number) {
<template>
<main>
<div class="container">
<div class="container" :class="{
'mobile-view': mobile && viewMode === 'table'
}">
<GroupView :groups="plan.groups" :admin="editPlanAdmin"
@new="createNewPlan" @delete="deletePlan" @edit="editPlan" class="no-print"/>
<ListView
:gottesdienste="sortedGottesdienste"
:ministranten="plan.ministranten"
:marks="getMarks()"
:editable="plan.editable"
:current-username="currentUsername"
:admin="editPlanAdmin"
@toggle-mark="toggleMark"
@add-gottesdienst="createGottesdienst()"
@add-ministrant="createMinistrant()"
@edit-ministrant="(id) => createMinistrant(id)"
@edit-gottesdienst="(id) => createGottesdienst(id)"
@import-zelebrationsplan="importZelebrationsplan()"
class="plan list"
v-if="viewMode === 'list'">
</ListView>
<template v-if="viewMode === 'table'">
<PlanActionBar
class="action-bar no-print"
:save="getDif().length > 0"
:plan="false"
:godi="true"
@save="saveChanges()"
@add-godi="createGottesdienst()"
@add-mini="createMinistrant()"
@import-zelebrationsplan="importZelebrationsplan()"
v-if="editPlanAdmin"
/>
<TablePlan
:gottesdienste="sortedGottesdienste"
:ministranten="plan.ministranten"
@@ -320,18 +387,20 @@ async function createMinistrant(ministrantId?: number) {
v-else>
</MobilePlan>
</template>
<PlanActionBar
class="action-bar no-print"
:save="getDif().length > 0"
:plan="false"
:godi="true"
@save="saveChanges()"
@add-godi="createGottesdienst()"
@add-mini="createMinistrant()"
v-if="editPlanAdmin"
/>
<div class="view-toggle no-print" v-if="plan.gottesdienste.length > 0">
<button
class="flat"
:class="{ active: viewMode === 'table' }"
@click="viewMode = 'table'"
><i>table_rows</i> Tabelle</button>
<button
class="flat"
:class="{ active: viewMode === 'list' }"
@click="viewMode = 'list'"
><i>list</i> Liste</button>
</div>
<SavingIndicator :visible="isSaving"/>
</div>
@@ -351,16 +420,45 @@ async function createMinistrant(ministrantId?: number) {
}
.plan {
padding-bottom: 100px;
padding-bottom: 24px;
}
.plan.table {
//width: 100%;
}
.container .view-toggle {
display: flex;
justify-content: center;
gap: 4px;
padding: 8px 12px;
button {
font-size: 14px;
padding: 6px 14px;
i {
font-size: 18px;
}
&.active {
background: #e0e0e0;
border-color: #c4c4c4;
}
}
}
.container.mobile-view {
.plan.list {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
}
.action-bar {
position: fixed;
bottom: 0;
position: sticky;
top: 0;
z-index: 100;
}
</style>