diff --git a/public/js/components/searchbar/action.js b/public/js/components/searchbar/action.js
deleted file mode 100644
index 699d5f8c7..000000000
--- a/public/js/components/searchbar/action.js
+++ /dev/null
@@ -1,31 +0,0 @@
-export default {
- props: {
- res: {
- type: Object
- },
- action: {
- type: Object
- },
- cssclass: {
- type: String,
- default: ''
- }
- },
- emits: [ 'actionexecuted' ],
- template: `
-
- Action
-
- `,
- methods: {
- getactionhref: function() {
- return (this.action.type === 'link') ? this.action.action(this.res)
- : 'javascript:void(0);';
- },
- execaction: function() {
- this.action.action(this.res);
- this.$emit('actionexecuted');
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/actions.js b/public/js/components/searchbar/actions.js
deleted file mode 100644
index ff9e25e12..000000000
--- a/public/js/components/searchbar/actions.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import action from "./action.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action
- },
- emits: [ 'actionexecuted' ],
- template: `
-
- -
-
-
- {{ action.label }}
-
-
-
-
- `,
- methods: {
- hasicon: function(index) {
- return (typeof this.actions[index].icon !== "undefined");
- },
- geticonclass: function(index) {
- return this.actions[index].icon;
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/employee.js b/public/js/components/searchbar/employee.js
deleted file mode 100644
index afb947874..000000000
--- a/public/js/components/searchbar/employee.js
+++ /dev/null
@@ -1,89 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.name }}
-
-
-
-
-
-
-
-
Standard-Kostenstelle
-
-
-
-
-
Organisations-Einheit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- },
- computed: {
- mailtourl: function() {
- return 'mailto:' + this.res.email;
- },
- telurl: function() {
- return 'tel:' + this.res.phone;
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/organisationunit.js b/public/js/components/searchbar/organisationunit.js
deleted file mode 100644
index e7b5861e8..000000000
--- a/public/js/components/searchbar/organisationunit.js
+++ /dev/null
@@ -1,82 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
-
- {{ res.name }}
-
-
-
-
-
-
-
-
übergeordnete OrgEinheit
-
- {{ res.parentoe_name }}
-
-
-
-
-
-
-
-
-
Mitarbeiter-Anzahl
-
- {{ res.number_of_people }}
-
-
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- },
- computed: {
- mailtourl: function() {
- return 'mailto:' + this.res.mailgroup;
- },
- telurl: function() {
- return 'tel:' + this.res.phone;
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/person.js b/public/js/components/searchbar/person.js
deleted file mode 100644
index 4f267cbd4..000000000
--- a/public/js/components/searchbar/person.js
+++ /dev/null
@@ -1,55 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.gn }} {{ res.sn }}
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- },
- computed: {
- mailtourl: function() {
- return 'mailto:' + this.res.mail;
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/prestudent.js b/public/js/components/searchbar/prestudent.js
deleted file mode 100644
index 0f7429075..000000000
--- a/public/js/components/searchbar/prestudent.js
+++ /dev/null
@@ -1,88 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.name }}
-
-
-
-
-
-
-
-
Prestudent_id
-
- {{ res.prestudent_id }}
-
-
-
-
-
Student_uid
-
- {{ res.uid }}
-
-
-
-
-
Person_id
-
- {{ res.person_id }}
-
-
-
-
-
Studiengang
-
- {{ res.bezeichnung }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- },
- computed: {
- mailtourl: function() {
- return 'mailto:' + this.res.email;
- }
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/raum.js b/public/js/components/searchbar/raum.js
deleted file mode 100644
index 887820d6c..000000000
--- a/public/js/components/searchbar/raum.js
+++ /dev/null
@@ -1,51 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
- {{ res.r }}
-
-
-
-
-
-
-
Gebäude
-
{{ res.g }}
-
-
-
Stockwerk
-
{{ res.s }}
-
-
-
Raumnummer
-
{{ res.rn }}
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- }
-};
\ No newline at end of file
diff --git a/public/js/components/searchbar/student.js b/public/js/components/searchbar/student.js
deleted file mode 100644
index 73253237c..000000000
--- a/public/js/components/searchbar/student.js
+++ /dev/null
@@ -1,80 +0,0 @@
-import action from "./action.js";
-import actions from "./actions.js";
-
-export default {
- props: [ "res", "actions" ],
- components: {
- action: action,
- actions: actions
- },
- emits: [ 'actionexecuted' ],
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.name }}
-
-
-
-
-
-
-
-
Student_uid
-
- {{ res.uid }}
-
-
-
-
-
Person_id
-
- {{ res.person_id }}
-
-
-
-
-
Matrikelnummer
-
- {{ res.matrikelnr }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- methods: {
- },
- computed: {
- mailtourl: function() {
- return 'mailto:' + this.res.email;
- }
- }
-};
\ No newline at end of file