From 7ab3be146557ce9d755f363e359c10401738d622 Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Wed, 10 Jul 2024 17:25:54 +0200 Subject: [PATCH] Code cleanup --- src/components/DownloadLink.vue | 2 -- src/components/RenderContentComponent.vue | 1 - src/content/AddressesContent.vue | 23 ----------------- src/content/ContactsContent.vue | 12 --------- src/content/DaycareCentersContent.vue | 12 --------- src/content/DefaultContent.vue | 1 - src/content/HomeContent.vue | 24 ------------------ src/content/MeetingPointContent.vue | 12 --------- src/content/MiriamsWonderboxContent.vue | 11 -------- src/content/MiriamsWunderkisteContent.vue | 25 ------------------- src/content/MusicContent.vue | 12 --------- src/content/OurChurchesContent.vue | 12 --------- src/content/WorshipServicesContent.vue | 12 --------- src/content/kita/AmBuegelContent.vue | 23 ----------------- src/content/kita/KramambuliContent.vue | 23 ----------------- src/content/kita/SternenzeltContent.vue | 23 ----------------- .../meetingpoint/ChildrensChurchContent.vue | 23 ----------------- .../ConfirmationClassesContent.vue | 25 ------------------- .../meetingpoint/HeliandPathfinderContent.vue | 25 ------------------- .../meetingpoint/TeenEveningContent.vue | 25 ------------------- .../meetingpoint/YouthMinistryContent.vue | 25 ------------------- src/content/music/FlootChildrenContent.vue | 25 ------------------- src/content/music/MiriamkantoreiContent.vue | 25 ------------------- src/content/music/VocalEnsembleContent.vue | 23 ----------------- src/content/worship/AllWorshipsContent.vue | 24 ------------------ src/content/worship/AmBuegelContent.vue | 24 ------------------ src/content/worship/BonamesContent.vue | 24 ------------------ src/content/worship/KalbachContent.vue | 24 ------------------ src/content/worship/NeighborhoodContent.vue | 24 ------------------ 29 files changed, 544 deletions(-) delete mode 100644 src/content/AddressesContent.vue delete mode 100644 src/content/ContactsContent.vue delete mode 100644 src/content/DaycareCentersContent.vue delete mode 100644 src/content/HomeContent.vue delete mode 100644 src/content/MeetingPointContent.vue delete mode 100644 src/content/MiriamsWonderboxContent.vue delete mode 100644 src/content/MiriamsWunderkisteContent.vue delete mode 100644 src/content/MusicContent.vue delete mode 100644 src/content/OurChurchesContent.vue delete mode 100644 src/content/WorshipServicesContent.vue delete mode 100644 src/content/kita/AmBuegelContent.vue delete mode 100644 src/content/kita/KramambuliContent.vue delete mode 100644 src/content/kita/SternenzeltContent.vue delete mode 100644 src/content/meetingpoint/ChildrensChurchContent.vue delete mode 100644 src/content/meetingpoint/ConfirmationClassesContent.vue delete mode 100644 src/content/meetingpoint/HeliandPathfinderContent.vue delete mode 100644 src/content/meetingpoint/TeenEveningContent.vue delete mode 100644 src/content/meetingpoint/YouthMinistryContent.vue delete mode 100644 src/content/music/FlootChildrenContent.vue delete mode 100644 src/content/music/MiriamkantoreiContent.vue delete mode 100644 src/content/music/VocalEnsembleContent.vue delete mode 100644 src/content/worship/AllWorshipsContent.vue delete mode 100644 src/content/worship/AmBuegelContent.vue delete mode 100644 src/content/worship/BonamesContent.vue delete mode 100644 src/content/worship/KalbachContent.vue delete mode 100644 src/content/worship/NeighborhoodContent.vue diff --git a/src/components/DownloadLink.vue b/src/components/DownloadLink.vue index ceed6a7..f53a635 100644 --- a/src/components/DownloadLink.vue +++ b/src/components/DownloadLink.vue @@ -25,10 +25,8 @@ export default { methods: { async fetchFile() { try { - console.log(this.hash); const response = await axios.get('/files/hash/' + this.hash); this.title = response.data.title; - console.log('Fetched files:', response.data.events); this.events = response.data.events; } catch (error) { console.error('Fehler beim Abrufen der Events', error); diff --git a/src/components/RenderContentComponent.vue b/src/components/RenderContentComponent.vue index a971d8b..913e26d 100644 --- a/src/components/RenderContentComponent.vue +++ b/src/components/RenderContentComponent.vue @@ -105,7 +105,6 @@ export default { if (placeholder) { const app = createApp({ render() { - console.log('RC', config) return h(EventRender, {config: JSON.parse(config) }); }, }); diff --git a/src/content/AddressesContent.vue b/src/content/AddressesContent.vue deleted file mode 100644 index a6ddb6c..0000000 --- a/src/content/AddressesContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/ContactsContent.vue b/src/content/ContactsContent.vue deleted file mode 100644 index 9b28856..0000000 --- a/src/content/ContactsContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/DaycareCentersContent.vue b/src/content/DaycareCentersContent.vue deleted file mode 100644 index 4ea5abe..0000000 --- a/src/content/DaycareCentersContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/DefaultContent.vue b/src/content/DefaultContent.vue index 5677368..712c106 100644 --- a/src/content/DefaultContent.vue +++ b/src/content/DefaultContent.vue @@ -14,7 +14,6 @@ }, computed: { currentLink() { - console.log(this.$route.path); return this.$route.path; }, }, diff --git a/src/content/HomeContent.vue b/src/content/HomeContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/HomeContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/content/MeetingPointContent.vue b/src/content/MeetingPointContent.vue deleted file mode 100644 index 5f0ef45..0000000 --- a/src/content/MeetingPointContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/MiriamsWonderboxContent.vue b/src/content/MiriamsWonderboxContent.vue deleted file mode 100644 index 25d995c..0000000 --- a/src/content/MiriamsWonderboxContent.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/src/content/MiriamsWunderkisteContent.vue b/src/content/MiriamsWunderkisteContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/MiriamsWunderkisteContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/MusicContent.vue b/src/content/MusicContent.vue deleted file mode 100644 index 8c97086..0000000 --- a/src/content/MusicContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/OurChurchesContent.vue b/src/content/OurChurchesContent.vue deleted file mode 100644 index 4ea5abe..0000000 --- a/src/content/OurChurchesContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/WorshipServicesContent.vue b/src/content/WorshipServicesContent.vue deleted file mode 100644 index 0ca4e1c..0000000 --- a/src/content/WorshipServicesContent.vue +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/content/kita/AmBuegelContent.vue b/src/content/kita/AmBuegelContent.vue deleted file mode 100644 index 23c146c..0000000 --- a/src/content/kita/AmBuegelContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/kita/KramambuliContent.vue b/src/content/kita/KramambuliContent.vue deleted file mode 100644 index 23c146c..0000000 --- a/src/content/kita/KramambuliContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/kita/SternenzeltContent.vue b/src/content/kita/SternenzeltContent.vue deleted file mode 100644 index 23c146c..0000000 --- a/src/content/kita/SternenzeltContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/meetingpoint/ChildrensChurchContent.vue b/src/content/meetingpoint/ChildrensChurchContent.vue deleted file mode 100644 index 8943928..0000000 --- a/src/content/meetingpoint/ChildrensChurchContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/meetingpoint/ConfirmationClassesContent.vue b/src/content/meetingpoint/ConfirmationClassesContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/meetingpoint/ConfirmationClassesContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/meetingpoint/HeliandPathfinderContent.vue b/src/content/meetingpoint/HeliandPathfinderContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/meetingpoint/HeliandPathfinderContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/meetingpoint/TeenEveningContent.vue b/src/content/meetingpoint/TeenEveningContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/meetingpoint/TeenEveningContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/meetingpoint/YouthMinistryContent.vue b/src/content/meetingpoint/YouthMinistryContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/meetingpoint/YouthMinistryContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/music/FlootChildrenContent.vue b/src/content/music/FlootChildrenContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/music/FlootChildrenContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/music/MiriamkantoreiContent.vue b/src/content/music/MiriamkantoreiContent.vue deleted file mode 100644 index 30c76ae..0000000 --- a/src/content/music/MiriamkantoreiContent.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/content/music/VocalEnsembleContent.vue b/src/content/music/VocalEnsembleContent.vue deleted file mode 100644 index a6ddb6c..0000000 --- a/src/content/music/VocalEnsembleContent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/content/worship/AllWorshipsContent.vue b/src/content/worship/AllWorshipsContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/worship/AllWorshipsContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/content/worship/AmBuegelContent.vue b/src/content/worship/AmBuegelContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/worship/AmBuegelContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/content/worship/BonamesContent.vue b/src/content/worship/BonamesContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/worship/BonamesContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/content/worship/KalbachContent.vue b/src/content/worship/KalbachContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/worship/KalbachContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/content/worship/NeighborhoodContent.vue b/src/content/worship/NeighborhoodContent.vue deleted file mode 100644 index 6294358..0000000 --- a/src/content/worship/NeighborhoodContent.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - -