Skip to content

Commit

Permalink
working search and results
Browse files Browse the repository at this point in the history
  • Loading branch information
apeters committed Nov 21, 2024
1 parent ed77190 commit 5b4abfb
Show file tree
Hide file tree
Showing 6 changed files with 192 additions and 296 deletions.
20 changes: 19 additions & 1 deletion afrc/media/js/views/search.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
import createVueApplication from 'arches/arches/app/media/js/utils/create-vue-application';

import { definePreset } from '@primevue/themes';
import Aura from '@primevue/themes/aura';

import Search from '@/afrc/Search/SearchPage.vue';

createVueApplication(Search).then(vueApp => {
const EditableReportPreset = definePreset(Aura, {
components: {
toast: {
summary: { fontSize: '1.5rem' },
detail: { fontSize: '1.25rem' },
},
},
});

const EditableReportTheme = {
theme: {
preset: EditableReportPreset,
},
};

createVueApplication(Search, EditableReportTheme).then(vueApp => {
vueApp.mount('#search-mounting-point');
});
178 changes: 0 additions & 178 deletions afrc/src/afrc/Search/Search.vue

This file was deleted.

Loading

0 comments on commit 5b4abfb

Please sign in to comment.