@eeacms/volto-cca-policy 0.2.96 → 0.2.98
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/CHANGELOG.md +20 -0
- package/package.json +1 -1
- package/src/components/theme/Views/AdaptationOptionView.test.jsx +1 -0
- package/src/components/theme/Views/CaseStudyView.test.jsx +1 -0
- package/src/components/theme/Views/DatabaseItemView.test.jsx +1 -0
- package/src/components/theme/Views/ProjectView.test.jsx +1 -0
- package/src/components/theme/Widgets/PromotionalImageWidget.jsx +238 -0
- package/src/components/theme/Widgets/PromotionalImageWidget.test.jsx +91 -0
- package/src/helpers/Constants.jsx +1 -0
- package/src/helpers/Utils.jsx +18 -48
- package/src/index.js +2 -0
- package/theme/globals/site.overrides +38 -0
- package/theme/globals/views.less +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [0.2.98](https://github.com/eea/volto-cca-policy/compare/0.2.97...0.2.98) - 30 January 2025
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: date time widget styling in metadata block [kreafox - [`67aad7f`](https://github.com/eea/volto-cca-policy/commit/67aad7f5cdfe397555417550afb05308346caa13)]
|
|
12
|
+
|
|
13
|
+
### [0.2.97](https://github.com/eea/volto-cca-policy/compare/0.2.96...0.2.97) - 27 January 2025
|
|
14
|
+
|
|
15
|
+
#### :rocket: New Features
|
|
16
|
+
|
|
17
|
+
- feat(widget): Add image download option for PromotionalImageWidget - refs #283317 [kreafox - [`cc9b1ab`](https://github.com/eea/volto-cca-policy/commit/cc9b1ab4b79fcc92ea3d555cbc9b9f17298a147c)]
|
|
18
|
+
|
|
19
|
+
#### :nail_care: Enhancements
|
|
20
|
+
|
|
21
|
+
- change(view): remove last modified date from DB items, refactoring, cleanup - refs #283449 [kreafox - [`bb3b60a`](https://github.com/eea/volto-cca-policy/commit/bb3b60aae64ac21d22ad391f60a40a9b226ee1fe)]
|
|
22
|
+
|
|
23
|
+
#### :hammer_and_wrench: Others
|
|
24
|
+
|
|
25
|
+
- test: Fix issue reported by sonarqube [kreafox - [`78dca60`](https://github.com/eea/volto-cca-policy/commit/78dca60618339183dc08bb70cb96e2e35d370b5c)]
|
|
26
|
+
- Add PromotionalImageWidget tests - refs #283317 [kreafox - [`8d74e37`](https://github.com/eea/volto-cca-policy/commit/8d74e37bebd468feaa93b2e468e742a18f7deefa)]
|
|
7
27
|
### [0.2.96](https://github.com/eea/volto-cca-policy/compare/0.2.95...0.2.96) - 24 January 2025
|
|
8
28
|
|
|
9
29
|
#### :nail_care: Enhancements
|
package/package.json
CHANGED
|
@@ -26,6 +26,7 @@ describe('CaseStudyView', () => {
|
|
|
26
26
|
const content = {
|
|
27
27
|
title: 'CaseStudyView',
|
|
28
28
|
cca_gallery: [],
|
|
29
|
+
cca_published: '2022-06-24T12:52:50+00:00',
|
|
29
30
|
geochars:
|
|
30
31
|
'{\r\n "geoElements":{"element":"GLOBAL",\r\n "macrotrans":null,"biotrans":null,"countries":[],\r\n "subnational":[],"city":""}}',
|
|
31
32
|
};
|
|
@@ -37,6 +37,7 @@ describe('DatabaseItemView', () => {
|
|
|
37
37
|
'<p>Nam commodo suscipit quam. Praesent egestas neque eu enim. Quisque rutrum.</p>',
|
|
38
38
|
encoding: 'utf-8',
|
|
39
39
|
},
|
|
40
|
+
publication_date: '2022-06-24',
|
|
40
41
|
geochars:
|
|
41
42
|
'{\r\n "geoElements":{"element":"GLOBAL",\r\n "macrotrans":null,"biotrans":null,"countries":[],\r\n "subnational":[],"city":""}}',
|
|
42
43
|
keywords: ['keyword 1', 'keyword 2'],
|
|
@@ -25,6 +25,7 @@ describe('ProjectView', () => {
|
|
|
25
25
|
it('should render the component', () => {
|
|
26
26
|
const content = {
|
|
27
27
|
title: 'My ProjectView',
|
|
28
|
+
cca_published: '2022-06-24T12:52:50+00:00',
|
|
28
29
|
geochars:
|
|
29
30
|
'{\r\n "geoElements":{"element":"GLOBAL",\r\n "macrotrans":null,"biotrans":null,"countries":[],\r\n "subnational":[],"city":""}}',
|
|
30
31
|
};
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
// Original: https://github.com/plone/volto/blob/16.x.x/src/components/manage/Widgets/FileWidget.jsx
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* FileWidget component.
|
|
5
|
+
* @module components/manage/Widgets/FileWidget
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import React from 'react';
|
|
9
|
+
import PropTypes from 'prop-types';
|
|
10
|
+
import { Button, Image, Dimmer } from 'semantic-ui-react';
|
|
11
|
+
import { readAsDataURL } from 'promise-file-reader';
|
|
12
|
+
import { injectIntl } from 'react-intl';
|
|
13
|
+
import deleteSVG from '@plone/volto/icons/delete.svg';
|
|
14
|
+
import { Icon, FormFieldWrapper } from '@plone/volto/components';
|
|
15
|
+
import loadable from '@loadable/component';
|
|
16
|
+
import { flattenToAppURL, validateFileUploadSize } from '@plone/volto/helpers';
|
|
17
|
+
import { defineMessages, useIntl } from 'react-intl';
|
|
18
|
+
|
|
19
|
+
const imageMimetypes = [
|
|
20
|
+
'image/png',
|
|
21
|
+
'image/jpeg',
|
|
22
|
+
'image/webp',
|
|
23
|
+
'image/jpg',
|
|
24
|
+
'image/gif',
|
|
25
|
+
'image/svg+xml',
|
|
26
|
+
];
|
|
27
|
+
const Dropzone = loadable(() => import('react-dropzone'));
|
|
28
|
+
|
|
29
|
+
const messages = defineMessages({
|
|
30
|
+
releaseDrag: {
|
|
31
|
+
id: 'Drop files here ...',
|
|
32
|
+
defaultMessage: 'Drop files here ...',
|
|
33
|
+
},
|
|
34
|
+
editFile: {
|
|
35
|
+
id: 'Drop file here to replace the existing file',
|
|
36
|
+
defaultMessage: 'Drop file here to replace the existing file',
|
|
37
|
+
},
|
|
38
|
+
fileDrag: {
|
|
39
|
+
id: 'Drop file here to upload a new file',
|
|
40
|
+
defaultMessage: 'Drop file here to upload a new file',
|
|
41
|
+
},
|
|
42
|
+
replaceFile: {
|
|
43
|
+
id: 'Replace existing file',
|
|
44
|
+
defaultMessage: 'Replace existing file',
|
|
45
|
+
},
|
|
46
|
+
addNewFile: {
|
|
47
|
+
id: 'Choose a file',
|
|
48
|
+
defaultMessage: 'Choose a file',
|
|
49
|
+
},
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* FileWidget component class.
|
|
54
|
+
* @function FileWidget
|
|
55
|
+
* @returns {string} Markup of the component.
|
|
56
|
+
*
|
|
57
|
+
* To use it, in schema properties, declare a field like:
|
|
58
|
+
*
|
|
59
|
+
* ```jsx
|
|
60
|
+
* {
|
|
61
|
+
* title: "File",
|
|
62
|
+
* widget: 'file',
|
|
63
|
+
* }
|
|
64
|
+
* ```
|
|
65
|
+
* or:
|
|
66
|
+
*
|
|
67
|
+
* ```jsx
|
|
68
|
+
* {
|
|
69
|
+
* title: "File",
|
|
70
|
+
* type: 'object',
|
|
71
|
+
* }
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
const FileWidget = (props) => {
|
|
76
|
+
const { id, value, onChange, isDisabled } = props;
|
|
77
|
+
const [fileType, setFileType] = React.useState(false);
|
|
78
|
+
const intl = useIntl();
|
|
79
|
+
|
|
80
|
+
React.useEffect(() => {
|
|
81
|
+
if (value && imageMimetypes.includes(value['content-type'])) {
|
|
82
|
+
setFileType(true);
|
|
83
|
+
}
|
|
84
|
+
}, [value]);
|
|
85
|
+
|
|
86
|
+
const imgsrc = value?.download
|
|
87
|
+
? `${flattenToAppURL(value?.download)}?id=${Date.now()}`
|
|
88
|
+
: value?.data
|
|
89
|
+
? `data:${value['content-type']};${value.encoding},${value.data}`
|
|
90
|
+
: null;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Drop handler
|
|
94
|
+
* @method onDrop
|
|
95
|
+
* @param {array} files File objects
|
|
96
|
+
* @returns {undefined}
|
|
97
|
+
*/
|
|
98
|
+
const onDrop = (files) => {
|
|
99
|
+
const file = files[0];
|
|
100
|
+
if (!validateFileUploadSize(file, intl.formatMessage)) return;
|
|
101
|
+
readAsDataURL(file).then((data) => {
|
|
102
|
+
const fields = data.match(/^data:(.*);(.*),(.*)$/);
|
|
103
|
+
onChange(id, {
|
|
104
|
+
data: fields[3],
|
|
105
|
+
encoding: fields[2],
|
|
106
|
+
'content-type': fields[1],
|
|
107
|
+
filename: file.name,
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
let reader = new FileReader();
|
|
112
|
+
reader.onload = function () {
|
|
113
|
+
const fields = reader.result.match(/^data:(.*);(.*),(.*)$/);
|
|
114
|
+
if (imageMimetypes.includes(fields[1])) {
|
|
115
|
+
setFileType(true);
|
|
116
|
+
let imagePreview = document.getElementById(`field-${id}-image`);
|
|
117
|
+
imagePreview.src = reader.result;
|
|
118
|
+
} else {
|
|
119
|
+
setFileType(false);
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
reader.readAsDataURL(files[0]);
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
return (
|
|
126
|
+
<FormFieldWrapper {...props}>
|
|
127
|
+
<Dropzone onDrop={onDrop}>
|
|
128
|
+
{({ getRootProps, getInputProps, isDragActive }) => (
|
|
129
|
+
<div className="file-widget-dropzone" {...getRootProps()}>
|
|
130
|
+
{isDragActive && <Dimmer active></Dimmer>}
|
|
131
|
+
{fileType ? (
|
|
132
|
+
<Image
|
|
133
|
+
className="image-preview"
|
|
134
|
+
id={`field-${id}-image`}
|
|
135
|
+
size="small"
|
|
136
|
+
src={imgsrc}
|
|
137
|
+
/>
|
|
138
|
+
) : (
|
|
139
|
+
<div className="dropzone-placeholder">
|
|
140
|
+
{isDragActive ? (
|
|
141
|
+
<p className="dropzone-text">
|
|
142
|
+
{intl.formatMessage(messages.releaseDrag)}
|
|
143
|
+
</p>
|
|
144
|
+
) : value ? (
|
|
145
|
+
<p className="dropzone-text">
|
|
146
|
+
{intl.formatMessage(messages.editFile)}
|
|
147
|
+
</p>
|
|
148
|
+
) : (
|
|
149
|
+
<p className="dropzone-text">
|
|
150
|
+
{intl.formatMessage(messages.fileDrag)}
|
|
151
|
+
</p>
|
|
152
|
+
)}
|
|
153
|
+
</div>
|
|
154
|
+
)}
|
|
155
|
+
|
|
156
|
+
<label className="label-file-widget-input">
|
|
157
|
+
{value
|
|
158
|
+
? intl.formatMessage(messages.replaceFile)
|
|
159
|
+
: intl.formatMessage(messages.addNewFile)}
|
|
160
|
+
</label>
|
|
161
|
+
<input
|
|
162
|
+
{...getInputProps({
|
|
163
|
+
type: 'file',
|
|
164
|
+
style: { display: 'none' },
|
|
165
|
+
})}
|
|
166
|
+
id={`field-${id}`}
|
|
167
|
+
name={id}
|
|
168
|
+
type="file"
|
|
169
|
+
disabled={isDisabled}
|
|
170
|
+
/>
|
|
171
|
+
</div>
|
|
172
|
+
)}
|
|
173
|
+
</Dropzone>
|
|
174
|
+
|
|
175
|
+
{value && value.download && (
|
|
176
|
+
<a
|
|
177
|
+
className="image-download-btn"
|
|
178
|
+
href={flattenToAppURL(value.download)}
|
|
179
|
+
download={value.filename || 'download'}
|
|
180
|
+
>
|
|
181
|
+
Download image
|
|
182
|
+
</a>
|
|
183
|
+
)}
|
|
184
|
+
<div className="field-file-name">
|
|
185
|
+
{value && value.filename}
|
|
186
|
+
{value && (
|
|
187
|
+
<Button
|
|
188
|
+
type="button"
|
|
189
|
+
icon
|
|
190
|
+
basic
|
|
191
|
+
className="delete-button"
|
|
192
|
+
aria-label="delete file"
|
|
193
|
+
disabled={isDisabled}
|
|
194
|
+
onClick={() => {
|
|
195
|
+
onChange(id, null);
|
|
196
|
+
setFileType(false);
|
|
197
|
+
}}
|
|
198
|
+
>
|
|
199
|
+
<Icon name={deleteSVG} size="20px" />
|
|
200
|
+
</Button>
|
|
201
|
+
)}
|
|
202
|
+
</div>
|
|
203
|
+
</FormFieldWrapper>
|
|
204
|
+
);
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Property types.
|
|
209
|
+
* @property {Object} propTypes Property types.
|
|
210
|
+
* @static
|
|
211
|
+
*/
|
|
212
|
+
FileWidget.propTypes = {
|
|
213
|
+
id: PropTypes.string.isRequired,
|
|
214
|
+
title: PropTypes.string.isRequired,
|
|
215
|
+
description: PropTypes.string,
|
|
216
|
+
required: PropTypes.bool,
|
|
217
|
+
error: PropTypes.arrayOf(PropTypes.string),
|
|
218
|
+
value: PropTypes.shape({
|
|
219
|
+
'@type': PropTypes.string,
|
|
220
|
+
title: PropTypes.string,
|
|
221
|
+
}),
|
|
222
|
+
onChange: PropTypes.func.isRequired,
|
|
223
|
+
wrapped: PropTypes.bool,
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Default properties.
|
|
228
|
+
* @property {Object} defaultProps Default properties.
|
|
229
|
+
* @static
|
|
230
|
+
*/
|
|
231
|
+
FileWidget.defaultProps = {
|
|
232
|
+
description: null,
|
|
233
|
+
required: false,
|
|
234
|
+
error: [],
|
|
235
|
+
value: null,
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
export default injectIntl(FileWidget);
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Provider } from 'react-intl-redux';
|
|
3
|
+
import { render, waitFor } from '@testing-library/react';
|
|
4
|
+
import configureStore from 'redux-mock-store';
|
|
5
|
+
|
|
6
|
+
import FileWidget from './PromotionalImageWidget';
|
|
7
|
+
|
|
8
|
+
jest.spyOn(global.Date, 'now').mockImplementation(() => '0');
|
|
9
|
+
|
|
10
|
+
const mockStore = configureStore();
|
|
11
|
+
|
|
12
|
+
describe('FileWidget', () => {
|
|
13
|
+
test('renders an empty file widget component', async () => {
|
|
14
|
+
const store = mockStore({
|
|
15
|
+
intl: {
|
|
16
|
+
locale: 'en',
|
|
17
|
+
messages: {},
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
const { container } = render(
|
|
22
|
+
<Provider store={store}>
|
|
23
|
+
<FileWidget
|
|
24
|
+
id="my-field"
|
|
25
|
+
title="My field"
|
|
26
|
+
fieldSet="default"
|
|
27
|
+
onChange={() => {}}
|
|
28
|
+
/>
|
|
29
|
+
</Provider>,
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
await waitFor(() => {});
|
|
33
|
+
expect(container).toMatchSnapshot();
|
|
34
|
+
});
|
|
35
|
+
test('renders a file widget component with value', async () => {
|
|
36
|
+
const store = mockStore({
|
|
37
|
+
intl: {
|
|
38
|
+
locale: 'en',
|
|
39
|
+
messages: {},
|
|
40
|
+
},
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
const { container } = render(
|
|
44
|
+
<Provider store={store}>
|
|
45
|
+
<FileWidget
|
|
46
|
+
id="my-field"
|
|
47
|
+
title="My field"
|
|
48
|
+
fieldSet="default"
|
|
49
|
+
onChange={() => {}}
|
|
50
|
+
value={{
|
|
51
|
+
download: 'http://myfile',
|
|
52
|
+
'content-type': 'image/png',
|
|
53
|
+
filename: 'myfile',
|
|
54
|
+
encoding: '',
|
|
55
|
+
}}
|
|
56
|
+
/>
|
|
57
|
+
</Provider>,
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
await waitFor(() => {});
|
|
61
|
+
expect(container).toMatchSnapshot();
|
|
62
|
+
});
|
|
63
|
+
test('renders a file widget component with value in raw data', async () => {
|
|
64
|
+
const store = mockStore({
|
|
65
|
+
intl: {
|
|
66
|
+
locale: 'en',
|
|
67
|
+
messages: {},
|
|
68
|
+
},
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
const { container } = render(
|
|
72
|
+
<Provider store={store}>
|
|
73
|
+
<FileWidget
|
|
74
|
+
id="my-field"
|
|
75
|
+
title="My field"
|
|
76
|
+
fieldSet="default"
|
|
77
|
+
onChange={() => {}}
|
|
78
|
+
value={{
|
|
79
|
+
data: 'oiweurtksdgfjaslfqw9523563456',
|
|
80
|
+
'content-type': 'image/png',
|
|
81
|
+
filename: 'myfile',
|
|
82
|
+
encoding: 'base64',
|
|
83
|
+
}}
|
|
84
|
+
/>
|
|
85
|
+
</Provider>,
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
await waitFor(() => {});
|
|
89
|
+
expect(container).toMatchSnapshot();
|
|
90
|
+
});
|
|
91
|
+
});
|
package/src/helpers/Utils.jsx
CHANGED
|
@@ -254,64 +254,34 @@ export const ReferenceInfo = (props) => {
|
|
|
254
254
|
) : null;
|
|
255
255
|
};
|
|
256
256
|
|
|
257
|
-
export const PublishedModifiedInfo = (
|
|
258
|
-
const {
|
|
259
|
-
|
|
260
|
-
const cca_modif = content.cca_last_modified;
|
|
261
|
-
const cca_publ = content.cca_published;
|
|
257
|
+
export const PublishedModifiedInfo = ({ content }) => {
|
|
258
|
+
const { cca_published, publication_date } = content;
|
|
262
259
|
|
|
263
|
-
let published = null;
|
|
264
|
-
let modified = null;
|
|
265
260
|
const dateFormatOptions = {
|
|
266
261
|
year: 'numeric',
|
|
267
262
|
month: 'short',
|
|
268
263
|
day: 'numeric',
|
|
269
264
|
};
|
|
270
|
-
if (cca_modif !== undefined) {
|
|
271
|
-
modified = new Date(cca_modif).toLocaleString('default', dateFormatOptions);
|
|
272
|
-
} else {
|
|
273
|
-
modified = new Date(content.modification_date).toLocaleString(
|
|
274
|
-
'default',
|
|
275
|
-
dateFormatOptions,
|
|
276
|
-
);
|
|
277
|
-
}
|
|
278
|
-
if (cca_publ !== undefined) {
|
|
279
|
-
published = new Date(cca_publ).toLocaleString('default', dateFormatOptions);
|
|
280
|
-
} else {
|
|
281
|
-
published = new Date(content.publication_date).toLocaleString(
|
|
282
|
-
'default',
|
|
283
|
-
dateFormatOptions,
|
|
284
|
-
);
|
|
285
|
-
}
|
|
286
265
|
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
266
|
+
const published = new Date(cca_published || publication_date).toLocaleString(
|
|
267
|
+
'default',
|
|
268
|
+
dateFormatOptions,
|
|
269
|
+
);
|
|
270
|
+
|
|
271
|
+
return published ? (
|
|
272
|
+
<div className="published-info">
|
|
290
273
|
<p>
|
|
291
|
-
<
|
|
292
|
-
<
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
{published}
|
|
300
|
-
</span>
|
|
301
|
-
<span> - </span>
|
|
302
|
-
<span>
|
|
303
|
-
<strong>
|
|
304
|
-
<FormattedMessage
|
|
305
|
-
id="Last Modified in Climate-ADAPT"
|
|
306
|
-
defaultMessage="Last Modified in Climate-ADAPT"
|
|
307
|
-
/>
|
|
308
|
-
</strong>
|
|
309
|
-
|
|
310
|
-
{modified}
|
|
311
|
-
</span>
|
|
274
|
+
<strong>
|
|
275
|
+
<FormattedMessage
|
|
276
|
+
id="Published in Climate-ADAPT"
|
|
277
|
+
defaultMessage="Published in Climate-ADAPT"
|
|
278
|
+
/>
|
|
279
|
+
</strong>
|
|
280
|
+
{': '}
|
|
281
|
+
{published}
|
|
312
282
|
</p>
|
|
313
283
|
</div>
|
|
314
|
-
);
|
|
284
|
+
) : null;
|
|
315
285
|
};
|
|
316
286
|
|
|
317
287
|
export const DocumentsList = (props) => {
|
package/src/index.js
CHANGED
|
@@ -21,6 +21,7 @@ import DatabaseItemView from './components/theme/Views/DatabaseItemView';
|
|
|
21
21
|
|
|
22
22
|
import GeocharsWidget from './components/theme/Widgets/GeocharsWidget';
|
|
23
23
|
import GeolocationWidget from './components/theme/Widgets/GeolocationWidget';
|
|
24
|
+
import PromotionalImageWidget from './components/theme/Widgets/PromotionalImageWidget';
|
|
24
25
|
import MigrationButtons from './components/MigrationButtons';
|
|
25
26
|
import HealthHorizontalCardItem from './components/Result/HealthHorizontalCardItem';
|
|
26
27
|
import ClusterHorizontalCardItem from './components/Result/ClusterHorizontalCardItem';
|
|
@@ -396,6 +397,7 @@ const applyConfig = (config) => {
|
|
|
396
397
|
// Custom widgets
|
|
397
398
|
config.widgets.id.geochars = GeocharsWidget;
|
|
398
399
|
config.widgets.id.geolocation = GeolocationWidget;
|
|
400
|
+
config.widgets.id.promotional_image = PromotionalImageWidget;
|
|
399
401
|
|
|
400
402
|
if (config.widgets.views?.widget) {
|
|
401
403
|
config.widgets.views.id.rast_steps = RASTWidgetView;
|
|
@@ -199,3 +199,41 @@ body.subsite {
|
|
|
199
199
|
iframe {
|
|
200
200
|
border: none;
|
|
201
201
|
}
|
|
202
|
+
|
|
203
|
+
.label-file-widget-input {
|
|
204
|
+
font-weight: bold;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.image-download-btn {
|
|
208
|
+
display: inline-block;
|
|
209
|
+
padding: 7px 23px;
|
|
210
|
+
border: 2px solid #007eb1;
|
|
211
|
+
margin-top: 10px;
|
|
212
|
+
border-radius: 10px;
|
|
213
|
+
color: #007eb1;
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
opacity: 0.8;
|
|
216
|
+
max-width: max-content;
|
|
217
|
+
font-weight: bold;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.block.metadata,
|
|
221
|
+
.block.metadata-section {
|
|
222
|
+
.inline.field .wide.column {
|
|
223
|
+
.date-time-widget-wrapper {
|
|
224
|
+
.ui.input {
|
|
225
|
+
width: auto;
|
|
226
|
+
vertical-align: middle;
|
|
227
|
+
|
|
228
|
+
input {
|
|
229
|
+
height: 60px;
|
|
230
|
+
padding: 0.75em 0;
|
|
231
|
+
border-width: 0 0 0.0625rem 0;
|
|
232
|
+
border-radius: 0;
|
|
233
|
+
|
|
234
|
+
font-size: 1em;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|