@aarhus-university/au-lib-react-components 11.3.2 → 11.3.3

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.
Files changed (96) hide show
  1. package/.eslintrc.js +34 -34
  2. package/.storybook/main.js +20 -20
  3. package/.storybook/preview.js +17 -17
  4. package/README.md +19 -19
  5. package/__tests__/jest/AUButtonComponent.test.tsx +165 -165
  6. package/__tests__/jest/AUErrorComponent.test.tsx +142 -142
  7. package/__tests__/jest/AUModalComponent.test.tsx +186 -186
  8. package/__tests__/jest/AUNotificationComponent.test.tsx +115 -115
  9. package/__tests__/jest/AUSpinnerComponent.test.tsx +57 -57
  10. package/__tests__/jest/AUToolbarComponent.test.tsx +46 -46
  11. package/__tests__/jest/context.test.ts +25 -25
  12. package/__tests__/jest/helpers.test.ts +15 -15
  13. package/__tests__/jest/setupTests.ts +2 -2
  14. package/babel.config.js +8 -8
  15. package/build/umd/all.css +2 -2
  16. package/build/umd/all.js +1 -1
  17. package/build/umd/alphabox.js +1 -1
  18. package/build/umd/databox.js +1 -1
  19. package/build/umd/diagramme.js +1 -1
  20. package/build/umd/flowbox.js +1 -1
  21. package/build/umd/universe.js +1 -1
  22. package/build-storybook.log +367 -367
  23. package/package.json +114 -114
  24. package/src/components/AUAlertComponent.tsx +70 -70
  25. package/src/components/AUAutoSuggestComponent.js +158 -158
  26. package/src/components/AUButtonComponent.tsx +84 -84
  27. package/src/components/AUCalendarComponent.tsx +493 -493
  28. package/src/components/AUContentToggleComponent.tsx +47 -47
  29. package/src/components/AUDatepickerComponent.tsx +121 -121
  30. package/src/components/AUErrorComponent.tsx +78 -78
  31. package/src/components/AUMobilePrefixComponent.tsx +15 -15
  32. package/src/components/AUModalComponent.tsx +68 -68
  33. package/src/components/AUNotificationComponent.tsx +43 -43
  34. package/src/components/AUReceiptComponent.tsx +33 -33
  35. package/src/components/AUSpinnerComponent.tsx +36 -36
  36. package/src/components/AUStepComponent.tsx +47 -41
  37. package/src/components/AUSubNavComponent.tsx +48 -48
  38. package/src/components/AUSubmitButtonContainerComponent.tsx +29 -29
  39. package/src/components/AUTabbedContentComponent.tsx +145 -145
  40. package/src/components/AUTableComponent.tsx +24 -24
  41. package/src/components/AUToastComponent.tsx +104 -104
  42. package/src/components/AUToolbarComponent.tsx +101 -101
  43. package/src/components/AUTruncatorComponent.tsx +129 -129
  44. package/src/components/wrapping/AUEmbedComponent.js +47 -47
  45. package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
  46. package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
  47. package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
  48. package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
  49. package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
  50. package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
  51. package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
  52. package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
  53. package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
  54. package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
  55. package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
  56. package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
  57. package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
  58. package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
  59. package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
  60. package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
  61. package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
  62. package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
  63. package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
  64. package/src/layout-2016/lib/all.js +3 -3
  65. package/src/layout-2016/lib/au-alphabox.js +100 -100
  66. package/src/layout-2016/lib/au-databox.js +400 -400
  67. package/src/layout-2016/lib/au-diagramme.js +85 -85
  68. package/src/layout-2016/lib/au-flowbox.js +93 -93
  69. package/src/layout-2016/lib/universe.js +9 -9
  70. package/src/lib/context.tsx +51 -51
  71. package/src/lib/dates.ts +50 -50
  72. package/src/lib/helpers.ts +208 -208
  73. package/src/lib/hooks.ts +75 -75
  74. package/src/lib/i18n.ts +600 -600
  75. package/src/lib/portals.tsx +119 -119
  76. package/src/lib/tracking.ts +69 -69
  77. package/src/lib/wrapping.ts +21 -21
  78. package/src/styles/_settings.scss +10 -10
  79. package/src/styles/alphabox.scss +222 -222
  80. package/src/styles/app.scss +7 -7
  81. package/src/styles/autosuggest.scss +57 -57
  82. package/src/styles/databox.scss +563 -563
  83. package/src/styles/diagramme.scss +119 -119
  84. package/src/styles/flowbox.scss +72 -72
  85. package/src/styles/maps.scss +395 -395
  86. package/stories/AUButtonComponent.stories.tsx +127 -127
  87. package/stories/AUContentToggleComponent.stories.tsx +63 -63
  88. package/stories/AUErrorComponent.stories.tsx +98 -98
  89. package/stories/AUModalComponent.stories.tsx +83 -83
  90. package/stories/AUNotificationComponent.stories.tsx +116 -116
  91. package/stories/AUSpinnerComponent.stories.tsx +41 -41
  92. package/stories/AUStepComponent.stories.tsx +40 -40
  93. package/stories/AUToolbarComponent.stories.tsx +326 -326
  94. package/stories/lib/helpers.tsx +128 -128
  95. package/tsconfig.json +46 -46
  96. package/webpack.config.js +89 -89
@@ -1,142 +1,142 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import React from 'react';
3
- import { render } from '@testing-library/react';
4
- import { SerializedError } from '@reduxjs/toolkit';
5
- import { FetchBaseQueryError } from '@reduxjs/toolkit/dist/query';
6
- // import userEvent from '@testing-library/user-event';
7
- import '@testing-library/jest-dom';
8
- import AUErrorComponent from '../../src/components/AUErrorComponent';
9
-
10
- const auError: AU.IError = {
11
- header: 'Our own custom error',
12
- message: 'With a nice header and descriptive error message',
13
- status: 500,
14
- };
15
-
16
- const fetchError1: FetchBaseQueryError = {
17
- status: 'FETCH_ERROR',
18
- error: 'Sum Ting Wong',
19
- };
20
-
21
- const fetchError2: FetchBaseQueryError = {
22
- status: 500,
23
- data: {
24
- status: 'Error',
25
- message: 'Sum Ting Wong',
26
- },
27
- };
28
-
29
- const serializedError: SerializedError = {
30
- code: '500',
31
- message: 'Sum Ting Wong',
32
- name: 'Some kind of error',
33
- stack: 'Some kind of stack trace',
34
- };
35
-
36
- describe('<AUErrorComponent />', () => {
37
- it('renders an AU custom error without a status code', () => {
38
- const { container } = render(
39
- <AUErrorComponent
40
- error={auError}
41
- />,
42
- );
43
-
44
- const header = container.querySelector('.notification__header');
45
- const p = container.querySelector('.notification__content p');
46
- expect(header).toBeInTheDocument();
47
- expect(p?.innerHTML).toBe(auError.message);
48
- });
49
-
50
- it('renders an AU custom error with a status code', () => {
51
- const { container } = render(
52
- <AUErrorComponent
53
- error={auError}
54
- withStatus
55
- />,
56
- );
57
-
58
- const header = container.querySelector('.notification__header');
59
- expect(header?.innerHTML).toBe(`${auError.status}: ${auError.header}`);
60
- });
61
-
62
- it('renders a fetch error without a status code', () => {
63
- const { container } = render(
64
- <AUErrorComponent
65
- fetchError={fetchError1}
66
- />,
67
- );
68
-
69
- const header = container.querySelector('.notification__header');
70
- const p = container.querySelector('.notification__content p');
71
- expect(header).toBe(null);
72
- expect(p?.innerHTML).toBe(fetchError1.error);
73
- });
74
-
75
- it('renders a fetch error with a status code', () => {
76
- const { container } = render(
77
- <AUErrorComponent
78
- fetchError={fetchError1}
79
- withStatus
80
- />,
81
- );
82
-
83
- const header = container.querySelector('.notification__header');
84
- const p = container.querySelector('.notification__content p');
85
- expect(header?.innerHTML).toBe(fetchError1.status);
86
- expect(p?.innerHTML).toBe(fetchError1.error);
87
- });
88
-
89
- it('renders a fetch error with stringified text without a status code', () => {
90
- const { container } = render(
91
- <AUErrorComponent
92
- fetchError={fetchError2}
93
- />,
94
- );
95
-
96
- const header = container.querySelector('.notification__header');
97
- const p = container.querySelector('.notification__content p');
98
- expect(header).toBe(null);
99
- expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
100
- });
101
-
102
- it('renders a fetch error with stringified text with a status code', () => {
103
- const { container } = render(
104
- <AUErrorComponent
105
- fetchError={fetchError2}
106
- withStatus
107
- />,
108
- );
109
-
110
- const header = container.querySelector('.notification__header');
111
- const p = container.querySelector('.notification__content p');
112
- expect(header?.innerHTML).toBe(`${fetchError2.status}`);
113
- expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
114
- });
115
-
116
- it('renders a serialized error with without a status code', () => {
117
- const { container } = render(
118
- <AUErrorComponent
119
- serializedError={serializedError}
120
- />,
121
- );
122
-
123
- const header = container.querySelector('.notification__header');
124
- const p = container.querySelector('.notification__content p');
125
- expect(header).toBe(null);
126
- expect(p?.innerHTML).toBe(serializedError.message);
127
- });
128
-
129
- it('renders a serialized error with a status code', () => {
130
- const { container } = render(
131
- <AUErrorComponent
132
- serializedError={serializedError}
133
- withStatus
134
- />,
135
- );
136
-
137
- const header = container.querySelector('.notification__header');
138
- const p = container.querySelector('.notification__content p');
139
- expect(header?.innerHTML).toBe(serializedError.code);
140
- expect(p?.innerHTML).toBe(serializedError.message);
141
- });
142
- });
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import React from 'react';
3
+ import { render } from '@testing-library/react';
4
+ import { SerializedError } from '@reduxjs/toolkit';
5
+ import { FetchBaseQueryError } from '@reduxjs/toolkit/dist/query';
6
+ // import userEvent from '@testing-library/user-event';
7
+ import '@testing-library/jest-dom';
8
+ import AUErrorComponent from '../../src/components/AUErrorComponent';
9
+
10
+ const auError: AU.IError = {
11
+ header: 'Our own custom error',
12
+ message: 'With a nice header and descriptive error message',
13
+ status: 500,
14
+ };
15
+
16
+ const fetchError1: FetchBaseQueryError = {
17
+ status: 'FETCH_ERROR',
18
+ error: 'Sum Ting Wong',
19
+ };
20
+
21
+ const fetchError2: FetchBaseQueryError = {
22
+ status: 500,
23
+ data: {
24
+ status: 'Error',
25
+ message: 'Sum Ting Wong',
26
+ },
27
+ };
28
+
29
+ const serializedError: SerializedError = {
30
+ code: '500',
31
+ message: 'Sum Ting Wong',
32
+ name: 'Some kind of error',
33
+ stack: 'Some kind of stack trace',
34
+ };
35
+
36
+ describe('<AUErrorComponent />', () => {
37
+ it('renders an AU custom error without a status code', () => {
38
+ const { container } = render(
39
+ <AUErrorComponent
40
+ error={auError}
41
+ />,
42
+ );
43
+
44
+ const header = container.querySelector('.notification__header');
45
+ const p = container.querySelector('.notification__content p');
46
+ expect(header).toBeInTheDocument();
47
+ expect(p?.innerHTML).toBe(auError.message);
48
+ });
49
+
50
+ it('renders an AU custom error with a status code', () => {
51
+ const { container } = render(
52
+ <AUErrorComponent
53
+ error={auError}
54
+ withStatus
55
+ />,
56
+ );
57
+
58
+ const header = container.querySelector('.notification__header');
59
+ expect(header?.innerHTML).toBe(`${auError.status}: ${auError.header}`);
60
+ });
61
+
62
+ it('renders a fetch error without a status code', () => {
63
+ const { container } = render(
64
+ <AUErrorComponent
65
+ fetchError={fetchError1}
66
+ />,
67
+ );
68
+
69
+ const header = container.querySelector('.notification__header');
70
+ const p = container.querySelector('.notification__content p');
71
+ expect(header).toBe(null);
72
+ expect(p?.innerHTML).toBe(fetchError1.error);
73
+ });
74
+
75
+ it('renders a fetch error with a status code', () => {
76
+ const { container } = render(
77
+ <AUErrorComponent
78
+ fetchError={fetchError1}
79
+ withStatus
80
+ />,
81
+ );
82
+
83
+ const header = container.querySelector('.notification__header');
84
+ const p = container.querySelector('.notification__content p');
85
+ expect(header?.innerHTML).toBe(fetchError1.status);
86
+ expect(p?.innerHTML).toBe(fetchError1.error);
87
+ });
88
+
89
+ it('renders a fetch error with stringified text without a status code', () => {
90
+ const { container } = render(
91
+ <AUErrorComponent
92
+ fetchError={fetchError2}
93
+ />,
94
+ );
95
+
96
+ const header = container.querySelector('.notification__header');
97
+ const p = container.querySelector('.notification__content p');
98
+ expect(header).toBe(null);
99
+ expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
100
+ });
101
+
102
+ it('renders a fetch error with stringified text with a status code', () => {
103
+ const { container } = render(
104
+ <AUErrorComponent
105
+ fetchError={fetchError2}
106
+ withStatus
107
+ />,
108
+ );
109
+
110
+ const header = container.querySelector('.notification__header');
111
+ const p = container.querySelector('.notification__content p');
112
+ expect(header?.innerHTML).toBe(`${fetchError2.status}`);
113
+ expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
114
+ });
115
+
116
+ it('renders a serialized error with without a status code', () => {
117
+ const { container } = render(
118
+ <AUErrorComponent
119
+ serializedError={serializedError}
120
+ />,
121
+ );
122
+
123
+ const header = container.querySelector('.notification__header');
124
+ const p = container.querySelector('.notification__content p');
125
+ expect(header).toBe(null);
126
+ expect(p?.innerHTML).toBe(serializedError.message);
127
+ });
128
+
129
+ it('renders a serialized error with a status code', () => {
130
+ const { container } = render(
131
+ <AUErrorComponent
132
+ serializedError={serializedError}
133
+ withStatus
134
+ />,
135
+ );
136
+
137
+ const header = container.querySelector('.notification__header');
138
+ const p = container.querySelector('.notification__content p');
139
+ expect(header?.innerHTML).toBe(serializedError.code);
140
+ expect(p?.innerHTML).toBe(serializedError.message);
141
+ });
142
+ });
@@ -1,186 +1,186 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import React, {
3
- ReactNode, ReactPortal, useRef, useState,
4
- } from 'react';
5
- import ReactDOM from 'react-dom';
6
- import { fireEvent, render } from '@testing-library/react';
7
- // import userEvent from '@testing-library/user-event';
8
- import '@testing-library/jest-dom';
9
- import AUModalComponent from '../../src/components/AUModalComponent';
10
- import AUButtonComponent from '../../src/components/AUButtonComponent';
11
-
12
- const ModalWrapper: React.FC = () => {
13
- const [showModal, setShowModal] = useState(false);
14
- const btnRef = useRef<HTMLButtonElement>(null);
15
- return (
16
- <>
17
- <AUButtonComponent
18
- label="Open modal"
19
- btnRef={btnRef}
20
- onClick={() => {
21
- setShowModal(true);
22
- }}
23
- />
24
- <AUModalComponent
25
- domId="test-modal"
26
- show={showModal}
27
- sender={btnRef.current}
28
- onClose={() => setShowModal(false)}
29
- >
30
- <>
31
- <h2 className="modal-view__header theme--dark">
32
- Header
33
- </h2>
34
- <div className="modal-view__content">
35
- <p>Content</p>
36
- </div>
37
- </>
38
- </AUModalComponent>
39
- </>
40
- );
41
- };
42
-
43
- describe('<AUModalComponent />', () => {
44
- const fakeBtn = document.createElement('button');
45
- const oldCreatePortal = ReactDOM.createPortal;
46
- beforeAll(async () => {
47
- ReactDOM.createPortal = (node: ReactNode): ReactPortal => node as ReactPortal;
48
- });
49
-
50
- afterAll(() => {
51
- ReactDOM.createPortal = oldCreatePortal;
52
- });
53
- it('renders a visible modal view with some content', () => {
54
- const { container } = render(
55
- <div className="page">
56
- <AUModalComponent
57
- domId="test-modal"
58
- show
59
- sender={fakeBtn}
60
- >
61
- <>
62
- <h2 className="modal-view__header theme--dark">
63
- Header
64
- </h2>
65
- <div className="modal-view__content">
66
- <p>Content</p>
67
- </div>
68
- </>
69
- </AUModalComponent>
70
- </div>,
71
- );
72
-
73
- const modal = container.querySelector('.modal-view.modal-view--visible');
74
- expect(modal).toBeInTheDocument();
75
- });
76
-
77
- it('renders a modal view with domId "test-modal" but it is not visible', () => {
78
- const { container } = render(
79
- <div className="page">
80
- <AUModalComponent
81
- domId="test-modal"
82
- show={false}
83
- sender={fakeBtn}
84
- >
85
- <>
86
- <h2 className="modal-view__header theme--dark">
87
- Header
88
- </h2>
89
- <div className="modal-view__content">
90
- <p>Content</p>
91
- </div>
92
- </>
93
- </AUModalComponent>
94
- </div>,
95
- );
96
-
97
- const modal = container.querySelector('#test-modal');
98
- expect(modal).toBeInTheDocument();
99
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
100
- });
101
-
102
- it('renders a non-visible modal view until button is clicked', () => {
103
- const { container, getByText } = render(
104
- <div className="page">
105
- <ModalWrapper />
106
- </div>,
107
- );
108
-
109
- const modal = container.querySelector('.modal-view');
110
- const btn = getByText('Open modal');
111
- expect(modal).toBeInTheDocument();
112
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
113
- fireEvent.click(btn);
114
- expect(modal?.classList.contains('modal-view--visible')).toBe(true);
115
- });
116
-
117
- it('can be closed by clicking outside the modal', () => {
118
- const { container } = render(
119
- <div className="page">
120
- <AUModalComponent
121
- domId="test-modal"
122
- show
123
- sender={fakeBtn}
124
- >
125
- <>
126
- <h2 className="modal-view__header theme--dark">
127
- Header
128
- </h2>
129
- <div className="modal-view__content">
130
- <p>Content</p>
131
- </div>
132
- </>
133
- </AUModalComponent>
134
- </div>,
135
- );
136
-
137
- const modal = container.querySelector('.modal-view.modal-view--visible');
138
- expect(modal).toBeInTheDocument();
139
- fireEvent.click(modal as HTMLElement);
140
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
141
- });
142
-
143
- it('can be closed by pressing ESC', () => {
144
- const { container } = render(
145
- <div className="page">
146
- <AUModalComponent
147
- domId="test-modal"
148
- show
149
- sender={fakeBtn}
150
- >
151
- <>
152
- <h2 className="modal-view__header theme--dark">
153
- Header
154
- </h2>
155
- <div className="modal-view__content">
156
- <p>Content</p>
157
- </div>
158
- </>
159
- </AUModalComponent>
160
- </div>,
161
- );
162
-
163
- const modal = container.querySelector('.modal-view.modal-view--visible');
164
- expect(modal).toBeInTheDocument();
165
- fireEvent.keyUp(window, { key: 'Escape', code: 'Escape', charCode: 27 });
166
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
167
- });
168
-
169
- it('can be closed by clicking the close button', () => {
170
- const { container, getByText } = render(
171
- <div className="page">
172
- <ModalWrapper />
173
- </div>,
174
- );
175
-
176
- const modal = container.querySelector('.modal-view');
177
- const btn = getByText('Open modal');
178
- const closeBtn = container.querySelector('.modal-view__close');
179
- expect(modal).toBeInTheDocument();
180
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
181
- fireEvent.click(btn);
182
- expect(modal?.classList.contains('modal-view--visible')).toBe(true);
183
- fireEvent.click(closeBtn as HTMLButtonElement);
184
- expect(modal?.classList.contains('modal-view--visible')).toBe(false);
185
- });
186
- });
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import React, {
3
+ ReactNode, ReactPortal, useRef, useState,
4
+ } from 'react';
5
+ import ReactDOM from 'react-dom';
6
+ import { fireEvent, render } from '@testing-library/react';
7
+ // import userEvent from '@testing-library/user-event';
8
+ import '@testing-library/jest-dom';
9
+ import AUModalComponent from '../../src/components/AUModalComponent';
10
+ import AUButtonComponent from '../../src/components/AUButtonComponent';
11
+
12
+ const ModalWrapper: React.FC = () => {
13
+ const [showModal, setShowModal] = useState(false);
14
+ const btnRef = useRef<HTMLButtonElement>(null);
15
+ return (
16
+ <>
17
+ <AUButtonComponent
18
+ label="Open modal"
19
+ btnRef={btnRef}
20
+ onClick={() => {
21
+ setShowModal(true);
22
+ }}
23
+ />
24
+ <AUModalComponent
25
+ domId="test-modal"
26
+ show={showModal}
27
+ sender={btnRef.current}
28
+ onClose={() => setShowModal(false)}
29
+ >
30
+ <>
31
+ <h2 className="modal-view__header theme--dark">
32
+ Header
33
+ </h2>
34
+ <div className="modal-view__content">
35
+ <p>Content</p>
36
+ </div>
37
+ </>
38
+ </AUModalComponent>
39
+ </>
40
+ );
41
+ };
42
+
43
+ describe('<AUModalComponent />', () => {
44
+ const fakeBtn = document.createElement('button');
45
+ const oldCreatePortal = ReactDOM.createPortal;
46
+ beforeAll(async () => {
47
+ ReactDOM.createPortal = (node: ReactNode): ReactPortal => node as ReactPortal;
48
+ });
49
+
50
+ afterAll(() => {
51
+ ReactDOM.createPortal = oldCreatePortal;
52
+ });
53
+ it('renders a visible modal view with some content', () => {
54
+ const { container } = render(
55
+ <div className="page">
56
+ <AUModalComponent
57
+ domId="test-modal"
58
+ show
59
+ sender={fakeBtn}
60
+ >
61
+ <>
62
+ <h2 className="modal-view__header theme--dark">
63
+ Header
64
+ </h2>
65
+ <div className="modal-view__content">
66
+ <p>Content</p>
67
+ </div>
68
+ </>
69
+ </AUModalComponent>
70
+ </div>,
71
+ );
72
+
73
+ const modal = container.querySelector('.modal-view.modal-view--visible');
74
+ expect(modal).toBeInTheDocument();
75
+ });
76
+
77
+ it('renders a modal view with domId "test-modal" but it is not visible', () => {
78
+ const { container } = render(
79
+ <div className="page">
80
+ <AUModalComponent
81
+ domId="test-modal"
82
+ show={false}
83
+ sender={fakeBtn}
84
+ >
85
+ <>
86
+ <h2 className="modal-view__header theme--dark">
87
+ Header
88
+ </h2>
89
+ <div className="modal-view__content">
90
+ <p>Content</p>
91
+ </div>
92
+ </>
93
+ </AUModalComponent>
94
+ </div>,
95
+ );
96
+
97
+ const modal = container.querySelector('#test-modal');
98
+ expect(modal).toBeInTheDocument();
99
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
100
+ });
101
+
102
+ it('renders a non-visible modal view until button is clicked', () => {
103
+ const { container, getByText } = render(
104
+ <div className="page">
105
+ <ModalWrapper />
106
+ </div>,
107
+ );
108
+
109
+ const modal = container.querySelector('.modal-view');
110
+ const btn = getByText('Open modal');
111
+ expect(modal).toBeInTheDocument();
112
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
113
+ fireEvent.click(btn);
114
+ expect(modal?.classList.contains('modal-view--visible')).toBe(true);
115
+ });
116
+
117
+ it('can be closed by clicking outside the modal', () => {
118
+ const { container } = render(
119
+ <div className="page">
120
+ <AUModalComponent
121
+ domId="test-modal"
122
+ show
123
+ sender={fakeBtn}
124
+ >
125
+ <>
126
+ <h2 className="modal-view__header theme--dark">
127
+ Header
128
+ </h2>
129
+ <div className="modal-view__content">
130
+ <p>Content</p>
131
+ </div>
132
+ </>
133
+ </AUModalComponent>
134
+ </div>,
135
+ );
136
+
137
+ const modal = container.querySelector('.modal-view.modal-view--visible');
138
+ expect(modal).toBeInTheDocument();
139
+ fireEvent.click(modal as HTMLElement);
140
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
141
+ });
142
+
143
+ it('can be closed by pressing ESC', () => {
144
+ const { container } = render(
145
+ <div className="page">
146
+ <AUModalComponent
147
+ domId="test-modal"
148
+ show
149
+ sender={fakeBtn}
150
+ >
151
+ <>
152
+ <h2 className="modal-view__header theme--dark">
153
+ Header
154
+ </h2>
155
+ <div className="modal-view__content">
156
+ <p>Content</p>
157
+ </div>
158
+ </>
159
+ </AUModalComponent>
160
+ </div>,
161
+ );
162
+
163
+ const modal = container.querySelector('.modal-view.modal-view--visible');
164
+ expect(modal).toBeInTheDocument();
165
+ fireEvent.keyUp(window, { key: 'Escape', code: 'Escape', charCode: 27 });
166
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
167
+ });
168
+
169
+ it('can be closed by clicking the close button', () => {
170
+ const { container, getByText } = render(
171
+ <div className="page">
172
+ <ModalWrapper />
173
+ </div>,
174
+ );
175
+
176
+ const modal = container.querySelector('.modal-view');
177
+ const btn = getByText('Open modal');
178
+ const closeBtn = container.querySelector('.modal-view__close');
179
+ expect(modal).toBeInTheDocument();
180
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
181
+ fireEvent.click(btn);
182
+ expect(modal?.classList.contains('modal-view--visible')).toBe(true);
183
+ fireEvent.click(closeBtn as HTMLButtonElement);
184
+ expect(modal?.classList.contains('modal-view--visible')).toBe(false);
185
+ });
186
+ });