@aarhus-university/au-lib-react-components 10.0.9 → 10.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +44 -44
- package/README.md +19 -19
- package/babel.config.js +7 -7
- package/build/umd/all.css +2 -2
- package/build/umd/all.js +1 -1
- package/build/umd/alphabox.js +1 -1
- package/build/umd/databox.js +1 -1
- package/build/umd/diagramme.js +1 -1
- package/build/umd/flowbox.js +1 -1
- package/build/umd/universe.js +1 -1
- package/package.json +67 -67
- package/src/components/AUAlertComponent.tsx +70 -70
- package/src/components/AUAutoSuggestComponent.js +158 -158
- package/src/components/AUCalendarComponent.tsx +493 -493
- package/src/components/AUContentToggleComponent.tsx +33 -33
- package/src/components/AUDatepickerComponent.tsx +117 -117
- package/src/components/AUMobilePrefixComponent.tsx +15 -15
- package/src/components/AUModalComponent.tsx +84 -84
- package/src/components/AUReceiptComponent.tsx +33 -33
- package/src/components/AUSpinnerComponent.tsx +91 -91
- package/src/components/AUSubNavComponent.tsx +38 -38
- package/src/components/AUSubmitButtonContainerComponent.tsx +31 -31
- package/src/components/AUTabbedContentComponent.tsx +83 -145
- package/src/components/AUTableComponent.tsx +24 -24
- package/src/components/AUToastComponent.tsx +103 -103
- package/src/components/AUToolbarComponent.tsx +45 -45
- package/src/components/profile/AUProfileActions.js +128 -128
- package/src/components/profile/AUProfileAvatarComponent.js +83 -83
- package/src/components/profile/AUProfileAvatarV2Component.js +91 -91
- package/src/components/profile/AUProfileAvatarV3Component.tsx +42 -42
- package/src/components/profile/AUProfileContainerComponent.js +283 -283
- package/src/components/profile/AUProfileHooks.js +30 -30
- package/src/components/profile/AUProfileItemComponent.js +54 -54
- package/src/components/profile/AUProfileLanguageComponent.js +131 -131
- package/src/components/profile/AUProfileLoginComponent.tsx +26 -26
- package/src/components/profile/AUProfileMailComponent.js +307 -307
- package/src/components/profile/AUProfileMobileComponent.js +164 -164
- package/src/components/profile/AUProfileNameComponent.js +253 -253
- package/src/components/profile/AUProfileNextOfKinComponent.js +216 -216
- package/src/components/profile/AUProfileReducer.js +230 -230
- package/src/components/profile/AUProfileWidgetComponent.js +95 -95
- package/src/components/profile/AUProfileWidgetV2Component.js +116 -116
- package/src/components/profile/AUProfileWidgetV3Component.tsx +122 -122
- package/src/components/wrapping/AUEmbedComponent.js +47 -47
- package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
- package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
- package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
- package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
- package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
- package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
- package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
- package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
- package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
- package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
- package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
- package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
- package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
- package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
- package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
- package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
- package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
- package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
- package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
- package/src/layout-2016/lib/all.js +3 -3
- package/src/layout-2016/lib/au-alphabox.js +100 -100
- package/src/layout-2016/lib/au-databox.js +400 -400
- package/src/layout-2016/lib/au-diagramme.js +85 -85
- package/src/layout-2016/lib/au-flowbox.js +93 -93
- package/src/layout-2016/lib/universe.js +9 -9
- package/src/lib/helpers.ts +208 -208
- package/src/lib/hooks.ts +53 -53
- package/src/lib/i18n.ts +600 -600
- package/src/lib/tracking.ts +69 -69
- package/src/lib/wrapping.ts +21 -21
- package/src/styles/_settings.scss +10 -10
- package/src/styles/alphabox.scss +222 -222
- package/src/styles/app.scss +7 -7
- package/src/styles/autosuggest.scss +57 -57
- package/src/styles/databox.scss +563 -563
- package/src/styles/diagramme.scss +119 -119
- package/src/styles/flowbox.scss +72 -72
- package/src/styles/maps.scss +395 -395
- package/tsconfig.json +46 -46
- package/webpack.config.js +89 -89
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
/* eslint-disable react/static-property-placement */
|
|
2
|
-
/* eslint-env browser */
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { isElementInViewport } from '../lib/helpers';
|
|
5
|
-
|
|
6
|
-
type AUSpinnerComponentState = {
|
|
7
|
-
loading: boolean,
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
class AUSpinnerComponent extends React.Component<AUSpinnerComponentProps, AUSpinnerComponentState> {
|
|
11
|
-
static displayName = 'AUSpinnerComponent';
|
|
12
|
-
|
|
13
|
-
static defaultProps = {
|
|
14
|
-
domID: 'au-spinner-component',
|
|
15
|
-
visible: false,
|
|
16
|
-
className: '',
|
|
17
|
-
height: 'auto',
|
|
18
|
-
init: '',
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
constructor(props: AUSpinnerComponentProps) {
|
|
22
|
-
super(props);
|
|
23
|
-
|
|
24
|
-
this.state = {
|
|
25
|
-
loading: true,
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
this.lazyLoad = this.lazyLoad.bind(this);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
componentDidMount() {
|
|
32
|
-
this.lazyLoad();
|
|
33
|
-
window.addEventListener('scroll', () => {
|
|
34
|
-
this.lazyLoad();
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
componentDidUpdate() {
|
|
39
|
-
this.lazyLoad();
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
lazyLoad() {
|
|
43
|
-
const {
|
|
44
|
-
loadingCondition,
|
|
45
|
-
loaded,
|
|
46
|
-
visible,
|
|
47
|
-
domID,
|
|
48
|
-
onLoad,
|
|
49
|
-
} = this.props;
|
|
50
|
-
const { loading } = this.state;
|
|
51
|
-
|
|
52
|
-
const element = document.getElementById(domID || '');
|
|
53
|
-
if (element
|
|
54
|
-
&& !loaded
|
|
55
|
-
&& loading
|
|
56
|
-
&& loadingCondition
|
|
57
|
-
&& (visible || isElementInViewport(element))) {
|
|
58
|
-
this.setState({
|
|
59
|
-
loading: false,
|
|
60
|
-
}, () => {
|
|
61
|
-
onLoad();
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
render() {
|
|
67
|
-
const {
|
|
68
|
-
loaded, domID, children, init, className, height,
|
|
69
|
-
} = this.props;
|
|
70
|
-
|
|
71
|
-
if (!loaded) {
|
|
72
|
-
if (init === 'table') {
|
|
73
|
-
return (
|
|
74
|
-
<div id={domID} className={`processing-state processing-state--init-table ${className}`} style={{ minHeight: height }} />
|
|
75
|
-
);
|
|
76
|
-
}
|
|
77
|
-
if (init === 'box') {
|
|
78
|
-
return (
|
|
79
|
-
<div id={domID} className={`processing-state processing-state--init-box ${className}`} style={{ minHeight: height }} />
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
return (
|
|
83
|
-
<div id={domID} className={`processing-state ${className}`} style={{ minHeight: height }} />
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
return children;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export default AUSpinnerComponent;
|
|
1
|
+
/* eslint-disable react/static-property-placement */
|
|
2
|
+
/* eslint-env browser */
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { isElementInViewport } from '../lib/helpers';
|
|
5
|
+
|
|
6
|
+
type AUSpinnerComponentState = {
|
|
7
|
+
loading: boolean,
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
class AUSpinnerComponent extends React.Component<AUSpinnerComponentProps, AUSpinnerComponentState> {
|
|
11
|
+
static displayName = 'AUSpinnerComponent';
|
|
12
|
+
|
|
13
|
+
static defaultProps = {
|
|
14
|
+
domID: 'au-spinner-component',
|
|
15
|
+
visible: false,
|
|
16
|
+
className: '',
|
|
17
|
+
height: 'auto',
|
|
18
|
+
init: '',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
constructor(props: AUSpinnerComponentProps) {
|
|
22
|
+
super(props);
|
|
23
|
+
|
|
24
|
+
this.state = {
|
|
25
|
+
loading: true,
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
this.lazyLoad = this.lazyLoad.bind(this);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
componentDidMount() {
|
|
32
|
+
this.lazyLoad();
|
|
33
|
+
window.addEventListener('scroll', () => {
|
|
34
|
+
this.lazyLoad();
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
componentDidUpdate() {
|
|
39
|
+
this.lazyLoad();
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
lazyLoad() {
|
|
43
|
+
const {
|
|
44
|
+
loadingCondition,
|
|
45
|
+
loaded,
|
|
46
|
+
visible,
|
|
47
|
+
domID,
|
|
48
|
+
onLoad,
|
|
49
|
+
} = this.props;
|
|
50
|
+
const { loading } = this.state;
|
|
51
|
+
|
|
52
|
+
const element = document.getElementById(domID || '');
|
|
53
|
+
if (element
|
|
54
|
+
&& !loaded
|
|
55
|
+
&& loading
|
|
56
|
+
&& loadingCondition
|
|
57
|
+
&& (visible || isElementInViewport(element))) {
|
|
58
|
+
this.setState({
|
|
59
|
+
loading: false,
|
|
60
|
+
}, () => {
|
|
61
|
+
onLoad();
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
render() {
|
|
67
|
+
const {
|
|
68
|
+
loaded, domID, children, init, className, height,
|
|
69
|
+
} = this.props;
|
|
70
|
+
|
|
71
|
+
if (!loaded) {
|
|
72
|
+
if (init === 'table') {
|
|
73
|
+
return (
|
|
74
|
+
<div id={domID} className={`processing-state processing-state--init-table ${className}`} style={{ minHeight: height }} />
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
if (init === 'box') {
|
|
78
|
+
return (
|
|
79
|
+
<div id={domID} className={`processing-state processing-state--init-box ${className}`} style={{ minHeight: height }} />
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
return (
|
|
83
|
+
<div id={domID} className={`processing-state ${className}`} style={{ minHeight: height }} />
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
return children;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export default AUSpinnerComponent;
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
/* eslint-env browser */
|
|
2
|
-
import React, { useEffect, useRef, FC } from 'react';
|
|
3
|
-
import { setSubNavToggle } from '@aarhus-university/au-designsystem-delphinus/source/js/components/nav';
|
|
4
|
-
|
|
5
|
-
const AUSubNavComponent: FC<AUSubNavComponentProps> = ({
|
|
6
|
-
children,
|
|
7
|
-
className,
|
|
8
|
-
dataIcon,
|
|
9
|
-
text,
|
|
10
|
-
ariaLabel,
|
|
11
|
-
id,
|
|
12
|
-
}: AUSubNavComponentProps) => {
|
|
13
|
-
const buttonRef = useRef<HTMLButtonElement>(null);
|
|
14
|
-
useEffect(() => {
|
|
15
|
-
const subNavBtns = document.querySelectorAll('.sub-nav > button.nav__item');
|
|
16
|
-
setSubNavToggle(subNavBtns, buttonRef.current as Element);
|
|
17
|
-
}, []);
|
|
18
|
-
|
|
19
|
-
return (
|
|
20
|
-
<div className="sub-nav">
|
|
21
|
-
<button
|
|
22
|
-
ref={buttonRef}
|
|
23
|
-
id={id}
|
|
24
|
-
type="button"
|
|
25
|
-
className={className}
|
|
26
|
-
data-icon={dataIcon}
|
|
27
|
-
aria-label={ariaLabel}
|
|
28
|
-
aria-expanded={false}
|
|
29
|
-
>
|
|
30
|
-
{text}
|
|
31
|
-
</button>
|
|
32
|
-
{children}
|
|
33
|
-
</div>
|
|
34
|
-
);
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
AUSubNavComponent.displayName = 'AUSubNavComponent';
|
|
38
|
-
export default AUSubNavComponent;
|
|
1
|
+
/* eslint-env browser */
|
|
2
|
+
import React, { useEffect, useRef, FC } from 'react';
|
|
3
|
+
import { setSubNavToggle } from '@aarhus-university/au-designsystem-delphinus/source/js/components/nav';
|
|
4
|
+
|
|
5
|
+
const AUSubNavComponent: FC<AUSubNavComponentProps> = ({
|
|
6
|
+
children,
|
|
7
|
+
className,
|
|
8
|
+
dataIcon,
|
|
9
|
+
text,
|
|
10
|
+
ariaLabel,
|
|
11
|
+
id,
|
|
12
|
+
}: AUSubNavComponentProps) => {
|
|
13
|
+
const buttonRef = useRef<HTMLButtonElement>(null);
|
|
14
|
+
useEffect(() => {
|
|
15
|
+
const subNavBtns = document.querySelectorAll('.sub-nav > button.nav__item');
|
|
16
|
+
setSubNavToggle(subNavBtns, buttonRef.current as Element);
|
|
17
|
+
}, []);
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<div className="sub-nav">
|
|
21
|
+
<button
|
|
22
|
+
ref={buttonRef}
|
|
23
|
+
id={id}
|
|
24
|
+
type="button"
|
|
25
|
+
className={className}
|
|
26
|
+
data-icon={dataIcon}
|
|
27
|
+
aria-label={ariaLabel}
|
|
28
|
+
aria-expanded={false}
|
|
29
|
+
>
|
|
30
|
+
{text}
|
|
31
|
+
</button>
|
|
32
|
+
{children}
|
|
33
|
+
</div>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
AUSubNavComponent.displayName = 'AUSubNavComponent';
|
|
38
|
+
export default AUSubNavComponent;
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import React, { FC } from 'react';
|
|
2
|
-
import { profileLabels } from '../lib/i18n';
|
|
3
|
-
|
|
4
|
-
const AUSubmitButtonContainerComponent: FC<AUSubmitButtonContainerComponentProps> = ({
|
|
5
|
-
lang,
|
|
6
|
-
disabled,
|
|
7
|
-
onSubmit,
|
|
8
|
-
onCancel,
|
|
9
|
-
}: AUSubmitButtonContainerComponentProps) => (
|
|
10
|
-
<div className="submit button-container">
|
|
11
|
-
<button
|
|
12
|
-
type="submit"
|
|
13
|
-
className={`button${disabled ? ' button--processing' : ''}`}
|
|
14
|
-
disabled={disabled}
|
|
15
|
-
onClick={onSubmit}
|
|
16
|
-
>
|
|
17
|
-
{profileLabels[lang].save}
|
|
18
|
-
</button>
|
|
19
|
-
<button
|
|
20
|
-
type="button"
|
|
21
|
-
className="button button--text"
|
|
22
|
-
disabled={disabled}
|
|
23
|
-
onClick={onCancel}
|
|
24
|
-
>
|
|
25
|
-
{profileLabels[lang].cancel}
|
|
26
|
-
</button>
|
|
27
|
-
</div>
|
|
28
|
-
);
|
|
29
|
-
|
|
30
|
-
AUSubmitButtonContainerComponent.displayName = 'AUSubmitButtonContainerComponent';
|
|
31
|
-
export default AUSubmitButtonContainerComponent;
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
import { profileLabels } from '../lib/i18n';
|
|
3
|
+
|
|
4
|
+
const AUSubmitButtonContainerComponent: FC<AUSubmitButtonContainerComponentProps> = ({
|
|
5
|
+
lang,
|
|
6
|
+
disabled,
|
|
7
|
+
onSubmit,
|
|
8
|
+
onCancel,
|
|
9
|
+
}: AUSubmitButtonContainerComponentProps) => (
|
|
10
|
+
<div className="submit button-container">
|
|
11
|
+
<button
|
|
12
|
+
type="submit"
|
|
13
|
+
className={`button${disabled ? ' button--processing' : ''}`}
|
|
14
|
+
disabled={disabled}
|
|
15
|
+
onClick={onSubmit}
|
|
16
|
+
>
|
|
17
|
+
{profileLabels[lang].save}
|
|
18
|
+
</button>
|
|
19
|
+
<button
|
|
20
|
+
type="button"
|
|
21
|
+
className="button button--text"
|
|
22
|
+
disabled={disabled}
|
|
23
|
+
onClick={onCancel}
|
|
24
|
+
>
|
|
25
|
+
{profileLabels[lang].cancel}
|
|
26
|
+
</button>
|
|
27
|
+
</div>
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
AUSubmitButtonContainerComponent.displayName = 'AUSubmitButtonContainerComponent';
|
|
31
|
+
export default AUSubmitButtonContainerComponent;
|
|
@@ -1,145 +1,83 @@
|
|
|
1
|
-
/* eslint-env browser */
|
|
2
|
-
/* eslint-disable max-len */
|
|
3
|
-
import React, { useEffect, useRef, FC } from 'react';
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
));
|
|
85
|
-
const renderContent = (tabContent || []).map((content, index: number) => (
|
|
86
|
-
<Route
|
|
87
|
-
key={tabs[index].href}
|
|
88
|
-
path={tabs[index].href}
|
|
89
|
-
>
|
|
90
|
-
{content?.content}
|
|
91
|
-
</Route>
|
|
92
|
-
));
|
|
93
|
-
|
|
94
|
-
return (
|
|
95
|
-
<Router>
|
|
96
|
-
<div ref={tabsElement} className={classNames}>
|
|
97
|
-
<div className="nav nav--has-active-item">
|
|
98
|
-
<div className="nav__items">
|
|
99
|
-
{renderRouteTabs}
|
|
100
|
-
</div>
|
|
101
|
-
</div>
|
|
102
|
-
<TabRoutes
|
|
103
|
-
content={renderContent}
|
|
104
|
-
onRouteChange={() => {
|
|
105
|
-
if (typeof callback === 'function') {
|
|
106
|
-
callback();
|
|
107
|
-
}
|
|
108
|
-
}}
|
|
109
|
-
/>
|
|
110
|
-
</div>
|
|
111
|
-
</Router>
|
|
112
|
-
);
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// eslint-disable-next-line jsx-a11y/control-has-associated-label
|
|
116
|
-
const renderTabs = tabs.map((tab: ITabbedTab) => <a key={tab.href} href={tab.href} className="nav__item" data-gtm={tab.dataGtm} dangerouslySetInnerHTML={{ __html: tab.text }} />);
|
|
117
|
-
|
|
118
|
-
return (
|
|
119
|
-
<div ref={tabsElement} className={classNames}>
|
|
120
|
-
<div className="nav nav--has-active-item">
|
|
121
|
-
<div className="nav__items">
|
|
122
|
-
{renderTabs}
|
|
123
|
-
</div>
|
|
124
|
-
<button type="button" className="nav__toggle">{lang === 'da' ? 'Mere' : 'More'}</button>
|
|
125
|
-
</div>
|
|
126
|
-
{children}
|
|
127
|
-
</div>
|
|
128
|
-
);
|
|
129
|
-
};
|
|
130
|
-
|
|
131
|
-
AUTabbedContentComponent.defaultProps = {
|
|
132
|
-
tabKey: 0,
|
|
133
|
-
children: null,
|
|
134
|
-
tabContent: null,
|
|
135
|
-
focus: true,
|
|
136
|
-
initial: 0,
|
|
137
|
-
lang: 'da',
|
|
138
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
139
|
-
callback: () => { },
|
|
140
|
-
withRouter: false,
|
|
141
|
-
classNames: 'tabbed-content',
|
|
142
|
-
};
|
|
143
|
-
|
|
144
|
-
AUTabbedContentComponent.displayName = 'AUTabbedContentComponent';
|
|
145
|
-
export default AUTabbedContentComponent;
|
|
1
|
+
/* eslint-env browser */
|
|
2
|
+
/* eslint-disable max-len */
|
|
3
|
+
import React, { useEffect, useRef, FC } from 'react';
|
|
4
|
+
import { setTabbedContent, isBelowViewportLimit, destroyTabs } from '@aarhus-university/au-designsystem-delphinus/source/js/components/tabs';
|
|
5
|
+
|
|
6
|
+
let windowInnerWidth = 0;
|
|
7
|
+
let tabbedObject: ITabbedObject | null = null;
|
|
8
|
+
|
|
9
|
+
const AUTabbedContentComponent: FC<AUTabbedContentComponentProps> = ({
|
|
10
|
+
tabKey,
|
|
11
|
+
tabs,
|
|
12
|
+
children,
|
|
13
|
+
focus,
|
|
14
|
+
initial,
|
|
15
|
+
lang,
|
|
16
|
+
callback,
|
|
17
|
+
withRouter,
|
|
18
|
+
classNames,
|
|
19
|
+
}: AUTabbedContentComponentProps) => {
|
|
20
|
+
const tabsElement = useRef<HTMLDivElement>(null);
|
|
21
|
+
|
|
22
|
+
const setTabs = () => {
|
|
23
|
+
if (tabbedObject != null) {
|
|
24
|
+
if (isBelowViewportLimit(tabbedObject.domElement.classList)) {
|
|
25
|
+
if (!tabbedObject.rendered) {
|
|
26
|
+
setTabbedContent(tabKey as number, tabbedObject.domElement, initial, focus, callback);
|
|
27
|
+
tabbedObject.rendered = true;
|
|
28
|
+
}
|
|
29
|
+
} else if (tabbedObject.rendered) {
|
|
30
|
+
destroyTabs(tabbedObject.domElement);
|
|
31
|
+
tabbedObject.rendered = false;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
if (!withRouter) {
|
|
38
|
+
tabbedObject = {
|
|
39
|
+
domElement: tabsElement.current as HTMLElement,
|
|
40
|
+
rendered: false,
|
|
41
|
+
};
|
|
42
|
+
setTabs();
|
|
43
|
+
windowInnerWidth = window.innerWidth;
|
|
44
|
+
window.addEventListener('resize', () => {
|
|
45
|
+
if (windowInnerWidth > 0 && window.innerWidth !== windowInnerWidth) {
|
|
46
|
+
windowInnerWidth = window.innerWidth;
|
|
47
|
+
setTabs();
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}, []);
|
|
52
|
+
|
|
53
|
+
// eslint-disable-next-line jsx-a11y/control-has-associated-label
|
|
54
|
+
const renderTabs = tabs.map((tab: ITabbedTab) => <a key={tab.href} href={tab.href} className="nav__item" data-gtm={tab.dataGtm} dangerouslySetInnerHTML={{ __html: tab.text }} />);
|
|
55
|
+
|
|
56
|
+
return (
|
|
57
|
+
<div ref={tabsElement} className={classNames}>
|
|
58
|
+
<div className="nav nav--has-active-item">
|
|
59
|
+
<div className="nav__items">
|
|
60
|
+
{renderTabs}
|
|
61
|
+
</div>
|
|
62
|
+
<button type="button" className="nav__toggle">{lang === 'da' ? 'Mere' : 'More'}</button>
|
|
63
|
+
</div>
|
|
64
|
+
{children}
|
|
65
|
+
</div>
|
|
66
|
+
);
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
AUTabbedContentComponent.defaultProps = {
|
|
70
|
+
tabKey: 0,
|
|
71
|
+
children: null,
|
|
72
|
+
tabContent: null,
|
|
73
|
+
focus: true,
|
|
74
|
+
initial: 0,
|
|
75
|
+
lang: 'da',
|
|
76
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
77
|
+
callback: () => { },
|
|
78
|
+
withRouter: false,
|
|
79
|
+
classNames: 'tabbed-content',
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
AUTabbedContentComponent.displayName = 'AUTabbedContentComponent';
|
|
83
|
+
export default AUTabbedContentComponent;
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import React, { useLayoutEffect, useRef, FC } from 'react';
|
|
2
|
-
import { setResponsiveTable } from '@aarhus-university/au-designsystem-delphinus/source/js/components/table';
|
|
3
|
-
|
|
4
|
-
const AUTableComponent: FC<AUTableComponentProps> = ({
|
|
5
|
-
children,
|
|
6
|
-
className,
|
|
7
|
-
}: AUTableComponentProps) => {
|
|
8
|
-
const tableRef = useRef<HTMLTableElement>(null);
|
|
9
|
-
useLayoutEffect(() => {
|
|
10
|
-
const element = tableRef.current;
|
|
11
|
-
if (element) {
|
|
12
|
-
setResponsiveTable(element);
|
|
13
|
-
}
|
|
14
|
-
}, []);
|
|
15
|
-
|
|
16
|
-
return (
|
|
17
|
-
<table ref={tableRef} className={className}>
|
|
18
|
-
{children}
|
|
19
|
-
</table>
|
|
20
|
-
);
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
AUTableComponent.displayName = 'AUTableComponent';
|
|
24
|
-
export default AUTableComponent;
|
|
1
|
+
import React, { useLayoutEffect, useRef, FC } from 'react';
|
|
2
|
+
import { setResponsiveTable } from '@aarhus-university/au-designsystem-delphinus/source/js/components/table';
|
|
3
|
+
|
|
4
|
+
const AUTableComponent: FC<AUTableComponentProps> = ({
|
|
5
|
+
children,
|
|
6
|
+
className,
|
|
7
|
+
}: AUTableComponentProps) => {
|
|
8
|
+
const tableRef = useRef<HTMLTableElement>(null);
|
|
9
|
+
useLayoutEffect(() => {
|
|
10
|
+
const element = tableRef.current;
|
|
11
|
+
if (element) {
|
|
12
|
+
setResponsiveTable(element);
|
|
13
|
+
}
|
|
14
|
+
}, []);
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<table ref={tableRef} className={className}>
|
|
18
|
+
{children}
|
|
19
|
+
</table>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
AUTableComponent.displayName = 'AUTableComponent';
|
|
24
|
+
export default AUTableComponent;
|