-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41373e5
commit 1abf468
Showing
10 changed files
with
211 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
110 changes: 110 additions & 0 deletions
110
frontend/src/routes/(app)/(internal)/ebios-rm/[id=uuid]/workshop-one/base/+page.server.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import { defaultDeleteFormAction, defaultWriteFormAction } from '$lib/utils/actions'; | ||
import { BASE_API_URL } from '$lib/utils/constants'; | ||
import { | ||
getModelInfo, | ||
urlParamModelForeignKeyFields, | ||
urlParamModelSelectFields | ||
} from '$lib/utils/crud'; | ||
import { modelSchema } from '$lib/utils/schemas'; | ||
import type { ModelInfo, urlModel } from '$lib/utils/types'; | ||
import { type Actions } from '@sveltejs/kit'; | ||
import { superValidate } from 'sveltekit-superforms'; | ||
import { zod } from 'sveltekit-superforms/adapters'; | ||
import { z } from 'zod'; | ||
import type { PageServerLoad } from './$types'; | ||
import { listViewFields } from '$lib/utils/table'; | ||
import { tableSourceMapper, type TableSource } from '@skeletonlabs/skeleton'; | ||
|
||
export const load: PageServerLoad = async ({ params, fetch }) => { | ||
const schema = z.object({ id: z.string().uuid() }); | ||
const deleteForm = await superValidate(zod(schema)); | ||
const URLModel = 'compliance-assessments'; | ||
const createSchema = modelSchema(URLModel); | ||
const initialData = { | ||
ebios_rm_studies: [params.id] | ||
}; | ||
const createForm = await superValidate(initialData, zod(createSchema), { errors: false }); | ||
const model: ModelInfo = getModelInfo(URLModel); | ||
const foreignKeyFields = urlParamModelForeignKeyFields(URLModel); | ||
const selectFields = model.selectFields; | ||
|
||
const foreignKeys: Record<string, any> = {}; | ||
|
||
for (const keyField of foreignKeyFields) { | ||
const model = getModelInfo(keyField.urlModel); | ||
const queryParams = keyField.urlParams ? `?${keyField.urlParams}` : ''; | ||
const url = model.endpointUrl | ||
? `${BASE_API_URL}/${model.endpointUrl}/${queryParams}` | ||
: `${BASE_API_URL}/${model.urlModel}/${queryParams}`; | ||
const response = await fetch(url); | ||
if (response.ok) { | ||
foreignKeys[keyField.field] = await response.json().then((data) => data.results); | ||
} else { | ||
console.error(`Failed to fetch data for ${keyField.field}: ${response.statusText}`); | ||
} | ||
} | ||
|
||
model['foreignKeys'] = foreignKeys; | ||
|
||
const selectOptions: Record<string, any> = {}; | ||
|
||
if (selectFields) { | ||
for (const selectField of selectFields) { | ||
const url = `${BASE_API_URL}/${URLModel}/${ | ||
selectField.detail ? params.id + '/' : '' | ||
}${selectField.field}/`; | ||
const response = await fetch(url); | ||
if (response.ok) { | ||
selectOptions[selectField.field] = await response.json().then((data) => | ||
Object.entries(data).map(([key, value]) => ({ | ||
label: value, | ||
value: key | ||
})) | ||
); | ||
} else { | ||
console.error(`Failed to fetch data for ${selectField.field}: ${response.statusText}`); | ||
} | ||
} | ||
} | ||
|
||
model['selectOptions'] = selectOptions; | ||
|
||
const endpoint = model.endpointUrl | ||
? `${BASE_API_URL}/${model.endpointUrl}?ebios_rm_studies=${params.id}` | ||
: `${BASE_API_URL}/${model.urlModel}?ebios_rm_studies=${params.id}`; | ||
const res = await fetch(endpoint); | ||
const data = await res.json().then((res) => res.results); | ||
|
||
const bodyData = tableSourceMapper(data, listViewFields[URLModel as urlModel].body); | ||
|
||
const headData: Record<string, string> = listViewFields[URLModel as urlModel].body.reduce( | ||
(obj, key, index) => { | ||
obj[key] = listViewFields[URLModel as urlModel].head[index]; | ||
return obj; | ||
}, | ||
{} | ||
); | ||
|
||
const table: TableSource = { | ||
head: headData, | ||
body: bodyData, | ||
meta: data // metaData | ||
}; | ||
|
||
return { createForm, deleteForm, model, URLModel, table }; | ||
}; | ||
|
||
export const actions: Actions = { | ||
create: async (event) => { | ||
// const redirectToWrittenObject = Boolean(event.params.model === 'entity-assessments'); | ||
return defaultWriteFormAction({ | ||
event, | ||
urlModel: 'compliance-assessments', | ||
action: 'create' | ||
// redirectToWrittenObject: redirectToWrittenObject | ||
}); | ||
}, | ||
delete: async (event) => { | ||
return defaultDeleteFormAction({ event, urlModel: 'compliance-assessments' }); | ||
} | ||
}; |
67 changes: 67 additions & 0 deletions
67
frontend/src/routes/(app)/(internal)/ebios-rm/[id=uuid]/workshop-one/base/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<script lang="ts"> | ||
import ModelTable from '$lib/components/ModelTable/ModelTable.svelte'; | ||
import type { PageData } from './$types'; | ||
import { safeTranslate } from '$lib/utils/i18n'; | ||
import type { ModalComponent, ModalSettings, ModalStore } from '@skeletonlabs/skeleton'; | ||
import { getModalStore } from '@skeletonlabs/skeleton'; | ||
import CreateModal from '$lib/components/Modals/CreateModal.svelte'; | ||
import MissingConstraintsModal from '$lib/components/Modals/MissingConstraintsModal.svelte'; | ||
import { checkConstraints } from '$lib/utils/crud'; | ||
import * as m from '$paraglide/messages.js'; | ||
const modalStore: ModalStore = getModalStore(); | ||
export let data: PageData; | ||
const URLModel = data.URLModel; | ||
function modalCreateForm(): void { | ||
let modalComponent: ModalComponent = { | ||
ref: CreateModal, | ||
props: { | ||
form: data.createForm, | ||
model: data.model | ||
} | ||
}; | ||
let modal: ModalSettings = { | ||
type: 'component', | ||
component: modalComponent, | ||
// Data | ||
title: safeTranslate('add-' + data.model.localName) | ||
}; | ||
if ( | ||
checkConstraints( | ||
data.createForm.constraints, | ||
Object.fromEntries( | ||
Object.entries(data.model.foreignKeys).filter(([key]) => key !== 'risk_matrix') | ||
) | ||
).length > 0 | ||
) { | ||
modalComponent = { | ||
ref: MissingConstraintsModal | ||
}; | ||
modal = { | ||
type: 'component', | ||
component: modalComponent, | ||
title: m.warning(), | ||
body: safeTranslate('add-' + data.model.localName).toLowerCase(), | ||
value: checkConstraints(data.createForm.constraints, data.model.foreignKeys) | ||
}; | ||
} | ||
modalStore.trigger(modal); | ||
} | ||
</script> | ||
|
||
<ModelTable source={data.table} deleteForm={data.deleteForm} {URLModel}> | ||
<div slot="addButton"> | ||
<span class="inline-flex overflow-hidden rounded-md border bg-white shadow-sm"> | ||
<button | ||
class="inline-block border-e p-3 btn-mini-primary w-12 focus:relative" | ||
data-testid="add-button" | ||
title={safeTranslate('add-' + data.model.localName)} | ||
on:click={modalCreateForm} | ||
><i class="fa-solid fa-file-circle-plus"></i> | ||
</button> | ||
</span> | ||
</div> | ||
</ModelTable> |