@@ -7,6 +7,7 @@ import Splitter from 'primevue/splitter';
7
7
import SplitterPanel from ' primevue/splitterpanel' ;
8
8
import Select from ' primevue/select' ;
9
9
import Dialog from ' primevue/dialog' ;
10
+ import Drawer from ' primevue/drawer' ;
10
11
11
12
import RdfEditor from ' ./components/RdfEditor.vue' ;
12
13
import type { RdfData } from ' ./components/RdfEditor.vue' ;
@@ -30,7 +31,9 @@ const rdfText = ref<string>('');
30
31
const currentSerialization = computed (() => selectedFormat .value .type );
31
32
const dataset = ref <Dataset >(rdfEnvironment .dataset () as unknown as Dataset );
32
33
const hideEditorSplitterPanel = ref (false );
33
- const hideSearchPanel = ref (true );
34
+ const showTable = ref (false );
35
+ const showSearchPanel = ref (false );
36
+
34
37
const showAboutDialog = ref (false );
35
38
36
39
function onQuadsChanged(rdfData : RdfData ) {
@@ -47,7 +50,7 @@ function makeEditorBig() {
47
50
}
48
51
49
52
function toggleSearch () {
50
- hideSearchPanel .value = ! hideSearchPanel .value ;
53
+ showSearchPanel .value = ! showSearchPanel .value ;
51
54
}
52
55
53
56
function onFormatChange(rdfSerializationType : RdfSerializationType ) {
@@ -110,15 +113,27 @@ function onNdeSelected(term: Term) {
110
113
<GraphView :dataset =" dataset" />
111
114
</SplitterPanel >
112
115
113
- <SplitterPanel v-if =" !hideSearchPanel" >
114
- <SPOSearch :dataset =" dataset" @selected =" onNdeSelected" />
115
- </SplitterPanel >
116
-
117
116
</Splitter >
118
117
119
118
120
-
121
- <Dialog v-model:visible =" showAboutDialog" modal header =" Zazuko RDF Sketch" :style =" { width: '60rem' }" >
119
+ <Drawer v-model:visible =" showSearchPanel" header =" SPO Search" :modal =" false" position =" bottom" :dismissable =" false" style =" height : 40vh " :pt =" {
120
+ root: {
121
+ style: 'padding: 0;'
122
+ },
123
+ content: {
124
+ style: 'padding: 0;'
125
+ },
126
+ title: {
127
+ style: 'font-size: 16px; font-weight: 600;'
128
+ },
129
+ header: {
130
+ style: 'padding-left: 16px; padding-top:0; padding-bottom:0; padding-right: 0px; '
131
+
132
+ }}" >
133
+ <SPOSearch :dataset =" dataset" @selected =" onNdeSelected" />
134
+ </Drawer >
135
+
136
+ <Dialog v-model:visible =" showAboutDialog" header =" Zazuko RDF Sketch" :style =" { width: '60rem' }" >
122
137
<div style =" display : flex ; flex-direction : row ; gap : 24px " >
123
138
<img src =" /img/icons/zazuko_icon.svg" alt =" Zazuko Logo" style =" width : 100px ;" >
124
139
0 commit comments