@aarhus-university/au-lib-react-components 10.0.2 → 10.2.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 (43) hide show
  1. package/build/umd/all.css +2 -2
  2. package/build/umd/all.js +1 -1
  3. package/build/umd/alphabox.js +1 -1
  4. package/build/umd/databox.js +1 -1
  5. package/build/umd/diagramme.js +1 -1
  6. package/build/umd/flowbox.js +1 -1
  7. package/build/umd/universe.js +1 -1
  8. package/package.json +6 -6
  9. package/src/components/AUAutoSuggestComponent.js +158 -158
  10. package/src/components/AUSpinnerComponent.tsx +91 -67
  11. package/src/components/AUToastComponent.tsx +11 -12
  12. package/src/components/profile/AUProfileLoginComponent.tsx +26 -26
  13. package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
  14. package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
  15. package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
  16. package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
  17. package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
  18. package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
  19. package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
  20. package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
  21. package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
  22. package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
  23. package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
  24. package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
  25. package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
  26. package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
  27. package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
  28. package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
  29. package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
  30. package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
  31. package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
  32. package/src/layout-2016/lib/all.js +3 -3
  33. package/src/layout-2016/lib/au-alphabox.js +100 -100
  34. package/src/layout-2016/lib/au-databox.js +400 -400
  35. package/src/layout-2016/lib/au-diagramme.js +85 -85
  36. package/src/layout-2016/lib/au-flowbox.js +93 -93
  37. package/src/layout-2016/lib/universe.js +9 -9
  38. package/src/lib/helpers.ts +194 -194
  39. package/tsconfig.json +46 -46
  40. package/types/common/interfaces/gui.d.ts +1 -0
  41. package/types/common/interfaces/model.d.ts +29 -29
  42. package/types/common/props.d.ts +166 -165
  43. 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;