@aarhus-university/au-lib-react-components 10.6.0 → 10.7.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.
Files changed (97) hide show
  1. package/.eslintrc.js +34 -34
  2. package/.storybook/main.js +20 -7
  3. package/.storybook/preview.js +10 -10
  4. package/README.md +19 -19
  5. package/__tests__/jest/AUButtonComponent.test.tsx +165 -163
  6. package/__tests__/jest/AUModalComponent.test.tsx +116 -0
  7. package/__tests__/jest/AUSpinnerComponent.test.tsx +57 -57
  8. package/__tests__/jest/AUToolbarComponent.test.tsx +46 -0
  9. package/__tests__/jest/helpers.test.ts +15 -15
  10. package/__tests__/jest/setupTests.ts +2 -2
  11. package/babel.config.js +8 -8
  12. package/build/umd/all.css +2 -2
  13. package/build/umd/all.js +1 -1
  14. package/build/umd/alphabox.js +1 -1
  15. package/build/umd/databox.js +1 -1
  16. package/build/umd/diagramme.js +1 -1
  17. package/build/umd/flowbox.js +1 -1
  18. package/build/umd/universe.js +1 -1
  19. package/package.json +107 -107
  20. package/src/components/AUAlertComponent.tsx +70 -70
  21. package/src/components/AUAutoSuggestComponent.js +158 -158
  22. package/src/components/AUButtonComponent.tsx +83 -77
  23. package/src/components/AUCalendarComponent.tsx +493 -493
  24. package/src/components/AUContentToggleComponent.tsx +33 -33
  25. package/src/components/AUDatepickerComponent.tsx +117 -117
  26. package/src/components/AUMobilePrefixComponent.tsx +15 -15
  27. package/src/components/AUModalComponent.tsx +64 -80
  28. package/src/components/AUReceiptComponent.tsx +33 -33
  29. package/src/components/AUSpinnerComponent.tsx +33 -33
  30. package/src/components/AUSubNavComponent.tsx +48 -48
  31. package/src/components/AUSubmitButtonContainerComponent.tsx +31 -31
  32. package/src/components/AUTabbedContentComponent.tsx +145 -145
  33. package/src/components/AUTableComponent.tsx +24 -24
  34. package/src/components/AUToastComponent.tsx +103 -103
  35. package/src/components/AUToolbarComponent.tsx +52 -45
  36. package/src/components/profile/AUProfileActions.js +128 -128
  37. package/src/components/profile/AUProfileAvatarComponent.js +83 -83
  38. package/src/components/profile/AUProfileAvatarV2Component.js +91 -91
  39. package/src/components/profile/AUProfileAvatarV3Component.tsx +42 -42
  40. package/src/components/profile/AUProfileContainerComponent.js +283 -283
  41. package/src/components/profile/AUProfileHooks.js +30 -30
  42. package/src/components/profile/AUProfileItemComponent.js +54 -54
  43. package/src/components/profile/AUProfileLanguageComponent.js +131 -131
  44. package/src/components/profile/AUProfileLoginComponent.tsx +26 -26
  45. package/src/components/profile/AUProfileMailComponent.js +307 -307
  46. package/src/components/profile/AUProfileMobileComponent.js +164 -164
  47. package/src/components/profile/AUProfileNameComponent.js +253 -253
  48. package/src/components/profile/AUProfileNextOfKinComponent.js +216 -216
  49. package/src/components/profile/AUProfileReducer.js +230 -230
  50. package/src/components/profile/AUProfileWidgetComponent.js +95 -95
  51. package/src/components/profile/AUProfileWidgetV2Component.js +116 -116
  52. package/src/components/profile/AUProfileWidgetV3Component.tsx +122 -122
  53. package/src/components/wrapping/AUEmbedComponent.js +47 -47
  54. package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
  55. package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
  56. package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
  57. package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
  58. package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
  59. package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
  60. package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
  61. package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
  62. package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
  63. package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
  64. package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
  65. package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
  66. package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
  67. package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
  68. package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
  69. package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
  70. package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
  71. package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
  72. package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
  73. package/src/layout-2016/lib/all.js +3 -3
  74. package/src/layout-2016/lib/au-alphabox.js +100 -100
  75. package/src/layout-2016/lib/au-databox.js +400 -400
  76. package/src/layout-2016/lib/au-diagramme.js +85 -85
  77. package/src/layout-2016/lib/au-flowbox.js +93 -93
  78. package/src/layout-2016/lib/universe.js +9 -9
  79. package/src/lib/helpers.ts +194 -194
  80. package/src/lib/hooks.ts +37 -33
  81. package/src/lib/i18n.ts +600 -600
  82. package/src/lib/tracking.ts +69 -69
  83. package/src/lib/wrapping.ts +21 -21
  84. package/src/styles/_settings.scss +10 -10
  85. package/src/styles/alphabox.scss +222 -222
  86. package/src/styles/app.scss +7 -7
  87. package/src/styles/autosuggest.scss +57 -57
  88. package/src/styles/databox.scss +563 -563
  89. package/src/styles/diagramme.scss +119 -119
  90. package/src/styles/flowbox.scss +72 -72
  91. package/src/styles/maps.scss +395 -395
  92. package/stories/AUButtonComponent.stories.tsx +85 -85
  93. package/stories/AUModalComponent.stories.tsx +92 -0
  94. package/stories/AUSpinnerComponent.stories.tsx +41 -41
  95. package/stories/AUToolbarComponent.stories.tsx +96 -0
  96. package/tsconfig.json +46 -46
  97. package/webpack.config.js +89 -89
@@ -1,126 +1,126 @@
1
- /* eslint-env browser */
2
- /* eslint jsx-a11y/click-events-have-key-events: 0 */
3
- /* eslint jsx-a11y/no-noninteractive-element-interactions: 0 */
4
- /* eslint jsx-a11y/control-has-associated-label: 0 */
5
- import React from 'react';
6
- import PropTypes from 'prop-types';
7
- import FlowBoxPhoneComponent from './FlowBoxPhoneComponent';
8
- import { flowboxLabels as labels } from '../../../lib/i18n';
9
-
10
- class FlowBoxComponent extends React.Component {
11
- constructor(props) {
12
- super(props);
13
- const { box } = props;
14
- this.state = {
15
- node: box.item,
16
- };
17
-
18
- this.prevNode = this.prevNode.bind(this);
19
- this.nextNode = this.nextNode.bind(this);
20
- this.handleSelectChange = this.handleSelectChange.bind(this);
21
- }
22
-
23
- handleSelectChange(event) {
24
- const { node } = this.state;
25
- const child = node.children.find((n) => n.name === event.target.value);
26
- this.setState({
27
- node: child,
28
- });
29
- }
30
-
31
- nextNode(child) {
32
- this.setState({
33
- node: child,
34
- });
35
- }
36
-
37
- prevNode(node) {
38
- this.setState({
39
- node: node.parent,
40
- });
41
- }
42
-
43
- render() {
44
- const { node } = this.state;
45
- const { box, lang } = this.props;
46
- const { children } = node;
47
- return (
48
- <div>
49
- <h2 dangerouslySetInnerHTML={{ __html: `<span>${box.data.prepend} </span>${node.name}` }} />
50
- {(() => {
51
- if (box.config.render === 'select') {
52
- if (children.filter((x) => x.children.length > 0).length > 0) {
53
- return (
54
- <select onChange={this.handleSelectChange}>
55
- <option value="">{`${labels[lang].select}...`}</option>
56
- {children.map((c) => <option key={c.name} value={c.name}>{c.name}</option>)}
57
- </select>
58
- );
59
- }
60
- }
61
- return (
62
- <ul>
63
- {children.map(
64
- (c) => (
65
- <li key={c.name}>
66
- {(() => {
67
- if (c.children.length > 0) {
68
- return (
69
- <button
70
- type="button"
71
- onClick={() => {
72
- this.nextNode(c);
73
- }}
74
- dangerouslySetInnerHTML={{ __html: c.name }}
75
- />
76
- );
77
- }
78
- if (c.name.indexOf(' ') === -1 && window.renderVCard) { // Det skal vi så lige huske at sætte på medarbejderkontaktboksene!
79
- return <FlowBoxPhoneComponent phone={c.name} lang={lang} />;
80
- }
81
- return <span dangerouslySetInnerHTML={{ __html: c.name }} />;
82
- })()}
83
- </li>
84
- ),
85
- )}
86
- </ul>
87
- );
88
- })()}
89
- {(() => {
90
- if (node.parent != null) {
91
- return (
92
- <button
93
- type="button"
94
- className="button small"
95
- onClick={() => {
96
- this.prevNode(node);
97
- }}
98
- >
99
- {labels[lang].back}
100
- </button>
101
- );
102
- }
103
- return null;
104
- })()}
105
- </div>
106
- );
107
- }
108
- }
109
-
110
- FlowBoxComponent.propTypes = {
111
- box: PropTypes.shape({
112
- item: PropTypes.shape({
113
- name: PropTypes.string.isRequired,
114
- }).isRequired,
115
- data: PropTypes.shape({
116
- prepend: PropTypes.string.isRequired,
117
- }).isRequired,
118
- config: PropTypes.shape({
119
- render: PropTypes.string.isRequired,
120
- }).isRequired,
121
- }).isRequired,
122
- lang: PropTypes.string.isRequired,
123
- };
124
-
125
- FlowBoxComponent.displayName = 'FlowBoxComponent';
126
- export default FlowBoxComponent;
1
+ /* eslint-env browser */
2
+ /* eslint jsx-a11y/click-events-have-key-events: 0 */
3
+ /* eslint jsx-a11y/no-noninteractive-element-interactions: 0 */
4
+ /* eslint jsx-a11y/control-has-associated-label: 0 */
5
+ import React from 'react';
6
+ import PropTypes from 'prop-types';
7
+ import FlowBoxPhoneComponent from './FlowBoxPhoneComponent';
8
+ import { flowboxLabels as labels } from '../../../lib/i18n';
9
+
10
+ class FlowBoxComponent extends React.Component {
11
+ constructor(props) {
12
+ super(props);
13
+ const { box } = props;
14
+ this.state = {
15
+ node: box.item,
16
+ };
17
+
18
+ this.prevNode = this.prevNode.bind(this);
19
+ this.nextNode = this.nextNode.bind(this);
20
+ this.handleSelectChange = this.handleSelectChange.bind(this);
21
+ }
22
+
23
+ handleSelectChange(event) {
24
+ const { node } = this.state;
25
+ const child = node.children.find((n) => n.name === event.target.value);
26
+ this.setState({
27
+ node: child,
28
+ });
29
+ }
30
+
31
+ nextNode(child) {
32
+ this.setState({
33
+ node: child,
34
+ });
35
+ }
36
+
37
+ prevNode(node) {
38
+ this.setState({
39
+ node: node.parent,
40
+ });
41
+ }
42
+
43
+ render() {
44
+ const { node } = this.state;
45
+ const { box, lang } = this.props;
46
+ const { children } = node;
47
+ return (
48
+ <div>
49
+ <h2 dangerouslySetInnerHTML={{ __html: `<span>${box.data.prepend} </span>${node.name}` }} />
50
+ {(() => {
51
+ if (box.config.render === 'select') {
52
+ if (children.filter((x) => x.children.length > 0).length > 0) {
53
+ return (
54
+ <select onChange={this.handleSelectChange}>
55
+ <option value="">{`${labels[lang].select}...`}</option>
56
+ {children.map((c) => <option key={c.name} value={c.name}>{c.name}</option>)}
57
+ </select>
58
+ );
59
+ }
60
+ }
61
+ return (
62
+ <ul>
63
+ {children.map(
64
+ (c) => (
65
+ <li key={c.name}>
66
+ {(() => {
67
+ if (c.children.length > 0) {
68
+ return (
69
+ <button
70
+ type="button"
71
+ onClick={() => {
72
+ this.nextNode(c);
73
+ }}
74
+ dangerouslySetInnerHTML={{ __html: c.name }}
75
+ />
76
+ );
77
+ }
78
+ if (c.name.indexOf(' ') === -1 && window.renderVCard) { // Det skal vi så lige huske at sætte på medarbejderkontaktboksene!
79
+ return <FlowBoxPhoneComponent phone={c.name} lang={lang} />;
80
+ }
81
+ return <span dangerouslySetInnerHTML={{ __html: c.name }} />;
82
+ })()}
83
+ </li>
84
+ ),
85
+ )}
86
+ </ul>
87
+ );
88
+ })()}
89
+ {(() => {
90
+ if (node.parent != null) {
91
+ return (
92
+ <button
93
+ type="button"
94
+ className="button small"
95
+ onClick={() => {
96
+ this.prevNode(node);
97
+ }}
98
+ >
99
+ {labels[lang].back}
100
+ </button>
101
+ );
102
+ }
103
+ return null;
104
+ })()}
105
+ </div>
106
+ );
107
+ }
108
+ }
109
+
110
+ FlowBoxComponent.propTypes = {
111
+ box: PropTypes.shape({
112
+ item: PropTypes.shape({
113
+ name: PropTypes.string.isRequired,
114
+ }).isRequired,
115
+ data: PropTypes.shape({
116
+ prepend: PropTypes.string.isRequired,
117
+ }).isRequired,
118
+ config: PropTypes.shape({
119
+ render: PropTypes.string.isRequired,
120
+ }).isRequired,
121
+ }).isRequired,
122
+ lang: PropTypes.string.isRequired,
123
+ };
124
+
125
+ FlowBoxComponent.displayName = 'FlowBoxComponent';
126
+ export default FlowBoxComponent;
@@ -1,104 +1,104 @@
1
- /* eslint-env browser */
2
- import React from 'react';
3
- import PropTypes from 'prop-types';
4
- import AUSpinnerComponent from '../common/AUSpinnerComponent';
5
- import { flowboxLabels as labels } from '../../../lib/i18n';
6
-
7
- class FlowBoxPhoneComponent extends React.Component {
8
- constructor(props) {
9
- super(props);
10
- this.state = {
11
- persons: [],
12
- };
13
- }
14
-
15
- componentDidMount() {
16
- const { phone } = this.props;
17
- const iPureUrl = `https://ipure.nfit.au.dk/searchPeople.php?mode=json&q=${phone}`;
18
- fetch(iPureUrl).then((promise) => promise.json()).then((persons) => {
19
- this.setState({
20
- persons,
21
- }, () => {
22
- if (typeof window.flowboxCallback !== 'undefined') {
23
- window.flowboxCallback.forEach((callback) => {
24
- if (callback.target === `p-${phone}`) {
25
- callback.func(persons);
26
- }
27
- });
28
- }
29
- });
30
- });
31
- }
32
-
33
- render() {
34
- const { persons } = this.state;
35
- const { lang, phone } = this.props;
36
-
37
- const renderVCard = persons.map((person) => {
38
- const { departments } = person;
39
- const email = departments.length > 0 ? departments[0].email : '';
40
- const renderDepartments = departments.map((department) => [
41
- <span key={0} className="org">{department.name}</span>,
42
- <br key={1} />,
43
- <span key={2}>{`${labels[lang].building} ${department.address.building.id}, ${labels[lang].office} ${department.address.building.room}`}</span>,
44
- <br key={3} />,
45
- <span key={4} className="adr">
46
- <span className="street-address">{department.address.street}</span>
47
- <span>, </span>
48
- <span className="postal-code">{department.address.zip}</span>
49
- <span className="localityName">{department.address.city}</span>
50
- </span>,
51
- <br key={5} />,
52
- <br key={6} />,
53
- <span key={7}>T: </span>,
54
- <span key={8} className="tel">{department.phone}</span>,
55
- <br key={9} />,
56
- <span key={10}>M: </span>,
57
- <span key={11} className="tel">{department.mobile}</span>,
58
- <br key={12} />,
59
- <span key={13}>E: </span>,
60
- <a key={14} className="email" href={`mailto:${department.email}`}>{department.email}</a>,
61
- <br key={15} />,
62
- ]);
63
- return (
64
- <div key={person.id} className="vcard">
65
- <h2 className="fn">
66
- <a className="url" href={`http://au.dk/${email}`}>{person.fullName}</a>
67
- </h2>
68
- <p>
69
- {(() => {
70
- if (person.photo) {
71
- return (
72
- <a className="photo" href={`http://au.dk/${email}`}>
73
- <img style={{ width: '70px', float: 'right', marginLeft: '1em' }} src={person.photo} alt={person.fullName} title={person.fullName} />
74
- </a>
75
- );
76
- }
77
- return null;
78
- })()}
79
- {renderDepartments}
80
- </p>
81
- </div>
82
- );
83
- });
84
-
85
- return (
86
- <AUSpinnerComponent
87
- loadingCondition={persons.length === 0}
88
- loaded={persons.length > 0}
89
- >
90
- <div id={`p-${phone}`}>
91
- {renderVCard}
92
- </div>
93
- </AUSpinnerComponent>
94
- );
95
- }
96
- }
97
-
98
- FlowBoxPhoneComponent.propTypes = {
99
- phone: PropTypes.string.isRequired,
100
- lang: PropTypes.string.isRequired,
101
- };
102
-
103
- FlowBoxPhoneComponent.displayName = 'FlowBoxPhoneComponent';
104
- export default FlowBoxPhoneComponent;
1
+ /* eslint-env browser */
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import AUSpinnerComponent from '../common/AUSpinnerComponent';
5
+ import { flowboxLabels as labels } from '../../../lib/i18n';
6
+
7
+ class FlowBoxPhoneComponent extends React.Component {
8
+ constructor(props) {
9
+ super(props);
10
+ this.state = {
11
+ persons: [],
12
+ };
13
+ }
14
+
15
+ componentDidMount() {
16
+ const { phone } = this.props;
17
+ const iPureUrl = `https://ipure.nfit.au.dk/searchPeople.php?mode=json&q=${phone}`;
18
+ fetch(iPureUrl).then((promise) => promise.json()).then((persons) => {
19
+ this.setState({
20
+ persons,
21
+ }, () => {
22
+ if (typeof window.flowboxCallback !== 'undefined') {
23
+ window.flowboxCallback.forEach((callback) => {
24
+ if (callback.target === `p-${phone}`) {
25
+ callback.func(persons);
26
+ }
27
+ });
28
+ }
29
+ });
30
+ });
31
+ }
32
+
33
+ render() {
34
+ const { persons } = this.state;
35
+ const { lang, phone } = this.props;
36
+
37
+ const renderVCard = persons.map((person) => {
38
+ const { departments } = person;
39
+ const email = departments.length > 0 ? departments[0].email : '';
40
+ const renderDepartments = departments.map((department) => [
41
+ <span key={0} className="org">{department.name}</span>,
42
+ <br key={1} />,
43
+ <span key={2}>{`${labels[lang].building} ${department.address.building.id}, ${labels[lang].office} ${department.address.building.room}`}</span>,
44
+ <br key={3} />,
45
+ <span key={4} className="adr">
46
+ <span className="street-address">{department.address.street}</span>
47
+ <span>, </span>
48
+ <span className="postal-code">{department.address.zip}</span>
49
+ <span className="localityName">{department.address.city}</span>
50
+ </span>,
51
+ <br key={5} />,
52
+ <br key={6} />,
53
+ <span key={7}>T: </span>,
54
+ <span key={8} className="tel">{department.phone}</span>,
55
+ <br key={9} />,
56
+ <span key={10}>M: </span>,
57
+ <span key={11} className="tel">{department.mobile}</span>,
58
+ <br key={12} />,
59
+ <span key={13}>E: </span>,
60
+ <a key={14} className="email" href={`mailto:${department.email}`}>{department.email}</a>,
61
+ <br key={15} />,
62
+ ]);
63
+ return (
64
+ <div key={person.id} className="vcard">
65
+ <h2 className="fn">
66
+ <a className="url" href={`http://au.dk/${email}`}>{person.fullName}</a>
67
+ </h2>
68
+ <p>
69
+ {(() => {
70
+ if (person.photo) {
71
+ return (
72
+ <a className="photo" href={`http://au.dk/${email}`}>
73
+ <img style={{ width: '70px', float: 'right', marginLeft: '1em' }} src={person.photo} alt={person.fullName} title={person.fullName} />
74
+ </a>
75
+ );
76
+ }
77
+ return null;
78
+ })()}
79
+ {renderDepartments}
80
+ </p>
81
+ </div>
82
+ );
83
+ });
84
+
85
+ return (
86
+ <AUSpinnerComponent
87
+ loadingCondition={persons.length === 0}
88
+ loaded={persons.length > 0}
89
+ >
90
+ <div id={`p-${phone}`}>
91
+ {renderVCard}
92
+ </div>
93
+ </AUSpinnerComponent>
94
+ );
95
+ }
96
+ }
97
+
98
+ FlowBoxPhoneComponent.propTypes = {
99
+ phone: PropTypes.string.isRequired,
100
+ lang: PropTypes.string.isRequired,
101
+ };
102
+
103
+ FlowBoxPhoneComponent.displayName = 'FlowBoxPhoneComponent';
104
+ export default FlowBoxPhoneComponent;
@@ -1,103 +1,103 @@
1
- /* eslint-env browser */
2
- import React from 'react';
3
- import PropTypes from 'prop-types';
4
- import AUProfileWidgetComponent from '../../../components/profile/AUProfileWidgetComponent';
5
-
6
- // TODO: Re-implement portal context i staff portal and mitstudie
7
- // before upgrading this lib-component!
8
- const AUUserContextComponent = null;
9
-
10
- const AUProfileAvatar2016Component = ({
11
- lang,
12
- user,
13
- settings,
14
- toggled,
15
- onToggle,
16
- onLoad,
17
- profileLabels,
18
- logoutUri,
19
- }) => {
20
- const {
21
- chosenFirstNames,
22
- chosenLastName,
23
- auId,
24
- studentNumber,
25
- } = user;
26
-
27
- const content = (
28
- <div className={`sub-nav${toggled ? ' sub-nav--toggled' : ''}`}>
29
- <button
30
- id="profile-menu-toggle"
31
- type="button"
32
- aria-label={toggled ? `${profileLabels[lang].profileFor} ${chosenFirstNames} ${chosenLastName}` : profileLabels[lang].myProfile}
33
- aria-expanded={toggled}
34
- onClick={() => {
35
- onToggle();
36
- }}
37
- >
38
- {chosenFirstNames || profileLabels[lang].myProfile}
39
- </button>
40
- {
41
- toggled && (
42
- <AUProfileWidgetComponent
43
- lang={lang}
44
- name={`${chosenFirstNames} ${chosenLastName}`}
45
- auid={auId}
46
- studentNumber={studentNumber}
47
- settings={settings}
48
- profileLabels={profileLabels}
49
- logoutUri={logoutUri}
50
- />
51
- )
52
- }
53
- </div>
54
- );
55
-
56
- if (auId === 0) {
57
- return null;
58
- }
59
-
60
- return (
61
- <AUUserContextComponent
62
- auid={auId}
63
- loggedIn
64
- contextKey="staff-user"
65
- handleContext={(userContext) => {
66
- onLoad(userContext);
67
- }}
68
- handleError={(status, json) => {
69
- // eslint-disable-next-line no-console
70
- console.log(status, json);
71
- }}
72
- spinner={false}
73
- emptyComponent={content}
74
- clearCache={false}
75
- >
76
- {content}
77
- </AUUserContextComponent>
78
- );
79
- };
80
-
81
- AUProfileAvatar2016Component.propTypes = {
82
- lang: PropTypes.string.isRequired,
83
- user: PropTypes.shape({
84
- chosenFirstNames: PropTypes.string.isRequired,
85
- chosenLastName: PropTypes.string.isRequired,
86
- preferredLanguage: PropTypes.string.isRequired,
87
- auId: PropTypes.number.isRequired,
88
- studentNumber: PropTypes.string.isRequired,
89
- }).isRequired,
90
- auAuth: PropTypes.shape({}).isRequired,
91
- settings: PropTypes.arrayOf(PropTypes.shape({
92
- url: PropTypes.string.isRequired,
93
- text: PropTypes.string.isRequired,
94
- })).isRequired,
95
- toggled: PropTypes.bool.isRequired,
96
- onToggle: PropTypes.func.isRequired,
97
- onLoad: PropTypes.func.isRequired,
98
- profileLabels: PropTypes.shape({}).isRequired,
99
- logoutUri: PropTypes.string.isRequired,
100
- };
101
-
102
- AUProfileAvatar2016Component.displayName = 'AUProfileAvatar2016Component';
103
- export default AUProfileAvatar2016Component;
1
+ /* eslint-env browser */
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import AUProfileWidgetComponent from '../../../components/profile/AUProfileWidgetComponent';
5
+
6
+ // TODO: Re-implement portal context i staff portal and mitstudie
7
+ // before upgrading this lib-component!
8
+ const AUUserContextComponent = null;
9
+
10
+ const AUProfileAvatar2016Component = ({
11
+ lang,
12
+ user,
13
+ settings,
14
+ toggled,
15
+ onToggle,
16
+ onLoad,
17
+ profileLabels,
18
+ logoutUri,
19
+ }) => {
20
+ const {
21
+ chosenFirstNames,
22
+ chosenLastName,
23
+ auId,
24
+ studentNumber,
25
+ } = user;
26
+
27
+ const content = (
28
+ <div className={`sub-nav${toggled ? ' sub-nav--toggled' : ''}`}>
29
+ <button
30
+ id="profile-menu-toggle"
31
+ type="button"
32
+ aria-label={toggled ? `${profileLabels[lang].profileFor} ${chosenFirstNames} ${chosenLastName}` : profileLabels[lang].myProfile}
33
+ aria-expanded={toggled}
34
+ onClick={() => {
35
+ onToggle();
36
+ }}
37
+ >
38
+ {chosenFirstNames || profileLabels[lang].myProfile}
39
+ </button>
40
+ {
41
+ toggled && (
42
+ <AUProfileWidgetComponent
43
+ lang={lang}
44
+ name={`${chosenFirstNames} ${chosenLastName}`}
45
+ auid={auId}
46
+ studentNumber={studentNumber}
47
+ settings={settings}
48
+ profileLabels={profileLabels}
49
+ logoutUri={logoutUri}
50
+ />
51
+ )
52
+ }
53
+ </div>
54
+ );
55
+
56
+ if (auId === 0) {
57
+ return null;
58
+ }
59
+
60
+ return (
61
+ <AUUserContextComponent
62
+ auid={auId}
63
+ loggedIn
64
+ contextKey="staff-user"
65
+ handleContext={(userContext) => {
66
+ onLoad(userContext);
67
+ }}
68
+ handleError={(status, json) => {
69
+ // eslint-disable-next-line no-console
70
+ console.log(status, json);
71
+ }}
72
+ spinner={false}
73
+ emptyComponent={content}
74
+ clearCache={false}
75
+ >
76
+ {content}
77
+ </AUUserContextComponent>
78
+ );
79
+ };
80
+
81
+ AUProfileAvatar2016Component.propTypes = {
82
+ lang: PropTypes.string.isRequired,
83
+ user: PropTypes.shape({
84
+ chosenFirstNames: PropTypes.string.isRequired,
85
+ chosenLastName: PropTypes.string.isRequired,
86
+ preferredLanguage: PropTypes.string.isRequired,
87
+ auId: PropTypes.number.isRequired,
88
+ studentNumber: PropTypes.string.isRequired,
89
+ }).isRequired,
90
+ auAuth: PropTypes.shape({}).isRequired,
91
+ settings: PropTypes.arrayOf(PropTypes.shape({
92
+ url: PropTypes.string.isRequired,
93
+ text: PropTypes.string.isRequired,
94
+ })).isRequired,
95
+ toggled: PropTypes.bool.isRequired,
96
+ onToggle: PropTypes.func.isRequired,
97
+ onLoad: PropTypes.func.isRequired,
98
+ profileLabels: PropTypes.shape({}).isRequired,
99
+ logoutUri: PropTypes.string.isRequired,
100
+ };
101
+
102
+ AUProfileAvatar2016Component.displayName = 'AUProfileAvatar2016Component';
103
+ export default AUProfileAvatar2016Component;