File tree 2 files changed +39
-12
lines changed
src/components/main-section/content-view/xml-view
2 files changed +39
-12
lines changed Original file line number Diff line number Diff line change 1
1
.container {
2
+ position : relative;
3
+ overflow : hidden;
4
+ }
5
+
6
+ .xmlContainer {
2
7
font-size : 0.75rem ;
3
- overflow-y : auto;
8
+ overflow-y : scroll;
9
+ height : 100% ;
10
+ scrollbar-width : thin;
4
11
}
5
12
6
13
.hidden {
7
14
display : none;
15
+ }
16
+
17
+ .toggle {
18
+ position : absolute;
19
+ right : 1.5rem ;
20
+ bottom : 0.5rem ;
8
21
}
Original file line number Diff line number Diff line change 1
- import React from 'react' ;
1
+ import React , { useState } from 'react' ;
2
2
import XMLViewer from 'react-xml-viewer' ;
3
- import { Alert } from '@navikt/ds-react' ;
3
+ import { Alert , Switch , Tooltip } from '@navikt/ds-react' ;
4
4
import { classNames } from '../../../../utils/classNames' ;
5
5
6
6
import style from './XmlView.module.css' ;
@@ -11,17 +11,31 @@ type Props = {
11
11
} ;
12
12
13
13
export const XmlView = ( { xml, hidden = false } : Props ) => {
14
+ const [ collapsible , setCollapsible ] = useState ( false ) ;
15
+
14
16
return (
15
17
< div className = { classNames ( style . container , hidden && style . hidden ) } >
16
- < XMLViewer
17
- xml = { xml }
18
- collapsible = { true }
19
- invalidXml = {
20
- < Alert variant = { 'error' } >
21
- { 'Feil: fant ingen XML for dette innholdet!' }
22
- </ Alert >
23
- }
24
- />
18
+ < Tooltip content = { 'Toggle ekspanderbare elementer' } >
19
+ < Switch
20
+ size = { 'small' }
21
+ checked = { collapsible }
22
+ position = { 'right' }
23
+ hideLabel = { true }
24
+ onClick = { ( ) => setCollapsible ( ! collapsible ) }
25
+ className = { style . toggle }
26
+ >
27
+ { 'Expand/collapse' }
28
+ </ Switch >
29
+ </ Tooltip >
30
+ < div className = { style . xmlContainer } >
31
+ < XMLViewer
32
+ xml = { xml }
33
+ collapsible = { collapsible }
34
+ invalidXml = {
35
+ < Alert variant = { 'error' } > { 'Parsing av XML for innholdet feilet!' } </ Alert >
36
+ }
37
+ />
38
+ </ div >
25
39
</ div >
26
40
) ;
27
41
} ;
You can’t perform that action at this time.
0 commit comments