@aarhus-university/au-lib-react-components 10.5.0 → 10.8.0

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 CHANGED
@@ -29,5 +29,6 @@ module.exports = {
29
29
  ignorePatterns: ['stories'],
30
30
  globals: {
31
31
  AU: true,
32
+ $: true,
32
33
  },
33
34
  };
@@ -1,8 +1,21 @@
1
+ const path = require('path');
2
+
1
3
  module.exports = {
2
4
  "stories": ["../**/*.stories.mdx", "../**/*.stories.@(js|jsx|ts|tsx)"],
3
5
  "addons": ["@storybook/addon-links", "@storybook/addon-essentials", "@storybook/addon-interactions"],
4
6
  "framework": "@storybook/react",
5
7
  core: {
6
8
  builder: "webpack5"
7
- }
9
+ },
10
+ webpackFinal: async (config) => {
11
+ config.module.rules.push({
12
+ test: /\.(ts|js)x?$/,
13
+ include: path.resolve(__dirname, '../node_modules/@aarhus-university/au-designsystem-delphinus/source'),
14
+ use: {
15
+ loader: 'babel-loader',
16
+ },
17
+ });
18
+ return config;
19
+ // return { ...config, module: { ...config.module, rules: custom.module.rules } };
20
+ },
8
21
  };
@@ -44,18 +44,20 @@ describe('<AUButtonComponent />', () => {
44
44
  expect(button).toBeEnabled();
45
45
  });
46
46
 
47
- it('renders a small dimmed button', () => {
47
+ it('renders a small dimmed button with an extra classname', () => {
48
48
  const { container } = render(
49
49
  <AUButtonComponent
50
50
  label="Min knap"
51
51
  size="small"
52
52
  type="dimmed"
53
+ classNames={['fubar']}
53
54
  />,
54
55
  );
55
56
 
56
57
  const classList = container?.querySelector('button')?.classList;
57
58
  expect(classList?.contains('button--small')).toBe(true);
58
59
  expect(classList?.contains('button--dimmed')).toBe(true);
60
+ expect(classList?.contains('fubar')).toBe(true);
59
61
  });
60
62
 
61
63
  it('renders a default sized text button with a narwhal icon to the right', () => {
@@ -75,7 +77,7 @@ describe('<AUButtonComponent />', () => {
75
77
  expect(classList?.contains('button--text')).toBe(true);
76
78
  expect(classList?.contains('button--icon')).toBe(true);
77
79
  expect(classList?.contains('button--icon--right')).toBe(true);
78
- expect(button?.getAttribute('data-icon')).toBe('');
80
+ expect(button?.getAttribute('data-icon')).toBe('');
79
81
  });
80
82
 
81
83
  it('renders a button with a narwhal icon with a hidden label', () => {
@@ -91,7 +93,7 @@ describe('<AUButtonComponent />', () => {
91
93
  const classList = button?.classList;
92
94
  expect(classList?.contains('button--icon')).toBe(true);
93
95
  expect(classList?.contains('button--icon--hide-label')).toBe(true);
94
- expect(button?.getAttribute('data-icon')).toBe('');
96
+ expect(button?.getAttribute('data-icon')).toBe('');
95
97
  expect(button?.getAttribute('title')).toBe('Min knap');
96
98
  });
97
99
 
@@ -124,7 +126,7 @@ describe('<AUButtonComponent />', () => {
124
126
  expect(classList?.contains('button--confirmable-action')).toBe(true);
125
127
  expect(classList?.contains('button--icon')).toBe(true);
126
128
  expect(classList?.contains('button--icon--hide-label')).toBe(true);
127
- expect(button?.getAttribute('data-icon')).toBe('');
129
+ expect(button?.getAttribute('data-icon')).toBe('');
128
130
  expect(button?.getAttribute('title')).toBe('Min knap');
129
131
  });
130
132
 
@@ -0,0 +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
+ <div className="modal-view__body">
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
+ </div>
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
+ <div className="modal-view__body">
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
+ </div>
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
+ <div className="modal-view__body">
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
+ </div>
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
+ <div className="modal-view__body">
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
+ </div>
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
+ <div className="modal-view__body">
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
+ </div>
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
+ });
@@ -0,0 +1,115 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import React from 'react';
3
+ import { render } from '@testing-library/react';
4
+ // import userEvent from '@testing-library/user-event';
5
+ import '@testing-library/jest-dom';
6
+ import AUNotificationComponent from '../../src/components/AUNotificationComponent';
7
+ import AUButtonComponent from '../../src/components/AUButtonComponent';
8
+
9
+ describe('<AUNotification />', () => {
10
+ it('renders a notification without a header but with a paragraph', () => {
11
+ const { container } = render(
12
+ <AUNotificationComponent
13
+ content={[
14
+ <p>This is a notification</p>,
15
+ ]}
16
+ />,
17
+ );
18
+
19
+ expect(container).toBeInTheDocument();
20
+ const header = container.querySelector('.notification__header');
21
+ const p = container.querySelector('p');
22
+ expect(header).toBe(null);
23
+ expect(p?.innerHTML).toBe('This is a notification');
24
+ });
25
+
26
+ it('renders a notification with a header and three paragraphs', () => {
27
+ const { container } = render(
28
+ <AUNotificationComponent
29
+ header="This is a header"
30
+ content={[
31
+ <p>This is a notification</p>,
32
+ <p>With multiple paragraphs</p>,
33
+ <p>Awesome sauce</p>,
34
+ ]}
35
+ />,
36
+ );
37
+
38
+ expect(container).toBeInTheDocument();
39
+ const header = container.querySelector('.notification__header');
40
+ const p = container.querySelectorAll('p');
41
+ expect(header?.innerHTML).toBe('This is a header');
42
+ expect(p.length).toBe(3);
43
+ });
44
+
45
+ it('renders a notification with an action', () => {
46
+ const { container } = render(
47
+ <AUNotificationComponent
48
+ header="This is a header"
49
+ content={[
50
+ <p>This is a notification</p>,
51
+ ]}
52
+ actions={[
53
+ <AUButtonComponent label="Action button" />,
54
+ ]}
55
+ />,
56
+ );
57
+
58
+ const actions = container.querySelector('.notification__actions');
59
+ expect(actions).toBeInTheDocument();
60
+ });
61
+
62
+ it('renders a warning notification', () => {
63
+ const { container } = render(
64
+ <AUNotificationComponent
65
+ type="warning"
66
+ header="This is a header"
67
+ content={[
68
+ <p>This is a notification</p>,
69
+ ]}
70
+ actions={[
71
+ <AUButtonComponent label="Action button" />,
72
+ ]}
73
+ />,
74
+ );
75
+
76
+ const actions = container.querySelector('.notification--warning');
77
+ expect(actions).toBeInTheDocument();
78
+ });
79
+
80
+ it('renders a attention notification', () => {
81
+ const { container } = render(
82
+ <AUNotificationComponent
83
+ type="attention"
84
+ header="This is a header"
85
+ content={[
86
+ <p>This is a notification</p>,
87
+ ]}
88
+ actions={[
89
+ <AUButtonComponent label="Action button" />,
90
+ ]}
91
+ />,
92
+ );
93
+
94
+ const actions = container.querySelector('.notification--attention');
95
+ expect(actions).toBeInTheDocument();
96
+ });
97
+
98
+ it('renders a confirm notification', () => {
99
+ const { container } = render(
100
+ <AUNotificationComponent
101
+ type="confirm"
102
+ header="This is a header"
103
+ content={[
104
+ <p>This is a notification</p>,
105
+ ]}
106
+ actions={[
107
+ <AUButtonComponent label="Action button" />,
108
+ ]}
109
+ />,
110
+ );
111
+
112
+ const actions = container.querySelector('.notification--confirm');
113
+ expect(actions).toBeInTheDocument();
114
+ });
115
+ });
@@ -0,0 +1,57 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import React from 'react';
3
+ import { render } from '@testing-library/react';
4
+ // import userEvent from '@testing-library/user-event';
5
+ import '@testing-library/jest-dom';
6
+ import AUSpinnerComponent from '../../src/components/AUSpinnerComponent';
7
+
8
+ describe('<AUSpinnerComponent />', () => {
9
+ it('renders a loading animation', () => {
10
+ const { container } = render(
11
+ <AUSpinnerComponent loaded={false}>
12
+ <p>Child content</p>
13
+ </AUSpinnerComponent>,
14
+ );
15
+
16
+ const processing = container.querySelector('.processing-state');
17
+ expect(processing).toBeInTheDocument();
18
+ });
19
+
20
+ it('renders a loading animation in a box with a height of 40rem', () => {
21
+ const { container } = render(
22
+ <AUSpinnerComponent loaded={false} height="40rem" init="box">
23
+ <p>Child content</p>
24
+ </AUSpinnerComponent>,
25
+ );
26
+
27
+ const processing = container.querySelector('.processing-state--init-box');
28
+ expect(processing).toBeInTheDocument();
29
+ const style = getComputedStyle(processing as HTMLElement);
30
+ expect(style.minHeight).toBe('40rem');
31
+ });
32
+
33
+ it('renders a loading animation in a table with a height of 20rem', () => {
34
+ const { container } = render(
35
+ <AUSpinnerComponent loaded={false} height="20rem" init="table">
36
+ <p>Child content</p>
37
+ </AUSpinnerComponent>,
38
+ );
39
+
40
+ const processing = container.querySelector('.processing-state--init-table');
41
+ expect(processing).toBeInTheDocument();
42
+ const style = getComputedStyle(processing as HTMLElement);
43
+ expect(style.minHeight).toBe('20rem');
44
+ });
45
+
46
+ it('renders its child content when loaded', () => {
47
+ const { container } = render(
48
+ <AUSpinnerComponent loaded>
49
+ <p>Child content</p>
50
+ </AUSpinnerComponent>,
51
+ );
52
+
53
+ const child = container.querySelector('p');
54
+ expect(child).toBeInTheDocument();
55
+ expect(child?.innerHTML).toBe('Child content');
56
+ });
57
+ });
@@ -0,0 +1,46 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import React from 'react';
3
+ import { render } from '@testing-library/react';
4
+ // import userEvent from '@testing-library/user-event';
5
+ import '@testing-library/jest-dom';
6
+ import AUToolbarComponent from '../../src/components/AUToolbarComponent';
7
+ import AUButtonComponent from '../../src/components/AUButtonComponent';
8
+
9
+ describe('<AUToolbarComponent />', () => {
10
+ it('renders a toolbar with a toggle button labeled "Muligheder" and no items', () => {
11
+ const { container } = render(
12
+ <AUToolbarComponent lang="da" elements={[]} />,
13
+ );
14
+
15
+ const toolbar = container.querySelector('.toolbar');
16
+ const toggle = toolbar?.querySelector('.toolbar__toggle');
17
+ const itemsContainer = toolbar?.querySelector('.toolbar__items');
18
+ const items = itemsContainer?.querySelectorAll('*');
19
+ expect(toolbar).toBeInTheDocument();
20
+ expect(toggle?.innerHTML).toBe('Muligheder');
21
+ expect(items?.length).toBe(0);
22
+ });
23
+
24
+ it('renders a toolbar with a toggle button labeled "Options" and five items', () => {
25
+ const { container } = render(
26
+ <AUToolbarComponent
27
+ lang="en"
28
+ elements={[
29
+ <AUButtonComponent label="First action" />,
30
+ <AUButtonComponent label="Second action" />,
31
+ <AUButtonComponent label="Third action" />,
32
+ <div className="toolbar__split" />,
33
+ <AUButtonComponent label="Fourth action" />,
34
+ ]}
35
+ />,
36
+ );
37
+
38
+ const toolbar = container.querySelector('.toolbar');
39
+ const toggle = toolbar?.querySelector('.toolbar__toggle');
40
+ const itemsContainer = toolbar?.querySelector('.toolbar__items');
41
+ const items = itemsContainer?.querySelectorAll('*');
42
+ expect(toolbar).toBeInTheDocument();
43
+ expect(toggle?.innerHTML).toBe('Options');
44
+ expect(items?.length).toBe(5);
45
+ });
46
+ });