@aarhus-university/au-lib-react-components 12.6.1 → 12.6.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.
- package/.eslintrc.js +35 -35
- package/.storybook/main.js +34 -34
- package/.storybook/preview.js +17 -17
- package/README.md +19 -19
- package/__tests__/jest/AUButtonComponent.test.tsx +165 -165
- package/__tests__/jest/AUDynamicContentComponent.test.tsx +386 -386
- package/__tests__/jest/AUErrorComponent.test.tsx +142 -142
- package/__tests__/jest/AUModalComponent.test.tsx +186 -186
- package/__tests__/jest/AUNotificationComponent.test.tsx +115 -115
- package/__tests__/jest/AUSpinnerComponent.test.tsx +57 -57
- package/__tests__/jest/AUToolbarComponent.test.tsx +46 -46
- package/__tests__/jest/context.test.ts +25 -25
- package/__tests__/jest/helpers.test.ts +15 -15
- package/__tests__/jest/setupTests.ts +2 -2
- package/babel.config.js +8 -8
- 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/flowbox.js.map +1 -1
- package/build/umd/universe.js +1 -1
- package/build-storybook.log +386 -386
- package/esbuild.mjs +22 -22
- package/package.json +107 -107
- package/src/components/AUAlertComponent.tsx +128 -128
- package/src/components/AUAutoSuggestComponent.js +148 -148
- package/src/components/AUButtonComponent.tsx +99 -99
- package/src/components/AUCalendarComponent.tsx +497 -497
- package/src/components/AUCharacterCountComponent.tsx +56 -56
- package/src/components/AUComboBoxComponent.tsx +195 -195
- package/src/components/AUContentToggleComponent.tsx +50 -50
- package/src/components/AUDatepickerComponent.tsx +124 -124
- package/src/components/AUDialogModalComponent.tsx +124 -124
- package/src/components/AUDynamicContentComponent.tsx +137 -137
- package/src/components/AUEditorComponent.tsx +126 -126
- package/src/components/AUErrorComponent.tsx +73 -73
- package/src/components/AUMobilePrefixComponent.tsx +20 -20
- package/src/components/AUModalComponent.tsx +72 -72
- package/src/components/AUNotificationComponent.tsx +44 -44
- package/src/components/AUReceiptComponent.tsx +34 -34
- package/src/components/AUSpinnerComponent.tsx +40 -40
- package/src/components/AUStepComponent.tsx +75 -75
- package/src/components/AUSubNavComponent.tsx +57 -57
- package/src/components/AUSubmitButtonContainerComponent.tsx +38 -38
- package/src/components/AUTabbedContentComponent.tsx +154 -154
- package/src/components/AUTableComponent.tsx +29 -29
- package/src/components/AUToastComponent.tsx +104 -104
- package/src/components/AUToolbarComponent.tsx +108 -108
- package/src/components/AUTruncatorComponent.tsx +141 -141
- package/src/components/wrapping/AUEmbedComponent.js +47 -47
- package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +142 -142
- 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/lib/all.js +3 -3
- package/src/layout-2016/lib/au-alphabox.js +99 -99
- package/src/layout-2016/lib/au-databox.js +399 -399
- package/src/layout-2016/lib/au-diagramme.js +85 -85
- package/src/layout-2016/lib/au-flowbox.js +116 -119
- package/src/lib/context.tsx +59 -59
- package/src/lib/dates.ts +52 -52
- package/src/lib/helpers.ts +208 -208
- package/src/lib/hooks.ts +157 -157
- package/src/lib/i18n.ts +600 -600
- package/src/lib/portals.tsx +150 -150
- package/src/lib/tinymce.ts +84 -84
- 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/stories/AUAlertComponent.stories.tsx +133 -133
- package/stories/AUAutoSuggestComponent.stories.tsx +95 -95
- package/stories/AUButtonComponent.stories.tsx +139 -139
- package/stories/AUCharacterCountComponent.stories.tsx +121 -121
- package/stories/AUComboBoxComponent.stories.tsx +101 -101
- package/stories/AUContentToggleComponent.stories.tsx +87 -87
- package/stories/AUDialogModalComponent.stories.tsx +75 -75
- package/stories/AUDynamicContentComponent.stories.tsx +119 -119
- package/stories/AUEditorComponent.stories.tsx +66 -66
- package/stories/AUErrorComponent.stories.tsx +132 -132
- package/stories/AUModalComponent.stories.tsx +160 -160
- package/stories/AUNotificationComponent.stories.tsx +151 -151
- package/stories/AUSpinnerComponent.stories.tsx +44 -44
- package/stories/AUStepComponent.stories.tsx +91 -91
- package/stories/AUToolbarComponent.stories.tsx +389 -389
- package/stories/AUTruncatorComponent.stories.tsx +123 -123
- package/stories/lib/helpers.tsx +146 -146
- package/tsconfig.json +46 -46
- package/webpack.config.js +88 -88
- package/.claude/settings.local.json +0 -12
- package/.vscode/settings.json +0 -22
|
@@ -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,3 +1,3 @@
|
|
|
1
|
-
import '../../styles/app.scss';
|
|
2
|
-
import './au-databox';
|
|
3
|
-
import './au-alphabox';
|
|
1
|
+
import '../../styles/app.scss';
|
|
2
|
+
import './au-databox';
|
|
3
|
+
import './au-alphabox';
|
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
/* eslint no-prototype-builtins: 0 */
|
|
2
|
-
/* eslint no-restricted-syntax: 0 */
|
|
3
|
-
/* eslint no-unused-vars: 0 */
|
|
4
|
-
/* eslint-env browser */
|
|
5
|
-
import React from 'react';
|
|
6
|
-
import ReactDOM from 'react-dom';
|
|
7
|
-
import AlphaBoxComponent from '../components/alphabox/AlphaBoxComponent';
|
|
8
|
-
|
|
9
|
-
const defaultOptions = {
|
|
10
|
-
config: {
|
|
11
|
-
title: '',
|
|
12
|
-
url: '',
|
|
13
|
-
description: '',
|
|
14
|
-
container: '.au_alphabox',
|
|
15
|
-
links: [
|
|
16
|
-
{ title: 'Link 1', url: 'http://www.au.dk' },
|
|
17
|
-
{ title: 'Link 2', url: 'http://www.au.dk' },
|
|
18
|
-
],
|
|
19
|
-
},
|
|
20
|
-
search: {
|
|
21
|
-
minLength: 1,
|
|
22
|
-
placeHolder: '',
|
|
23
|
-
},
|
|
24
|
-
background: {
|
|
25
|
-
color: '#003e5c',
|
|
26
|
-
linkColor: '#379fcb',
|
|
27
|
-
},
|
|
28
|
-
data: {
|
|
29
|
-
mode: 'json',
|
|
30
|
-
itemsOnly: false,
|
|
31
|
-
},
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
class AUAlphabox {
|
|
35
|
-
constructor(boxes) {
|
|
36
|
-
this.boxes = boxes;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
static mergeOptions(_box) {
|
|
40
|
-
const box = _box;
|
|
41
|
-
if (!box.hasOwnProperty('config')) {
|
|
42
|
-
box.config = {};
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
for (const conf in defaultOptions.config) {
|
|
46
|
-
if (!box.config.hasOwnProperty(conf)) {
|
|
47
|
-
box.config[conf] = defaultOptions.config[conf];
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
if (!box.hasOwnProperty('background')) {
|
|
52
|
-
box.background = {};
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
for (const bg in defaultOptions.background) {
|
|
56
|
-
if (!box.background.hasOwnProperty(bg)) {
|
|
57
|
-
box.background[bg] = defaultOptions.background[bg];
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
if (!box.hasOwnProperty('search')) {
|
|
62
|
-
box.search = {};
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
for (const sch in defaultOptions.search) {
|
|
66
|
-
if (!box.search.hasOwnProperty(sch)) {
|
|
67
|
-
box.search[sch] = defaultOptions.search[sch];
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (!box.hasOwnProperty('data')) {
|
|
72
|
-
box.data = {};
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
for (const data in defaultOptions.data) {
|
|
76
|
-
if (!box.data.hasOwnProperty(data)) {
|
|
77
|
-
box.data[data] = defaultOptions.data[data];
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
init() {
|
|
83
|
-
for (let i = 0; i < this.boxes.length; i += 1) {
|
|
84
|
-
const box = this.boxes[i];
|
|
85
|
-
if (!box.loaded) {
|
|
86
|
-
box.id = i;
|
|
87
|
-
AUAlphabox.mergeOptions(box);
|
|
88
|
-
const mountNode = document.querySelector(box.config.container);
|
|
89
|
-
const visible = mountNode && getComputedStyle(mountNode).visibility !== 'hidden';
|
|
90
|
-
if (visible) {
|
|
91
|
-
ReactDOM.render(<AlphaBoxComponent box={box} />, mountNode);
|
|
92
|
-
box.loaded = true;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
window.AUAlphabox = AUAlphabox;
|
|
1
|
+
/* eslint no-prototype-builtins: 0 */
|
|
2
|
+
/* eslint no-restricted-syntax: 0 */
|
|
3
|
+
/* eslint no-unused-vars: 0 */
|
|
4
|
+
/* eslint-env browser */
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import ReactDOM from 'react-dom';
|
|
7
|
+
import AlphaBoxComponent from '../components/alphabox/AlphaBoxComponent';
|
|
8
|
+
|
|
9
|
+
const defaultOptions = {
|
|
10
|
+
config: {
|
|
11
|
+
title: '',
|
|
12
|
+
url: '',
|
|
13
|
+
description: '',
|
|
14
|
+
container: '.au_alphabox',
|
|
15
|
+
links: [
|
|
16
|
+
{ title: 'Link 1', url: 'http://www.au.dk' },
|
|
17
|
+
{ title: 'Link 2', url: 'http://www.au.dk' },
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
search: {
|
|
21
|
+
minLength: 1,
|
|
22
|
+
placeHolder: '',
|
|
23
|
+
},
|
|
24
|
+
background: {
|
|
25
|
+
color: '#003e5c',
|
|
26
|
+
linkColor: '#379fcb',
|
|
27
|
+
},
|
|
28
|
+
data: {
|
|
29
|
+
mode: 'json',
|
|
30
|
+
itemsOnly: false,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
class AUAlphabox {
|
|
35
|
+
constructor(boxes) {
|
|
36
|
+
this.boxes = boxes;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
static mergeOptions(_box) {
|
|
40
|
+
const box = _box;
|
|
41
|
+
if (!box.hasOwnProperty('config')) {
|
|
42
|
+
box.config = {};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
for (const conf in defaultOptions.config) {
|
|
46
|
+
if (!box.config.hasOwnProperty(conf)) {
|
|
47
|
+
box.config[conf] = defaultOptions.config[conf];
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (!box.hasOwnProperty('background')) {
|
|
52
|
+
box.background = {};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
for (const bg in defaultOptions.background) {
|
|
56
|
+
if (!box.background.hasOwnProperty(bg)) {
|
|
57
|
+
box.background[bg] = defaultOptions.background[bg];
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
if (!box.hasOwnProperty('search')) {
|
|
62
|
+
box.search = {};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
for (const sch in defaultOptions.search) {
|
|
66
|
+
if (!box.search.hasOwnProperty(sch)) {
|
|
67
|
+
box.search[sch] = defaultOptions.search[sch];
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (!box.hasOwnProperty('data')) {
|
|
72
|
+
box.data = {};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
for (const data in defaultOptions.data) {
|
|
76
|
+
if (!box.data.hasOwnProperty(data)) {
|
|
77
|
+
box.data[data] = defaultOptions.data[data];
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
init() {
|
|
83
|
+
for (let i = 0; i < this.boxes.length; i += 1) {
|
|
84
|
+
const box = this.boxes[i];
|
|
85
|
+
if (!box.loaded) {
|
|
86
|
+
box.id = i;
|
|
87
|
+
AUAlphabox.mergeOptions(box);
|
|
88
|
+
const mountNode = document.querySelector(box.config.container);
|
|
89
|
+
const visible = mountNode && getComputedStyle(mountNode).visibility !== 'hidden';
|
|
90
|
+
if (visible) {
|
|
91
|
+
ReactDOM.render(<AlphaBoxComponent box={box} />, mountNode);
|
|
92
|
+
box.loaded = true;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
window.AUAlphabox = AUAlphabox;
|