mirador-annotation-editor-video 1.0.93 → 1.0.95
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/es/annotationForm/AnnotationFormUtils.js +9 -10
- package/es/annotationForm/ManifestNetworkFormSection.js +4 -20
- package/es/annotationForm/MultiTagsInput.js +42 -8
- package/es/annotationForm/NetworkCommentTemplate.js +1 -1
- package/package.json +1 -1
- package/src/annotationForm/AnnotationFormUtils.js +8 -8
- package/src/annotationForm/ManifestNetworkFormSection.js +4 -18
- package/src/annotationForm/MultiTagsInput.js +62 -8
- package/src/annotationForm/NetworkCommentTemplate.js +1 -1
|
@@ -25,9 +25,9 @@ const TEMPLATE = exports.TEMPLATE = {
|
|
|
25
25
|
IMAGE_TYPE: 'image',
|
|
26
26
|
KONVA_TYPE: 'konva',
|
|
27
27
|
MANIFEST_TYPE: 'manifest',
|
|
28
|
+
MULTIPLE_BODY_TYPE: 'multiple_body',
|
|
28
29
|
TAGGING_TYPE: 'tagging',
|
|
29
|
-
TEXT_TYPE: 'text'
|
|
30
|
-
MULTIPLE_BODY_TYPE: 'multiple_body'
|
|
30
|
+
TEXT_TYPE: 'text'
|
|
31
31
|
};
|
|
32
32
|
const MEDIA_TYPES = exports.MEDIA_TYPES = {
|
|
33
33
|
AUDIO: 'Audio',
|
|
@@ -43,8 +43,7 @@ const getTemplateType = (t, templateType) => TEMPLATE_TYPES(t).find(type => type
|
|
|
43
43
|
*/
|
|
44
44
|
exports.getTemplateType = getTemplateType;
|
|
45
45
|
const TEMPLATE_TYPES = t => [{
|
|
46
|
-
description: t('
|
|
47
|
-
// TODO
|
|
46
|
+
description: t('textual_note_with_target'),
|
|
48
47
|
icon: /*#__PURE__*/_react.default.createElement(_TextFields.default, null),
|
|
49
48
|
id: TEMPLATE.MULTIPLE_BODY_TYPE,
|
|
50
49
|
isCompatibleWithTemplate: mediaType => {
|
|
@@ -53,14 +52,14 @@ const TEMPLATE_TYPES = t => [{
|
|
|
53
52
|
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
54
53
|
return false;
|
|
55
54
|
},
|
|
56
|
-
label: t('
|
|
55
|
+
label: t('note')
|
|
57
56
|
}, {
|
|
58
57
|
description: t('textual_note_with_target'),
|
|
59
58
|
icon: /*#__PURE__*/_react.default.createElement(_TextFields.default, null),
|
|
60
59
|
id: TEMPLATE.TEXT_TYPE,
|
|
61
60
|
isCompatibleWithTemplate: mediaType => {
|
|
62
|
-
if (mediaType === MEDIA_TYPES.VIDEO) return
|
|
63
|
-
if (mediaType === MEDIA_TYPES.IMAGE) return
|
|
61
|
+
if (mediaType === MEDIA_TYPES.VIDEO) return false;
|
|
62
|
+
if (mediaType === MEDIA_TYPES.IMAGE) return false;
|
|
64
63
|
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
65
64
|
return false;
|
|
66
65
|
},
|
|
@@ -72,9 +71,9 @@ const TEMPLATE_TYPES = t => [{
|
|
|
72
71
|
}),
|
|
73
72
|
id: TEMPLATE.TAGGING_TYPE,
|
|
74
73
|
isCompatibleWithTemplate: mediaType => {
|
|
75
|
-
if (mediaType === MEDIA_TYPES.VIDEO) return
|
|
76
|
-
if (mediaType === MEDIA_TYPES.IMAGE) return
|
|
77
|
-
if (mediaType === MEDIA_TYPES.AUDIO) return
|
|
74
|
+
if (mediaType === MEDIA_TYPES.VIDEO) return false;
|
|
75
|
+
if (mediaType === MEDIA_TYPES.IMAGE) return false;
|
|
76
|
+
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
78
77
|
return false;
|
|
79
78
|
},
|
|
80
79
|
label: t('tag')
|
|
@@ -4,17 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = ManifestNetworkFormSection;
|
|
7
|
-
var _react =
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
8
|
var _material = require("@mui/material");
|
|
9
9
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
10
|
var _AnnotationFormUtils = require("./AnnotationFormUtils");
|
|
11
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
12
|
/**
|
|
15
13
|
* Handle Manifest Section
|
|
16
14
|
* @param manifestNetwork
|
|
17
|
-
* @param onChange
|
|
15
|
+
* @param onChange - callback function to handle manifest URL changes
|
|
16
|
+
* @param t
|
|
18
17
|
* @returns {Element}
|
|
19
18
|
* @constructor
|
|
20
19
|
*/
|
|
@@ -23,17 +22,6 @@ function ManifestNetworkFormSection({
|
|
|
23
22
|
onChange,
|
|
24
23
|
t
|
|
25
24
|
}) {
|
|
26
|
-
// TODO probably useless. check this state
|
|
27
|
-
const [manifestUrl, setManifestUrl] = (0, _react.useState)('');
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Handle on change
|
|
31
|
-
* @param value new value
|
|
32
|
-
*/
|
|
33
|
-
const handlOnChange = value => {
|
|
34
|
-
setManifestUrl(value);
|
|
35
|
-
onChange(value);
|
|
36
|
-
};
|
|
37
25
|
return /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
38
26
|
item: true,
|
|
39
27
|
container: true,
|
|
@@ -47,16 +35,12 @@ function ManifestNetworkFormSection({
|
|
|
47
35
|
item: true
|
|
48
36
|
}, /*#__PURE__*/_react.default.createElement(_material.TextField, {
|
|
49
37
|
value: manifestNetwork,
|
|
50
|
-
onChange: event =>
|
|
38
|
+
onChange: event => onChange(event.target.value.trim()),
|
|
51
39
|
label: t('manifest_url'),
|
|
52
40
|
type: "url",
|
|
53
41
|
error: !(0, _AnnotationFormUtils.isValidUrl)(manifestNetwork)
|
|
54
42
|
})), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
55
43
|
item: true
|
|
56
|
-
}, /*#__PURE__*/_react.default.createElement(_material.Link, {
|
|
57
|
-
href: manifestUrl
|
|
58
|
-
}, manifestUrl)), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
59
|
-
item: true
|
|
60
44
|
}, (0, _AnnotationFormUtils.isValidUrl)(manifestNetwork) && /*#__PURE__*/_react.default.createElement(_material.Link, {
|
|
61
45
|
href: manifestNetwork,
|
|
62
46
|
target: "_blank",
|
|
@@ -4,11 +4,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.MultiTagsInput = MultiTagsInput;
|
|
7
|
-
var _react =
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _reactTagInput = require("react-tag-input");
|
|
9
9
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
10
|
var _material = require("@mui/material");
|
|
11
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
14
|
/**
|
|
13
15
|
* MultiTagsInput component
|
|
14
16
|
* @param t
|
|
@@ -24,6 +26,12 @@ function MultiTagsInput({
|
|
|
24
26
|
tags,
|
|
25
27
|
tagsSuggestions
|
|
26
28
|
}) {
|
|
29
|
+
const [showSuggestions, setShowSuggestions] = (0, _react.useState)(false);
|
|
30
|
+
const mappedSuggestionsTags = tagsSuggestions.map(suggestion => ({
|
|
31
|
+
id: suggestion,
|
|
32
|
+
text: suggestion
|
|
33
|
+
}));
|
|
34
|
+
|
|
27
35
|
/**
|
|
28
36
|
* Handle tag deletion
|
|
29
37
|
* @param index
|
|
@@ -47,8 +55,10 @@ function MultiTagsInput({
|
|
|
47
55
|
* Handle tag addition
|
|
48
56
|
* @param tag
|
|
49
57
|
*/
|
|
50
|
-
const handleAddition =
|
|
51
|
-
|
|
58
|
+
const handleAddition = newTag => {
|
|
59
|
+
if (tags.length === 0 || !tags.find(tag => tag.id === newTag.id)) {
|
|
60
|
+
setTags([...tags, newTag]);
|
|
61
|
+
}
|
|
52
62
|
};
|
|
53
63
|
|
|
54
64
|
/**
|
|
@@ -82,7 +92,32 @@ function MultiTagsInput({
|
|
|
82
92
|
};
|
|
83
93
|
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
84
94
|
variant: "formSectionTitle"
|
|
85
|
-
}, t('tags')), /*#__PURE__*/_react.default.createElement(
|
|
95
|
+
}, t('tags')), /*#__PURE__*/_react.default.createElement(_material.FormControlLabel, {
|
|
96
|
+
control: /*#__PURE__*/_react.default.createElement(_material.Switch, {
|
|
97
|
+
value: showSuggestions,
|
|
98
|
+
onClick: () => setShowSuggestions(!showSuggestions)
|
|
99
|
+
}),
|
|
100
|
+
label: "Suggestion"
|
|
101
|
+
}), showSuggestions && /*#__PURE__*/_react.default.createElement("div", {
|
|
102
|
+
style: {
|
|
103
|
+
display: 'flex',
|
|
104
|
+
flexWrap: 'wrap',
|
|
105
|
+
gap: '8px'
|
|
106
|
+
}
|
|
107
|
+
}, mappedSuggestionsTags.map(suggestion => /*#__PURE__*/_react.default.createElement("button", {
|
|
108
|
+
key: suggestion.id,
|
|
109
|
+
type: "button",
|
|
110
|
+
onClick: () => handleAddition(suggestion),
|
|
111
|
+
style: {
|
|
112
|
+
padding: '6px 12px',
|
|
113
|
+
borderRadius: '16px',
|
|
114
|
+
border: '1px solid #ccc',
|
|
115
|
+
backgroundColor: '#f1f1f1',
|
|
116
|
+
cursor: 'pointer'
|
|
117
|
+
}
|
|
118
|
+
}, suggestion.text))), /*#__PURE__*/_react.default.createElement(_material.Divider, {
|
|
119
|
+
spacing: 2
|
|
120
|
+
}), /*#__PURE__*/_react.default.createElement(_reactTagInput.WithContext, {
|
|
86
121
|
placeholder: t('pressEnterToAddTag'),
|
|
87
122
|
clearAll: true,
|
|
88
123
|
editable: true,
|
|
@@ -94,10 +129,9 @@ function MultiTagsInput({
|
|
|
94
129
|
onClearAll: onClearAll,
|
|
95
130
|
onTagUpdate: onTagUpdate,
|
|
96
131
|
tags: tags,
|
|
97
|
-
suggestions:
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}))
|
|
132
|
+
suggestions: mappedSuggestionsTags,
|
|
133
|
+
minQueryLength: 1,
|
|
134
|
+
autocomplete: true
|
|
101
135
|
}));
|
|
102
136
|
}
|
|
103
137
|
MultiTagsInput.propTypes = {
|
|
@@ -93,7 +93,7 @@ function NetworkCommentTemplate({
|
|
|
93
93
|
(0, _KonvaUtils.resizeKonvaStage)(windowId, playerReferences.getMediaTrueWidth(), playerReferences.getMediaTrueHeight(), 1 / playerReferences.getScale());
|
|
94
94
|
const baseAnnotation = getBaseAnnotation(annotationState.id);
|
|
95
95
|
if (baseAnnotation) {
|
|
96
|
-
annotationState.id = `${
|
|
96
|
+
annotationState.id = `${baseAnnotation}#${annotation.maeData.manifestNetwork}`;
|
|
97
97
|
}
|
|
98
98
|
saveAnnotation(annotationState);
|
|
99
99
|
};
|
package/package.json
CHANGED
|
@@ -15,9 +15,9 @@ export const TEMPLATE = {
|
|
|
15
15
|
IMAGE_TYPE: 'image',
|
|
16
16
|
KONVA_TYPE: 'konva',
|
|
17
17
|
MANIFEST_TYPE: 'manifest',
|
|
18
|
+
MULTIPLE_BODY_TYPE: 'multiple_body',
|
|
18
19
|
TAGGING_TYPE: 'tagging',
|
|
19
20
|
TEXT_TYPE: 'text',
|
|
20
|
-
MULTIPLE_BODY_TYPE: 'multiple_body',
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export const MEDIA_TYPES = {
|
|
@@ -37,7 +37,7 @@ export const getTemplateType = (t, templateType) => TEMPLATE_TYPES(t)
|
|
|
37
37
|
*/
|
|
38
38
|
export const TEMPLATE_TYPES = (t) => [
|
|
39
39
|
{
|
|
40
|
-
description: t('
|
|
40
|
+
description: t('textual_note_with_target'),
|
|
41
41
|
icon: <TextFieldsIcon />,
|
|
42
42
|
id: TEMPLATE.MULTIPLE_BODY_TYPE,
|
|
43
43
|
isCompatibleWithTemplate: (mediaType) => {
|
|
@@ -46,15 +46,15 @@ export const TEMPLATE_TYPES = (t) => [
|
|
|
46
46
|
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
47
47
|
return false;
|
|
48
48
|
},
|
|
49
|
-
label: t('
|
|
49
|
+
label: t('note'),
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
description: t('textual_note_with_target'),
|
|
53
53
|
icon: <TextFieldsIcon />,
|
|
54
54
|
id: TEMPLATE.TEXT_TYPE,
|
|
55
55
|
isCompatibleWithTemplate: (mediaType) => {
|
|
56
|
-
if (mediaType === MEDIA_TYPES.VIDEO) return
|
|
57
|
-
if (mediaType === MEDIA_TYPES.IMAGE) return
|
|
56
|
+
if (mediaType === MEDIA_TYPES.VIDEO) return false;
|
|
57
|
+
if (mediaType === MEDIA_TYPES.IMAGE) return false;
|
|
58
58
|
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
59
59
|
return false;
|
|
60
60
|
},
|
|
@@ -65,9 +65,9 @@ export const TEMPLATE_TYPES = (t) => [
|
|
|
65
65
|
icon: <LocalOfferIcon fontSize="small" />,
|
|
66
66
|
id: TEMPLATE.TAGGING_TYPE,
|
|
67
67
|
isCompatibleWithTemplate: (mediaType) => {
|
|
68
|
-
if (mediaType === MEDIA_TYPES.VIDEO) return
|
|
69
|
-
if (mediaType === MEDIA_TYPES.IMAGE) return
|
|
70
|
-
if (mediaType === MEDIA_TYPES.AUDIO) return
|
|
68
|
+
if (mediaType === MEDIA_TYPES.VIDEO) return false;
|
|
69
|
+
if (mediaType === MEDIA_TYPES.IMAGE) return false;
|
|
70
|
+
if (mediaType === MEDIA_TYPES.AUDIO) return false;
|
|
71
71
|
return false;
|
|
72
72
|
},
|
|
73
73
|
label: t('tag'),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import {
|
|
3
3
|
Grid, Link, TextField, Typography,
|
|
4
4
|
} from '@mui/material';
|
|
@@ -8,7 +8,8 @@ import { isValidUrl } from './AnnotationFormUtils';
|
|
|
8
8
|
/**
|
|
9
9
|
* Handle Manifest Section
|
|
10
10
|
* @param manifestNetwork
|
|
11
|
-
* @param onChange
|
|
11
|
+
* @param onChange - callback function to handle manifest URL changes
|
|
12
|
+
* @param t
|
|
12
13
|
* @returns {Element}
|
|
13
14
|
* @constructor
|
|
14
15
|
*/
|
|
@@ -19,18 +20,6 @@ export default function ManifestNetworkFormSection(
|
|
|
19
20
|
t,
|
|
20
21
|
},
|
|
21
22
|
) {
|
|
22
|
-
// TODO probably useless. check this state
|
|
23
|
-
const [manifestUrl, setManifestUrl] = useState('');
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Handle on change
|
|
27
|
-
* @param value new value
|
|
28
|
-
*/
|
|
29
|
-
const handlOnChange = (value) => {
|
|
30
|
-
setManifestUrl(value);
|
|
31
|
-
onChange(value);
|
|
32
|
-
};
|
|
33
|
-
|
|
34
23
|
return (
|
|
35
24
|
<Grid item container direction="column" spacing={1}>
|
|
36
25
|
<Grid item>
|
|
@@ -41,15 +30,12 @@ export default function ManifestNetworkFormSection(
|
|
|
41
30
|
<Grid item>
|
|
42
31
|
<TextField
|
|
43
32
|
value={manifestNetwork}
|
|
44
|
-
onChange={(event) =>
|
|
33
|
+
onChange={(event) => onChange(event.target.value.trim())}
|
|
45
34
|
label={t('manifest_url')}
|
|
46
35
|
type="url"
|
|
47
36
|
error={!isValidUrl(manifestNetwork)}
|
|
48
37
|
/>
|
|
49
38
|
</Grid>
|
|
50
|
-
<Grid item>
|
|
51
|
-
<Link href={manifestUrl}>{manifestUrl}</Link>
|
|
52
|
-
</Grid>
|
|
53
39
|
<Grid item>
|
|
54
40
|
{isValidUrl(manifestNetwork) && (
|
|
55
41
|
<Link href={manifestNetwork} target="_blank" rel="noreferrer">
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
2
|
import { WithContext as ReactTags } from 'react-tag-input';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
Divider, FormControlLabel, Switch, Typography,
|
|
6
|
+
} from '@mui/material';
|
|
5
7
|
|
|
6
8
|
/**
|
|
7
9
|
* MultiTagsInput component
|
|
@@ -18,6 +20,13 @@ export function MultiTagsInput({
|
|
|
18
20
|
tags,
|
|
19
21
|
tagsSuggestions,
|
|
20
22
|
}) {
|
|
23
|
+
const [showSuggestions, setShowSuggestions] = useState(false);
|
|
24
|
+
|
|
25
|
+
const mappedSuggestionsTags = tagsSuggestions.map((suggestion) => ({
|
|
26
|
+
id: suggestion,
|
|
27
|
+
text: suggestion,
|
|
28
|
+
}));
|
|
29
|
+
|
|
21
30
|
/**
|
|
22
31
|
* Handle tag deletion
|
|
23
32
|
* @param index
|
|
@@ -41,8 +50,10 @@ export function MultiTagsInput({
|
|
|
41
50
|
* Handle tag addition
|
|
42
51
|
* @param tag
|
|
43
52
|
*/
|
|
44
|
-
const handleAddition = (
|
|
45
|
-
|
|
53
|
+
const handleAddition = (newTag) => {
|
|
54
|
+
if (tags.length === 0 || !tags.find((tag) => tag.id === newTag.id)) {
|
|
55
|
+
setTags([...tags, newTag]);
|
|
56
|
+
}
|
|
46
57
|
};
|
|
47
58
|
|
|
48
59
|
/**
|
|
@@ -81,6 +92,50 @@ export function MultiTagsInput({
|
|
|
81
92
|
<Typography variant="formSectionTitle">
|
|
82
93
|
{t('tags')}
|
|
83
94
|
</Typography>
|
|
95
|
+
{/* Show list of suggestions into a clickable tag */}
|
|
96
|
+
{/* add a toggle to show hide suggestions */}
|
|
97
|
+
|
|
98
|
+
<FormControlLabel
|
|
99
|
+
control={(
|
|
100
|
+
<Switch
|
|
101
|
+
value={showSuggestions}
|
|
102
|
+
onClick={() => setShowSuggestions(!showSuggestions)}
|
|
103
|
+
/>
|
|
104
|
+
)}
|
|
105
|
+
label="Suggestion"
|
|
106
|
+
/>
|
|
107
|
+
{
|
|
108
|
+
showSuggestions
|
|
109
|
+
&& (
|
|
110
|
+
<div style={{
|
|
111
|
+
display: 'flex',
|
|
112
|
+
flexWrap: 'wrap',
|
|
113
|
+
gap: '8px',
|
|
114
|
+
}}
|
|
115
|
+
>
|
|
116
|
+
{mappedSuggestionsTags.map((suggestion) => (
|
|
117
|
+
<button
|
|
118
|
+
key={suggestion.id}
|
|
119
|
+
type="button"
|
|
120
|
+
onClick={() => handleAddition(suggestion)}
|
|
121
|
+
style={{
|
|
122
|
+
padding: '6px 12px',
|
|
123
|
+
borderRadius: '16px',
|
|
124
|
+
border: '1px solid #ccc',
|
|
125
|
+
backgroundColor: '#f1f1f1',
|
|
126
|
+
cursor: 'pointer',
|
|
127
|
+
}}
|
|
128
|
+
>
|
|
129
|
+
{suggestion.text}
|
|
130
|
+
</button>
|
|
131
|
+
))}
|
|
132
|
+
</div>
|
|
133
|
+
)
|
|
134
|
+
}
|
|
135
|
+
<Divider
|
|
136
|
+
spacing={2}
|
|
137
|
+
/>
|
|
138
|
+
|
|
84
139
|
<ReactTags
|
|
85
140
|
placeholder={t('pressEnterToAddTag')}
|
|
86
141
|
clearAll
|
|
@@ -93,10 +148,9 @@ export function MultiTagsInput({
|
|
|
93
148
|
onClearAll={onClearAll}
|
|
94
149
|
onTagUpdate={onTagUpdate}
|
|
95
150
|
tags={tags}
|
|
96
|
-
suggestions={
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}))}
|
|
151
|
+
suggestions={mappedSuggestionsTags}
|
|
152
|
+
minQueryLength={1}
|
|
153
|
+
autocomplete
|
|
100
154
|
/>
|
|
101
155
|
</>
|
|
102
156
|
);
|
|
@@ -102,7 +102,7 @@ function NetworkCommentTemplate(
|
|
|
102
102
|
|
|
103
103
|
const baseAnnotation = getBaseAnnotation(annotationState.id);
|
|
104
104
|
if (baseAnnotation) {
|
|
105
|
-
annotationState.id = `${
|
|
105
|
+
annotationState.id = `${baseAnnotation}#${annotation.maeData.manifestNetwork}`;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
saveAnnotation(annotationState);
|