@dashadmin/dash-components 1.3.24 → 1.3.26
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/dist/components/AuditLog/AuditLog.js +345 -1
- package/dist/components/AuditLog/index.js +4 -1
- package/dist/components/AutoCompleteArrayInput/AutoCompleteCheckBoxInput.js +630 -3
- package/dist/components/AutoCompleteArrayInput/AutocompleteCheckBoxArrayInput.js +53 -1
- package/dist/components/AutoCompleteArrayInputAutoSearch/AutoCompleteCheckBoxInput.js +647 -3
- package/dist/components/AutoCompleteArrayInputAutoSearch/AutocompleteCheckBoxArrayInput.js +53 -1
- package/dist/components/Json/Json.js +235 -1
- package/dist/components/JsonColorSelector/JsonColorSelector.js +1172 -1
- package/dist/components/JsonColorSelector/JsonColorSelectorEnhanced.js +863 -2
- package/dist/components/JsonColorSelector/JsonCssVarValues.js +738 -1
- package/dist/components/JsonColorSelector/components/ColorEditDialog.js +426 -1
- package/dist/components/JsonColorSelector/components/ColorPaletteItem.js +75 -1
- package/dist/components/JsonColorSelector/components/ImageColorExtractor.js +283 -1
- package/dist/components/JsonColorSelector/helpers/functions.js +101 -1
- package/dist/components/JsonColorSelector/useAsyncColorThief.js +105 -1
- package/dist/components/ListActive/ListActive.js +126 -1
- package/dist/components/ListActive/ListBoolean.js +124 -1
- package/dist/components/NotificationPreferences/NotificationPreferences.js +317 -1
- package/dist/components/NotificationPreferences/index.js +7 -1
- package/dist/components/SearchableSelects/RASearchableSelect.js +236 -1
- package/dist/components/SearchableSelects/RASearchableSelectCheckboxes.js +479 -1
- package/dist/components/SearchableSelects/RASearchableSelectChips.js +465 -1
- package/dist/components/SearchableSelects/RASearchableSelectChipsRecordContext.js +295 -1
- package/dist/components/SearchableSelects/SearchableSelect.js +202 -1
- package/dist/components/SearchableSelects/SearchableSelectCheckboxes.js +290 -1
- package/dist/components/SortableDataGrid/SortableDataGrid.js +72 -1
- package/dist/components/SortableDataGrid/SortableDataGridBody.js +167 -1
- package/dist/components/SortableDataGrid/SortableDataGridHeader.js +109 -1
- package/dist/components/SortableDataGrid/SortableDataGridRow.js +283 -1
- package/dist/components/Upload/SingleImageUploader.js +40 -1
- package/dist/components/custom/PackageCopyMethod.js +78 -1
- package/dist/components/custom/PackageRadioButtonGroup.js +45 -1
- package/dist/components/dialog/Basic.js +8 -1
- package/dist/components/dialog/Correct.js +14 -1
- package/dist/components/dialog/Error.js +14 -1
- package/dist/components/dialog/Info.js +14 -1
- package/dist/components/dialog/InfoV2.js +21 -1
- package/dist/components/dialog/NotFound.js +14 -1
- package/dist/components/dialog/QuickSearch.js +117 -1
- package/dist/components/notifications/NotificationsCenter.js +597 -1
- package/dist/components/notifications/index.js +24 -1
- package/dist/components/tables/PaginationComponent.js +36 -1
- package/dist/components/theme/AppLoadingFallback.js +38 -2
- package/dist/components/theme/ErrorBoundary.js +52 -1
- package/dist/components/theme/InitialLoader.js +13 -1
- package/dist/components/theme/NotFound.js +136 -1
- package/dist/components/theme/NotResults.js +38 -1
- package/dist/hooks/useDraggable.js +6 -1
- package/dist/hooks/useNotifications.js +8 -1
- package/dist/hooks/useQuickSearch.js +26 -1
- package/dist/index.js +66 -5567
- package/dist/utils/setNativeValue.js +17 -1
- package/package.json +149 -132
- package/src/components/AuditLog/AuditLog.tsx +476 -0
- package/src/components/AuditLog/index.ts +2 -0
- package/src/components/AutoCompleteArrayInput/AutoCompleteCheckBoxInput.tsx +917 -0
- package/src/components/AutoCompleteArrayInput/AutocompleteCheckBoxArrayInput.tsx +39 -0
- package/src/components/AutoCompleteArrayInputAutoSearch/AutoCompleteCheckBoxInput.tsx +916 -0
- package/src/components/AutoCompleteArrayInputAutoSearch/AutocompleteCheckBoxArrayInput.tsx +44 -0
- package/src/components/Json/Json.tsx +312 -0
- package/src/components/JsonColorSelector/JsonColorSelector.tsx +1435 -0
- package/src/components/JsonColorSelector/JsonColorSelectorEnhanced.tsx +1029 -0
- package/src/components/JsonColorSelector/JsonCssVarValues.tsx +863 -0
- package/src/components/JsonColorSelector/components/ColorEditDialog.tsx +491 -0
- package/src/components/JsonColorSelector/components/ColorPaletteItem.tsx +80 -0
- package/src/components/JsonColorSelector/components/ImageColorExtractor.tsx +328 -0
- package/src/components/JsonColorSelector/helpers/functions.tsx +123 -0
- package/src/components/JsonColorSelector/interfaces/interfaces.tsx +22 -0
- package/src/components/JsonColorSelector/useAsyncColorThief.tsx +97 -0
- package/src/components/ListActive/ListActive.tsx +106 -0
- package/src/components/ListActive/ListBoolean.tsx +96 -0
- package/src/components/NotificationPreferences/NotificationPreferences.tsx +463 -0
- package/src/components/NotificationPreferences/index.tsx +2 -0
- package/src/components/SearchableSelects/RASearchableSelect.tsx +300 -0
- package/src/components/SearchableSelects/RASearchableSelectCheckboxes.tsx +604 -0
- package/src/components/SearchableSelects/RASearchableSelectChips.tsx +558 -0
- package/src/components/SearchableSelects/RASearchableSelectChipsRecordContext.tsx +362 -0
- package/src/components/SearchableSelects/SearchableSelect.tsx +321 -0
- package/src/components/SearchableSelects/SearchableSelectCheckboxes.tsx +355 -0
- package/src/components/SortableDataGrid/SortableDataGrid.tsx +56 -0
- package/src/components/SortableDataGrid/SortableDataGridBody.tsx +175 -0
- package/src/components/SortableDataGrid/SortableDataGridHeader.tsx +171 -0
- package/src/components/SortableDataGrid/SortableDataGridRow.tsx +247 -0
- package/src/components/Upload/SingleImageUploader.tsx +55 -0
- package/src/components/custom/PackageCopyMethod.tsx +109 -0
- package/src/components/custom/PackageRadioButtonGroup.tsx +47 -0
- package/src/components/dialog/Basic.tsx +11 -0
- package/src/components/dialog/Correct.tsx +16 -0
- package/src/components/dialog/Error.tsx +15 -0
- package/src/components/dialog/Info.tsx +15 -0
- package/src/components/dialog/InfoV2.tsx +35 -0
- package/src/components/dialog/NotFound.tsx +18 -0
- package/src/components/dialog/QuickSearch.tsx +115 -0
- package/src/components/notifications/NotificationsCenter.tsx +792 -0
- package/src/components/notifications/index.ts +42 -0
- package/src/components/tables/PaginationComponent.tsx +17 -0
- package/src/components/theme/AppLoadingFallback.tsx +42 -0
- package/src/components/theme/ErrorBoundary.tsx +57 -0
- package/src/components/theme/InitialLoader.tsx +16 -0
- package/src/components/theme/NotFound.tsx +124 -0
- package/src/components/theme/NotResults.tsx +54 -0
- package/src/hooks/useDraggable.ts +11 -0
- package/src/hooks/useNotifications.ts +14 -0
- package/src/hooks/useQuickSearch.tsx +29 -0
- package/src/index.tsx +77 -0
- package/src/utils/setNativeValue.tsx +23 -0
- package/dist/color-thief-CTwGFhOB.js +0 -272
- /package/{dist → src}/components/AutoCompleteArrayInputAutoSearch/AutocompleteCheckBoxArrayAutoSearch.tsx.wip +0 -0
- /package/{dist → src}/components/JsonColorSelector/JsonColorSelector.tsx.bkup +0 -0
- /package/{dist → src}/components/SortableDataGrid/README.md +0 -0
- /package/{dist → src}/styles/index.less +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import Button from '@mui/material/Button';
|
|
2
|
+
|
|
3
|
+
const DialogInfoV2 = () => {
|
|
4
|
+
return (
|
|
5
|
+
<>
|
|
6
|
+
<p>
|
|
7
|
+
<strong>Paquete egresado</strong>
|
|
8
|
+
</p>
|
|
9
|
+
<p>
|
|
10
|
+
<strong style={{ color: '#9A65E0' }}>
|
|
11
|
+
Fecha y hora: 12/02/2023 12:23:43
|
|
12
|
+
</strong>
|
|
13
|
+
</p>
|
|
14
|
+
<p>
|
|
15
|
+
<strong style={{ color: '#9A65E0' }}>Estado: En depósito</strong>
|
|
16
|
+
</p>
|
|
17
|
+
<br />
|
|
18
|
+
<Button className='btn-width-lg'>
|
|
19
|
+
Egresar nuevamente
|
|
20
|
+
</Button>
|
|
21
|
+
<br />
|
|
22
|
+
<br />
|
|
23
|
+
<Button className='btn-width-lg'>
|
|
24
|
+
Duplicado
|
|
25
|
+
</Button>
|
|
26
|
+
<br />
|
|
27
|
+
<br />
|
|
28
|
+
<Button className='btn-width-lg'>
|
|
29
|
+
Cerrar
|
|
30
|
+
</Button>
|
|
31
|
+
</>
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export default DialogInfoV2;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Button } from '@mui/material';
|
|
2
|
+
|
|
3
|
+
const DialogNotFound = () => {
|
|
4
|
+
return (
|
|
5
|
+
<>
|
|
6
|
+
<p>
|
|
7
|
+
<strong>Lo sentimos</strong>
|
|
8
|
+
</p>
|
|
9
|
+
<p>No se ha encontrado lo solicitado</p>
|
|
10
|
+
<br />
|
|
11
|
+
<Button className='btn-width-md'>
|
|
12
|
+
Aceptar
|
|
13
|
+
</Button>
|
|
14
|
+
</>
|
|
15
|
+
);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default DialogNotFound;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react';
|
|
2
|
+
import Button from '@mui/material/Button';
|
|
3
|
+
import { useNavigate } from 'react-router-dom';
|
|
4
|
+
import * as React from 'react';
|
|
5
|
+
|
|
6
|
+
import DASHModal from 'dash-modal';
|
|
7
|
+
import { TextField } from '@mui/material';
|
|
8
|
+
import useQuickSearch from '../../hooks/useQuickSearch';
|
|
9
|
+
import setNativeValue from '../../utils/setNativeValue';
|
|
10
|
+
|
|
11
|
+
export interface IQuickSearch {
|
|
12
|
+
searchUrl?: string;
|
|
13
|
+
}
|
|
14
|
+
const QuickSearch: React.FC<IQuickSearch> = (props) => {
|
|
15
|
+
const { searchUrl = '/admin/package' } = props;
|
|
16
|
+
|
|
17
|
+
const navigateTo = useNavigate();
|
|
18
|
+
const [options, setOptions] = useState<{ q: string }>({ q: '' });
|
|
19
|
+
const [open, setOpen] = React.useState(false);
|
|
20
|
+
const { sendQuickSearchEvent } = useQuickSearch();
|
|
21
|
+
|
|
22
|
+
const inputRef = React.useRef<HTMLInputElement>(null);
|
|
23
|
+
|
|
24
|
+
const toggleModal = (value?: boolean) => {
|
|
25
|
+
if (value === null || value === undefined) {
|
|
26
|
+
setOpen(true);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
setOpen(!open);
|
|
31
|
+
};
|
|
32
|
+
// TODO: [bug] somethomes when clicking fast between pages seems to be related to an infinite loop redirection issue because of the timeout;
|
|
33
|
+
const search = () => {
|
|
34
|
+
toggleModal(false);
|
|
35
|
+
//sendQuickSearchEvent(options.q);
|
|
36
|
+
// This timeout sends the event that triggers the filters change in the searchUrl target;
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
//sendQuickSearchEvent(options.q);
|
|
40
|
+
//setNativeValue(document.getElementById("quickSearch"),options.q);
|
|
41
|
+
|
|
42
|
+
navigateTo({
|
|
43
|
+
pathname: searchUrl,
|
|
44
|
+
//search: `filter=${stringify({ quickSearch: options.q}, { arrayFormat: 'bracket', arrayFormatSeparator:":" })}`,
|
|
45
|
+
//search: `quickSearch=${options.q}`
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
setTimeout(() => {
|
|
49
|
+
sendQuickSearchEvent(options.q);
|
|
50
|
+
setNativeValue(document.getElementById("quickSearch"),options.q);
|
|
51
|
+
}, 2000);
|
|
52
|
+
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
useEffect(() => {
|
|
56
|
+
if (open === true) {
|
|
57
|
+
setTimeout(() => {
|
|
58
|
+
inputRef.current?.focus();
|
|
59
|
+
}, 10);
|
|
60
|
+
}
|
|
61
|
+
}, [open]);
|
|
62
|
+
|
|
63
|
+
return (
|
|
64
|
+
<>
|
|
65
|
+
<Button
|
|
66
|
+
//htmlType="button"
|
|
67
|
+
//variant="default"
|
|
68
|
+
className='dash-header-actions-btn'
|
|
69
|
+
onClick={() => toggleModal(true)}
|
|
70
|
+
>
|
|
71
|
+
Búsqueda rápida
|
|
72
|
+
</Button>
|
|
73
|
+
|
|
74
|
+
<DASHModal
|
|
75
|
+
onCancel={() => {
|
|
76
|
+
toggleModal(false);
|
|
77
|
+
}}
|
|
78
|
+
onConfirm={() => search()}
|
|
79
|
+
title='Búsqueda rápida'
|
|
80
|
+
variant={'info'}
|
|
81
|
+
open={open}
|
|
82
|
+
confirmText={'Buscar'}
|
|
83
|
+
>
|
|
84
|
+
<div
|
|
85
|
+
style={{
|
|
86
|
+
display: 'flex',
|
|
87
|
+
flexDirection: 'column',
|
|
88
|
+
alignItems: 'stretch',
|
|
89
|
+
textAlign: 'left',
|
|
90
|
+
}}
|
|
91
|
+
>
|
|
92
|
+
<TextField
|
|
93
|
+
inputRef={inputRef}
|
|
94
|
+
// eslint-disable-next-line jsx-a11y/no-autofocus
|
|
95
|
+
autoFocus={true}
|
|
96
|
+
variant='outlined'
|
|
97
|
+
placeholder='Buscar por nombre, apellido, ID dash'
|
|
98
|
+
label='Buscar'
|
|
99
|
+
onChange={({ target: { value } }) =>
|
|
100
|
+
setOptions((prevState) => ({ ...prevState, q: value }))
|
|
101
|
+
}
|
|
102
|
+
onKeyDown={(ev) => {
|
|
103
|
+
//console.log(`Pressed keyCode ${ev.key}`);
|
|
104
|
+
if (ev.key === 'Enter') {
|
|
105
|
+
// Do code here
|
|
106
|
+
search();
|
|
107
|
+
}
|
|
108
|
+
}}
|
|
109
|
+
/>
|
|
110
|
+
</div>
|
|
111
|
+
</DASHModal>
|
|
112
|
+
</>
|
|
113
|
+
);
|
|
114
|
+
};
|
|
115
|
+
export default QuickSearch;
|