Skip to content

Commit aec2d37

Browse files
committed
Add query and response interface as a TEFCA precursor
1 parent 56fb69f commit aec2d37

File tree

2 files changed

+402
-0
lines changed

2 files changed

+402
-0
lines changed

src/lib/AddFile.svelte

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import FetchFile from './FetchFile.svelte';
2323
import FetchSoF from './FetchSoF.svelte';
2424
import FetchAD from './FetchAD.svelte';
25+
import FetchTEFCA from './FetchTEFCA.svelte';
2526
import ODHForm from './ODHForm.svelte';
2627
import ResourceSelector from './ResourceSelector.svelte';
2728
import { verify } from './shcDecoder.js';
@@ -38,6 +39,7 @@
3839
import { page } from '$app/stores';
3940
import { getResourcesFromIPS } from './resourceUploader.js';
4041
import { goto } from '$app/navigation';
42+
import FetchTefca from './FetchTEFCA.svelte';
4143
4244
export let status = "";
4345
@@ -353,6 +355,12 @@
353355
on:update-resources={ async ({ detail }) => { handleNewResources(detail) } }>
354356
</FetchAD>
355357
</TabPane>
358+
<TabPane class="tefca-tab" tabId="tefca" style="padding-top:10px">
359+
<span class="tefca-tab" slot="tab">TEFCA Search</span>
360+
<FetchTEFCA
361+
on:update-resources={ async ({ detail }) => { handleNewResources(detail) } }>
362+
</FetchTEFCA>
363+
</TabPane>
356364
</TabContent>
357365
</AccordionItem>
358366
{#if resourcesToReview.length > 0}

0 commit comments

Comments
 (0)