@topconsultnpm/sdkui-react-beta 6.14.76 → 6.14.77
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/lib/components/editors/TMMetadataValues.js +0 -1
- package/lib/components/features/documents/TMDcmtForm.js +1 -1
- package/lib/components/features/search/TMSearchQueryPanel.js +12 -5
- package/lib/components/features/search/TMTreeSelector.js +140 -23
- package/lib/components/grids/TMRecentsManager.js +31 -28
- package/package.json +1 -1
|
@@ -84,7 +84,6 @@ const TMMetadataValues = ({ showCheckBoxes = ShowCheckBoxesMode.Never, checkPerm
|
|
|
84
84
|
return;
|
|
85
85
|
if (!currentDTD)
|
|
86
86
|
return;
|
|
87
|
-
console.log('TMMetadataValues: metadataValues', metadataValues);
|
|
88
87
|
//if no dynamic data list has changed we do not call APIs
|
|
89
88
|
if (deepCompare(metadataValues.filter(o => o.md?.dataDomain === MetadataDataDomains.DynamicDataList), prevMetadataValues.filter(o => o.md?.dataDomain === MetadataDataDomains.DynamicDataList)))
|
|
90
89
|
return;
|
|
@@ -80,7 +80,7 @@ const TMDcmtForm = ({ showHeader = true, onSaveRecents, layoutMode = LayoutModes
|
|
|
80
80
|
setFetchError(null); // reset errore prima del fetch
|
|
81
81
|
if (!TID)
|
|
82
82
|
return;
|
|
83
|
-
if (!DID)
|
|
83
|
+
if (!DID && layoutMode === LayoutModes.Update)
|
|
84
84
|
return;
|
|
85
85
|
TMSpinner.show({ description: 'Loading Metadata...' });
|
|
86
86
|
let getMetadataResult;
|
|
@@ -3,7 +3,7 @@ import { useCallback, useEffect, useState } from 'react';
|
|
|
3
3
|
import { PlatformObjectValidator, WhereItem, SDK_Localizator, OrderByItem, SelectItem, SelectItemVisibilities, SDK_Globals, SavedQueryCacheService, SearchEngine, QueryOperators } from '@topconsultnpm/sdk-ts-beta';
|
|
4
4
|
import styled from 'styled-components';
|
|
5
5
|
import TMSearchQueryEditor from './TMSearchQueryEditor';
|
|
6
|
-
import
|
|
6
|
+
import Toppy from '../../../assets/Toppy-generico.png';
|
|
7
7
|
import { getDcmtTypesByQdAsync, SDKUI_Localizator, getQD, IconMenuVertical, IconAddCircleOutline, IconEdit, IconEasy, IconAdvanced, deepCompare, IconSearch, IconClear, getDefaultOperator, prepareQdForSearchAsync, IsParametricQuery, SDKUI_Globals, IconArrowRight } from '../../../helper';
|
|
8
8
|
import { useQueryParametersDialog } from '../../../hooks/useQueryParametersDialog';
|
|
9
9
|
import { FormModes } from '../../../ts';
|
|
@@ -13,7 +13,7 @@ import ShowAlert from '../../base/TMAlert';
|
|
|
13
13
|
import TMButton from '../../base/TMButton';
|
|
14
14
|
import { useDeviceType, DeviceType } from '../../base/TMDeviceProvider';
|
|
15
15
|
import TMDropDownMenu from '../../base/TMDropDownMenu';
|
|
16
|
-
import TMLayoutContainer
|
|
16
|
+
import TMLayoutContainer from '../../base/TMLayout';
|
|
17
17
|
import { TMExceptionBoxManager } from '../../base/TMPopUp';
|
|
18
18
|
import TMSpinner from '../../base/TMSpinner';
|
|
19
19
|
import TMPanel from '../../base/TMPanel';
|
|
@@ -248,7 +248,7 @@ const TMSearchQueryPanel = ({ fromDTD, showBackToResultButton, isExpertMode = SD
|
|
|
248
248
|
_jsx(TMMetadataChooserForm, { allowMultipleSelection: true, height: '500px', width: '600px', allowSysMetadata: true, qd: qd, selectedIDs: qd?.select?.map((item) => ({ tid: item.tid, mid: item.mid })), onClose: handleCloseOutputConfig, onChoose: handleChooseOutput }), showOrderByConfig &&
|
|
249
249
|
_jsx(TMMetadataChooserForm, { allowMultipleSelection: true, height: '500px', width: '600px', allowSysMetadata: true, qd: qd, selectedIDs: qd?.orderBy?.map((item) => ({ tid: item.tid, mid: item.mid })), onClose: handleCloseOrderByConfig, onChoose: handleChooseOrderBy })] })
|
|
250
250
|
:
|
|
251
|
-
_jsxs(TMLayoutContainer, { gap: 30, alignItems: 'center', justifyContent: 'center', children: [
|
|
251
|
+
_jsxs(TMLayoutContainer, { gap: 30, alignItems: 'center', justifyContent: 'center', children: [_jsx(StyledToppyTextContainer, { children: _jsx(StyledToppyText, { children: SDKUI_Localizator.DcmtTypeSelectOrQuickSearch }) }), _jsx("img", { src: Toppy, width: 120, alt: '' })] }), showSqdForm &&
|
|
252
252
|
_jsx(StyledModalContainer, { style: { backgroundColor: `${TMColors.backgroundColorHeader}12` }, children: _jsx(TMSavedQueryForm, { height: '50%', width: '50%', id: formModeSqdForm === FormModes.Create ? -1 : SQD?.id, title: 'Ricerca rapida', formMode: formModeSqdForm, showBackButton: true, qd: qd, isAdvancedSearch: showAdvancedSearch, isModal: false, onClose: () => { setShowSqdForm(false); }, onSaved: onSqdSaved }) })] }), showDistinctValuesPanel &&
|
|
253
253
|
_jsx(TMDistinctValues, { isModal: true, tid: focusedTidMid?.tid, mid: focusedTidMid?.mid, separator: ',', onClosePanelCallback: () => setShowDistinctValuesPanel(false), onSelectionChanged: (e) => {
|
|
254
254
|
if (!e)
|
|
@@ -328,13 +328,20 @@ export const refreshLastSearch = async (qd) => {
|
|
|
328
328
|
return searchResults;
|
|
329
329
|
};
|
|
330
330
|
export const StyledToppyTextContainer = styled.div `
|
|
331
|
-
padding: 30px
|
|
332
|
-
|
|
331
|
+
padding: 30px 5vw;
|
|
332
|
+
width: 100%;
|
|
333
|
+
max-width: 345px;
|
|
333
334
|
border: 1px solid #2559A5;
|
|
334
335
|
border-radius: 30px;
|
|
335
336
|
display: flex;
|
|
336
337
|
align-items: center;
|
|
337
338
|
justify-content: center;
|
|
339
|
+
box-sizing: border-box;
|
|
340
|
+
|
|
341
|
+
@media (max-width: 400px) {
|
|
342
|
+
padding: 20px 10px;
|
|
343
|
+
max-width: 98vw;
|
|
344
|
+
}
|
|
338
345
|
`;
|
|
339
346
|
export const StyledToppyText = styled.p `
|
|
340
347
|
text-align: center;
|
|
@@ -1,27 +1,32 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useCallback, useEffect, useState } from 'react';
|
|
3
|
-
import { LayoutModes, SDK_Localizator, TreeCacheService, TreeItemTypes } from '@topconsultnpm/sdk-ts-beta';
|
|
3
|
+
import { DcmtTypeListCacheService, LayoutModes, SDK_Localizator, TreeCacheService, TreeItemTypes } from '@topconsultnpm/sdk-ts-beta';
|
|
4
4
|
import { TreeList, Column, Scrolling, Selection } from 'devextreme-react/tree-list';
|
|
5
5
|
import { DropDownBox } from 'devextreme-react';
|
|
6
|
-
import { IconStarRemove, IconStar, SDKUI_Localizator, SDKUI_Globals, IconFolder } from '../../../helper';
|
|
7
|
-
import { StyledDivHorizontal } from '../../base/Styled';
|
|
6
|
+
import { IconStarRemove, IconStar, SDKUI_Localizator, SDKUI_Globals, IconFolder, IconInfo, IconCloseOutline } from '../../../helper';
|
|
7
|
+
import { StyledDivHorizontal, StyledOffCanvasPanel } from '../../base/Styled';
|
|
8
8
|
import TMButton from '../../base/TMButton';
|
|
9
9
|
import TMDataGrid from '../../base/TMDataGrid';
|
|
10
|
-
import TMLayoutContainer, { TMLayoutItem } from '../../base/TMLayout';
|
|
11
10
|
import TMPanel from '../../base/TMPanel';
|
|
12
|
-
import TMTidViewer from '../../viewers/TMTidViewer';
|
|
11
|
+
import TMTidViewer, { renderDTDTooltipContent, TMDcmtTypeTooltip } from '../../viewers/TMTidViewer';
|
|
13
12
|
import { TMColors } from '../../../utils/theme';
|
|
14
13
|
import styled from 'styled-components';
|
|
14
|
+
import { useOutsideClick } from '../../../hooks/useOutsideClick';
|
|
15
|
+
import { DeviceType, useDeviceType } from '../../base/TMDeviceProvider';
|
|
15
16
|
const TMTreeSelector = ({ layoutMode = LayoutModes.Update, isVisible, onSelectedTIDChanged, onClosePanel, allowMaximize = true, onMaximizePanel }) => {
|
|
16
17
|
const [trees, setTrees] = useState([]);
|
|
17
18
|
const [treeItems, setTreeItems] = useState([]);
|
|
18
19
|
const [selectedTreeId, setSelectedTreeId] = useState(0);
|
|
20
|
+
const [infoDTD, setInfoDTD] = useState();
|
|
19
21
|
// State to store selected row keys
|
|
20
22
|
const [selectedRowKeys, setSelectedRowKeys] = useState([]);
|
|
21
23
|
// State hook to store the currently focused row key, initially set to undefined
|
|
22
24
|
const [focusedRowKey, setFocusedRowKey] = useState(undefined);
|
|
23
25
|
const [isGridBoxOpened, setIsGridBoxOpened] = useState(false);
|
|
24
26
|
const [defaultTreeId, setDefaultTreeId] = useState(-1);
|
|
27
|
+
const deviceType = useDeviceType();
|
|
28
|
+
const isMobile = deviceType === DeviceType.MOBILE;
|
|
29
|
+
const panelRef = useOutsideClick(() => setInfoDTD(undefined));
|
|
25
30
|
useEffect(() => {
|
|
26
31
|
if (treeItems.length > 0 && treeItems[0].id) {
|
|
27
32
|
setSelectedRowKeys([treeItems[0].id]);
|
|
@@ -59,10 +64,56 @@ const TMTreeSelector = ({ layoutMode = LayoutModes.Update, isVisible, onSelected
|
|
|
59
64
|
setTreeItems(newTreeItems);
|
|
60
65
|
}, [selectedTreeId]);
|
|
61
66
|
const renderCell = (data) => {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
67
|
+
const treeItem = data.data;
|
|
68
|
+
const [showInfo, setShowInfo] = useState(false);
|
|
69
|
+
// Documento (DcmtType)
|
|
70
|
+
if (treeItem.type === TreeItemTypes.DcmtType) {
|
|
71
|
+
return (_jsxs(StyledDivHorizontal, { style: {
|
|
72
|
+
alignItems: 'center',
|
|
73
|
+
minWidth: 0,
|
|
74
|
+
width: '100%',
|
|
75
|
+
gap: 6,
|
|
76
|
+
position: 'relative'
|
|
77
|
+
}, onMouseEnter: async () => {
|
|
78
|
+
if (!isMobile) {
|
|
79
|
+
setShowInfo(true);
|
|
80
|
+
let dtd = await DcmtTypeListCacheService.GetAsync(treeItem.tid);
|
|
81
|
+
setInfoDTD(dtd);
|
|
82
|
+
}
|
|
83
|
+
}, onMouseLeave: () => {
|
|
84
|
+
if (!isMobile) {
|
|
85
|
+
setShowInfo(false);
|
|
86
|
+
setInfoDTD(undefined);
|
|
87
|
+
}
|
|
88
|
+
}, children: [!isMobile && (_jsx("span", { style: {
|
|
89
|
+
opacity: showInfo ? 1 : 0,
|
|
90
|
+
transition: 'opacity 0.2s',
|
|
91
|
+
pointerEvents: showInfo ? 'auto' : 'none',
|
|
92
|
+
cursor: 'pointer',
|
|
93
|
+
marginRight: 4,
|
|
94
|
+
display: 'flex',
|
|
95
|
+
alignItems: 'center',
|
|
96
|
+
position: 'relative',
|
|
97
|
+
left: 0,
|
|
98
|
+
zIndex: 2
|
|
99
|
+
}, children: _jsx(TMDcmtTypeTooltip, { dtd: infoDTD, children: _jsx(IconInfo, { color: TMColors.info }) }) })), _jsx("span", { style: { cursor: 'pointer', flex: 1, minWidth: 0 }, children: _jsx(TMTidViewer, { tid: treeItem.tid, color: TMColors.primaryColor, showIcon: false }) })] }));
|
|
100
|
+
}
|
|
101
|
+
// Folder (altri tipi)
|
|
102
|
+
return (_jsxs(StyledDivHorizontal, { style: { gap: 5, alignItems: 'center', minWidth: 0 }, children: [_jsx("span", { style: {
|
|
103
|
+
flex: '0 0 auto',
|
|
104
|
+
width: 24,
|
|
105
|
+
height: 24,
|
|
106
|
+
display: 'flex',
|
|
107
|
+
alignItems: 'center',
|
|
108
|
+
justifyContent: 'center'
|
|
109
|
+
}, children: _jsx(IconFolder, { fontSize: 24, color: TMColors.iconLight }) }), _jsx("span", { style: {
|
|
110
|
+
color: TMColors.primaryColor,
|
|
111
|
+
minWidth: 0,
|
|
112
|
+
overflow: 'hidden',
|
|
113
|
+
textOverflow: 'ellipsis',
|
|
114
|
+
whiteSpace: 'nowrap',
|
|
115
|
+
flex: 1,
|
|
116
|
+
}, children: treeItem.nameLoc })] }));
|
|
66
117
|
};
|
|
67
118
|
// Handles selection change in the data grid
|
|
68
119
|
const onSelectionChanged = useCallback((e) => {
|
|
@@ -102,23 +153,89 @@ const TMTreeSelector = ({ layoutMode = LayoutModes.Update, isVisible, onSelected
|
|
|
102
153
|
}
|
|
103
154
|
} }), children: trees.length > 0
|
|
104
155
|
?
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
156
|
+
_jsxs("div", { style: {
|
|
157
|
+
display: 'flex',
|
|
158
|
+
flexDirection: 'column',
|
|
159
|
+
height: '100%',
|
|
160
|
+
width: '100%',
|
|
161
|
+
boxSizing: 'border-box',
|
|
162
|
+
minHeight: 0,
|
|
163
|
+
}, children: [_jsx("div", { style: { padding: '10px' }, children: _jsx(DropDownBox, { dropDownOptions: {
|
|
164
|
+
resizeEnabled: true,
|
|
165
|
+
minWidth: "100%",
|
|
166
|
+
height: trees.length <= 10 ? 300 : 500,
|
|
167
|
+
maxWidth: "100%"
|
|
168
|
+
}, value: selectedTreeId, opened: isGridBoxOpened, valueExpr: "id", displayExpr: "nameLoc", deferRendering: false, dataSource: trees, onValueChanged: syncDataGridSelection, onOptionChanged: onGridBoxOpened, style: { height: 30, padding: '5px' }, children: _jsx(TMDataGrid, { height: "100%", width: "100%", dataSource: trees, dataColumns: [
|
|
169
|
+
{ dataField: 'nameLoc', caption: SDKUI_Localizator.Name, width: 'auto' },
|
|
170
|
+
{ dataField: 'description', caption: SDKUI_Localizator.Description, width: 'auto' },
|
|
171
|
+
], selection: { mode: 'single', showCheckBoxesMode: "none" }, showHeaderFilter: false, selectedRowKeys: selectedRowKeys, onSelectionChanged: onSelectionChanged, focusedRowKey: focusedRowKey, onFocusedRowChanged: onFocusedRowChanged }) }) }), _jsxs(StyledTreeListWrapper, { children: [_jsxs(TreeList, { height: "100%", dataSource: treeItems, showRowLines: false, showColumnLines: false, showBorders: false, columnAutoWidth: false, keyExpr: "id", parentIdExpr: "parentID", dataStructure: "plain", showColumnHeaders: false, onContentReady: (e) => e.component.clearSelection(), onSelectionChanged: (e) => {
|
|
172
|
+
if (e.selectedRowsData[0] && e.selectedRowsData[0].type == TreeItemTypes.DcmtType) {
|
|
173
|
+
onSelectedTIDChanged?.(e.selectedRowsData[0].tid, selectedTreeId);
|
|
174
|
+
}
|
|
175
|
+
}, children: [_jsx(Column, { dataField: "nameLoc", caption: SDKUI_Localizator.Name, cellRender: renderCell, width: "100%" }), _jsx(Scrolling, { mode: "virtual", useNative: Number(SDKUI_Globals.userSettings?.themeSettings.gridSettings.useNativeScrollbar) === 1 }), _jsx(Selection, { mode: "single" })] }), _jsxs(StyledOffCanvasPanel, { ref: panelRef, "$isOpen": isMobile && infoDTD !== undefined, children: [_jsxs(StyledDivHorizontal, { style: { gap: 10, padding: '10px 8px', width: '100%', alignItems: 'center' }, children: [_jsx("p", { style: { fontSize: '1.1rem', fontWeight: 'bold' }, children: `${SDKUI_Localizator.DcmtType} - ${SDKUI_Localizator.About}` }), _jsx(IconCloseOutline, { style: { marginLeft: 'auto', cursor: 'pointer' }, onClick: () => setInfoDTD(undefined) })] }), renderDTDTooltipContent(infoDTD)] })] })] })
|
|
118
176
|
: _jsx("div", { style: { display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100%', width: '100%', fontSize: '1.5rem' }, children: SDKUI_Localizator.TreesNoAvailable }) }));
|
|
119
177
|
};
|
|
120
178
|
export default TMTreeSelector;
|
|
179
|
+
const StyledTidItem = styled.div `
|
|
180
|
+
display: flex;
|
|
181
|
+
flex-direction: column;
|
|
182
|
+
align-items: stretch;
|
|
183
|
+
min-width: 0;
|
|
184
|
+
/* padding: 10px; */
|
|
185
|
+
position: relative;
|
|
186
|
+
|
|
187
|
+
&:hover {
|
|
188
|
+
cursor: pointer;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.info-icon {
|
|
192
|
+
position: absolute;
|
|
193
|
+
left: -7px;
|
|
194
|
+
top: calc(50% - 5px);
|
|
195
|
+
transform: translateY(-50%);
|
|
196
|
+
opacity: 0;
|
|
197
|
+
transition: opacity 0.2s;
|
|
198
|
+
pointer-events: none;
|
|
199
|
+
// On mobile, never show
|
|
200
|
+
${({ $isMobile }) => $isMobile && `
|
|
201
|
+
display: none !important;
|
|
202
|
+
`}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
&:hover .info-icon {
|
|
206
|
+
opacity: 1;
|
|
207
|
+
pointer-events: auto;
|
|
208
|
+
}
|
|
209
|
+
`;
|
|
121
210
|
const StyledTreeListWrapper = styled.div `
|
|
211
|
+
width: 100%;
|
|
212
|
+
height: 100%;
|
|
213
|
+
min-height: 0;
|
|
214
|
+
flex: 1;
|
|
215
|
+
display: flex;
|
|
216
|
+
flex-direction: column;
|
|
217
|
+
|
|
218
|
+
.dx-treelist,
|
|
219
|
+
.dx-treelist-rowsview,
|
|
220
|
+
.dx-scrollable,
|
|
221
|
+
.dx-scrollable-wrapper,
|
|
222
|
+
.dx-scrollable-container,
|
|
223
|
+
.dx-scrollable-content {
|
|
224
|
+
height: 100% !important;
|
|
225
|
+
min-height: 0 !important;
|
|
226
|
+
max-height: 100% !important;
|
|
227
|
+
box-sizing: border-box;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.dx-scrollable-scrollbar.dx-scrollbar-vertical {
|
|
231
|
+
/* Mostra solo quando serve */
|
|
232
|
+
opacity: 1 !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.dx-scrollable-scrollbar.dx-scrollbar-horizontal {
|
|
236
|
+
display: none !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
122
239
|
.dx-treelist-container>.dx-treelist-headers,
|
|
123
240
|
.dx-treelist-container>.dx-treelist-rowsview {
|
|
124
241
|
background-color: transparent;
|
|
@@ -132,7 +249,7 @@ const StyledTreeListWrapper = styled.div `
|
|
|
132
249
|
}
|
|
133
250
|
|
|
134
251
|
.dx-row > td {
|
|
135
|
-
padding: 10px
|
|
252
|
+
padding: 10px;
|
|
136
253
|
font-size: 1rem;
|
|
137
254
|
white-space: nowrap;
|
|
138
255
|
overflow: hidden;
|
|
@@ -18,26 +18,26 @@ const StyledRecentTidItem = styled.div `
|
|
|
18
18
|
min-width: 0;
|
|
19
19
|
padding: 10px;
|
|
20
20
|
position: relative;
|
|
21
|
-
|
|
21
|
+
gap: 0;
|
|
22
22
|
|
|
23
23
|
&:hover {
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.info-icon {
|
|
28
|
-
position: absolute;
|
|
29
|
-
left: -7px;
|
|
30
|
-
top: calc(50% - 5px);
|
|
31
|
-
transform: translateY(-50%);
|
|
32
28
|
opacity: 0;
|
|
33
|
-
transition: opacity 0.2s;
|
|
34
29
|
pointer-events: none;
|
|
35
|
-
|
|
30
|
+
transition: opacity 0.2s;
|
|
36
31
|
${({ $isMobile }) => $isMobile && `
|
|
37
32
|
display: none !important;
|
|
38
33
|
`}
|
|
39
34
|
}
|
|
40
35
|
|
|
36
|
+
&:hover .info-icon {
|
|
37
|
+
opacity: 1;
|
|
38
|
+
pointer-events: auto;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
41
|
&::after {
|
|
42
42
|
content: '';
|
|
43
43
|
display: block;
|
|
@@ -47,13 +47,8 @@ const StyledRecentTidItem = styled.div `
|
|
|
47
47
|
margin-top: 8px;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
&:hover .info-icon {
|
|
51
|
-
opacity: 1;
|
|
52
|
-
pointer-events: auto;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
50
|
&:last-child {
|
|
56
|
-
border-bottom: none;
|
|
51
|
+
border-bottom: none;
|
|
57
52
|
margin-bottom: 0;
|
|
58
53
|
}
|
|
59
54
|
`;
|
|
@@ -82,7 +77,28 @@ const TMRecentsManager = ({ deviceType, mruTIDs, currentMruTID, onSelectedTID, o
|
|
|
82
77
|
overflow: 'hidden',
|
|
83
78
|
textOverflow: 'ellipsis'
|
|
84
79
|
}, children: `${SDKUI_Localizator.AllDcmtTypes} (${DcmtTypeListCacheService.CacheCount(true)})` }) }) }, 0), recentDcmtTypes.map((dtd) => {
|
|
85
|
-
|
|
80
|
+
const isCurrent = currentMruTID == dtd.id;
|
|
81
|
+
return (_jsxs(StyledRecentTidItem, { id: `tid-${dtd.id}`, "$isMobile": isMobile, onClick: () => { onSelectedTID?.(dtd.id ?? 0); }, children: [_jsxs(StyledDivHorizontal, { style: { alignItems: 'center', gap: 8, width: '100%' }, children: [!isMobile && (_jsx("span", { className: "info-icon", style: {
|
|
82
|
+
marginRight: 4,
|
|
83
|
+
display: 'flex',
|
|
84
|
+
alignItems: 'center'
|
|
85
|
+
}, children: _jsx(TMDcmtTypeTooltip, { dtd: dtd, children: _jsx(IconInfo, { color: TMColors.info }) }) })), _jsx("div", { style: {
|
|
86
|
+
flex: 1,
|
|
87
|
+
display: 'flex',
|
|
88
|
+
alignItems: 'center',
|
|
89
|
+
justifyContent: 'center',
|
|
90
|
+
minWidth: 0
|
|
91
|
+
}, children: _jsx(TMTidViewer, { tid: dtd.id, color: TMColors.primaryColor, showIcon: false }) }), isCurrent && (_jsx("span", { style: {
|
|
92
|
+
width: 24,
|
|
93
|
+
height: 24,
|
|
94
|
+
borderRadius: 24,
|
|
95
|
+
display: 'flex',
|
|
96
|
+
alignItems: 'center',
|
|
97
|
+
justifyContent: 'center',
|
|
98
|
+
fontSize: '1rem',
|
|
99
|
+
fontWeight: 'bold',
|
|
100
|
+
marginLeft: 8
|
|
101
|
+
}, children: _jsx(IconApply, { fontSize: 24, color: 'green' }) }))] }), _jsx(ContextMenu, { dataSource: [
|
|
86
102
|
{
|
|
87
103
|
text: SDKUI_Localizator.Remove,
|
|
88
104
|
icon: iconDelete(),
|
|
@@ -95,20 +111,7 @@ const TMRecentsManager = ({ deviceType, mruTIDs, currentMruTID, onSelectedTID, o
|
|
|
95
111
|
onClick: () => { setInfoDTD(dtd); }
|
|
96
112
|
}
|
|
97
113
|
] : [])
|
|
98
|
-
], target: `#tid-${dtd.id}` }),
|
|
99
|
-
_jsx("div", { style: {
|
|
100
|
-
width: '24px',
|
|
101
|
-
height: '24px',
|
|
102
|
-
borderRadius: '24px',
|
|
103
|
-
position: 'absolute',
|
|
104
|
-
top: '5px',
|
|
105
|
-
right: '0px',
|
|
106
|
-
display: 'flex',
|
|
107
|
-
alignItems: 'center',
|
|
108
|
-
justifyContent: 'center',
|
|
109
|
-
fontSize: '1rem',
|
|
110
|
-
fontWeight: 'bold'
|
|
111
|
-
}, children: _jsx(IconApply, { fontSize: 24, color: 'green' }) })] }, dtd.id));
|
|
114
|
+
], target: `#tid-${dtd.id}` })] }, dtd.id));
|
|
112
115
|
})] }), showDcmtTypeChooser && _jsx(TMDcmtTypeChooserForm, { onClose: () => setShowDcmtTypeChooser(false), onChoose: (tids) => { onSelectedTID?.(tids?.[0] ?? 0); } }), _jsxs(StyledOffCanvasPanel, { ref: panelRef, "$isOpen": isMobile && infoDTD !== undefined, children: [_jsxs(StyledDivHorizontal, { style: { gap: 10, padding: '10px 8px', width: '100%', alignItems: 'center' }, children: [_jsx("p", { style: { fontSize: '1.1rem', fontWeight: 'bold' }, children: `${SDKUI_Localizator.DcmtType} - ${SDKUI_Localizator.About}` }), _jsx(IconCloseOutline, { style: { marginLeft: 'auto', cursor: 'pointer' }, onClick: () => setInfoDTD(undefined) })] }), renderDTDTooltipContent(infoDTD)] })] }));
|
|
113
116
|
};
|
|
114
117
|
export default TMRecentsManager;
|