@windwalker-io/unicorn-next 0.1.0
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/.editorconfig +18 -0
- package/.gulp.json +7 -0
- package/bin/release.mjs +47 -0
- package/dist/chunks/_arrayPush.js +168 -0
- package/dist/chunks/_arrayPush.js.map +1 -0
- package/dist/chunks/_baseRest.js +73 -0
- package/dist/chunks/_baseRest.js.map +1 -0
- package/dist/chunks/_commonjsHelpers.js +7 -0
- package/dist/chunks/_commonjsHelpers.js.map +1 -0
- package/dist/chunks/_getPrototype.js +130 -0
- package/dist/chunks/_getPrototype.js.map +1 -0
- package/dist/chunks/button-radio.js +147 -0
- package/dist/chunks/button-radio.js.map +1 -0
- package/dist/chunks/checkboxes-multi-select.js +44 -0
- package/dist/chunks/checkboxes-multi-select.js.map +1 -0
- package/dist/chunks/cloneDeep.js +287 -0
- package/dist/chunks/cloneDeep.js.map +1 -0
- package/dist/chunks/cropper.min.js +5 -0
- package/dist/chunks/cropper.min.js.map +1 -0
- package/dist/chunks/field-cascade-select.js +256 -0
- package/dist/chunks/field-cascade-select.js.map +1 -0
- package/dist/chunks/field-file-drag.js +218 -0
- package/dist/chunks/field-file-drag.js.map +1 -0
- package/dist/chunks/field-flatpickr.js +893 -0
- package/dist/chunks/field-flatpickr.js.map +1 -0
- package/dist/chunks/field-modal-select.js +403 -0
- package/dist/chunks/field-modal-select.js.map +1 -0
- package/dist/chunks/field-modal-tree.js +790 -0
- package/dist/chunks/field-modal-tree.js.map +1 -0
- package/dist/chunks/field-multi-uploader.js +256 -0
- package/dist/chunks/field-multi-uploader.js.map +1 -0
- package/dist/chunks/field-repeatable.js +132 -0
- package/dist/chunks/field-repeatable.js.map +1 -0
- package/dist/chunks/field-single-image-drag.js +338 -0
- package/dist/chunks/field-single-image-drag.js.map +1 -0
- package/dist/chunks/form.js +154 -0
- package/dist/chunks/form.js.map +1 -0
- package/dist/chunks/grid.js +345 -0
- package/dist/chunks/grid.js.map +1 -0
- package/dist/chunks/http-client.js +229 -0
- package/dist/chunks/http-client.js.map +1 -0
- package/dist/chunks/iframe-modal.js +124 -0
- package/dist/chunks/iframe-modal.js.map +1 -0
- package/dist/chunks/index.js +309 -0
- package/dist/chunks/index.js.map +1 -0
- package/dist/chunks/isArguments.js +146 -0
- package/dist/chunks/isArguments.js.map +1 -0
- package/dist/chunks/keep-tab.js +101 -0
- package/dist/chunks/keep-tab.js.map +1 -0
- package/dist/chunks/legacy.js +210 -0
- package/dist/chunks/legacy.js.map +1 -0
- package/dist/chunks/list-dependent.js +231 -0
- package/dist/chunks/list-dependent.js.map +1 -0
- package/dist/chunks/s3-multipart-uploader.js +172 -0
- package/dist/chunks/s3-multipart-uploader.js.map +1 -0
- package/dist/chunks/s3-uploader.js +136 -0
- package/dist/chunks/s3-uploader.js.map +1 -0
- package/dist/chunks/show-on.js +237 -0
- package/dist/chunks/show-on.js.map +1 -0
- package/dist/chunks/tinymce.js +196 -0
- package/dist/chunks/tinymce.js.map +1 -0
- package/dist/chunks/ui-bootstrap5.js +71 -0
- package/dist/chunks/ui-bootstrap5.js.map +1 -0
- package/dist/chunks/unicorn.js +2202 -0
- package/dist/chunks/unicorn.js.map +1 -0
- package/dist/chunks/validation.js +854 -0
- package/dist/chunks/validation.js.map +1 -0
- package/dist/editor.css +1 -0
- package/dist/index.d.ts +1427 -0
- package/dist/multi-level-menu.css +1 -0
- package/dist/switcher.css +1 -0
- package/dist/unicorn-next.css +12 -0
- package/dist/unicorn.js +125 -0
- package/dist/unicorn.js.map +1 -0
- package/fusionfile.mjs +155 -0
- package/images/ajax-loader.gif +0 -0
- package/images/placeholder/avatar.png +0 -0
- package/images/placeholder/image-16x10.png +0 -0
- package/images/placeholder/image-16x9.png +0 -0
- package/images/placeholder/image-1x1.png +0 -0
- package/images/placeholder/image-4x3.png +0 -0
- package/package.json +102 -0
- package/scss/bootstrap/multi-level-menu.scss +121 -0
- package/scss/editor.scss +116 -0
- package/scss/field/file-drag.scss +102 -0
- package/scss/field/single-image-drag.scss +88 -0
- package/scss/field/vue-drag-uploader.scss +160 -0
- package/scss/switcher.scss +156 -0
- package/src/app.ts +128 -0
- package/src/bootstrap/button-radio.ts +208 -0
- package/src/bootstrap/keep-tab.ts +155 -0
- package/src/composable/index.ts +21 -0
- package/src/composable/useCheckboxesMultiSelect.ts +22 -0
- package/src/composable/useFieldCascadeSelect.ts +9 -0
- package/src/composable/useFieldFileDrag.ts +9 -0
- package/src/composable/useFieldFlatpickr.ts +3 -0
- package/src/composable/useFieldModalSelect.ts +6 -0
- package/src/composable/useFieldModalTree.ts +3 -0
- package/src/composable/useFieldMultiUploader.ts +3 -0
- package/src/composable/useFieldRepeatable.ts +9 -0
- package/src/composable/useFieldSingleImageDrag.ts +5 -0
- package/src/composable/useForm.ts +43 -0
- package/src/composable/useGrid.ts +57 -0
- package/src/composable/useHttp.ts +8 -0
- package/src/composable/useIframeModal.ts +9 -0
- package/src/composable/useListDependent.ts +26 -0
- package/src/composable/useQueue.ts +13 -0
- package/src/composable/useS3Uploader.ts +32 -0
- package/src/composable/useShowOn.ts +9 -0
- package/src/composable/useStack.ts +13 -0
- package/src/composable/useTinymce.ts +29 -0
- package/src/composable/useTomSelect.ts +72 -0
- package/src/composable/useUIBootstrap5.ts +48 -0
- package/src/composable/useUniDirective.ts +32 -0
- package/src/composable/useValidation.ts +39 -0
- package/src/data.ts +36 -0
- package/src/events.ts +73 -0
- package/src/legacy/legacy.ts +186 -0
- package/src/legacy/loader.ts +125 -0
- package/src/module/checkboxes-multi-select.ts +54 -0
- package/src/module/field-cascade-select.ts +292 -0
- package/src/module/field-file-drag.ts +292 -0
- package/src/module/field-flatpickr.ts +127 -0
- package/src/module/field-modal-select.ts +174 -0
- package/src/module/field-modal-tree.ts +27 -0
- package/src/module/field-multi-uploader.ts +361 -0
- package/src/module/field-repeatable.ts +202 -0
- package/src/module/field-single-image-drag.ts +468 -0
- package/src/module/form.ts +223 -0
- package/src/module/grid.ts +465 -0
- package/src/module/http-client.ts +243 -0
- package/src/module/iframe-modal.ts +167 -0
- package/src/module/list-dependent.ts +321 -0
- package/src/module/s3-multipart-uploader.ts +300 -0
- package/src/module/s3-uploader.ts +234 -0
- package/src/module/show-on.ts +173 -0
- package/src/module/tinymce.ts +263 -0
- package/src/module/ui-bootstrap5.ts +107 -0
- package/src/module/validation.ts +1019 -0
- package/src/plugin/index.ts +1 -0
- package/src/plugin/php-adapter.ts +65 -0
- package/src/polyfill/form-request-submit.ts +31 -0
- package/src/polyfill/index.ts +9 -0
- package/src/service/animate.ts +58 -0
- package/src/service/crypto.ts +27 -0
- package/src/service/dom-watcher.ts +62 -0
- package/src/service/dom.ts +265 -0
- package/src/service/helper.ts +48 -0
- package/src/service/index.ts +10 -0
- package/src/service/lang.ts +122 -0
- package/src/service/loader.ts +152 -0
- package/src/service/router.ts +118 -0
- package/src/service/ui.ts +497 -0
- package/src/service/uri.ts +106 -0
- package/src/types/base.ts +9 -0
- package/src/types/index.ts +4 -0
- package/src/types/modal-tree.ts +12 -0
- package/src/types/plugin.ts +6 -0
- package/src/types/shims.d.ts +18 -0
- package/src/types/ui.ts +6 -0
- package/src/unicorn.ts +63 -0
- package/src/utilities/arr.ts +25 -0
- package/src/utilities/base.ts +9 -0
- package/src/utilities/data.ts +48 -0
- package/src/utilities/index.ts +5 -0
- package/src/utilities/tree.ts +20 -0
- package/src/vue/components/ModalTree/ModalTreeApp.vue +175 -0
- package/src/vue/components/ModalTree/TreeItem.vue +262 -0
- package/src/vue/components/ModalTree/TreeModal.vue +225 -0
- package/tests/test.js +4 -0
- package/tsconfig.js.json +25 -0
- package/tsconfig.json +17 -0
- package/vite.assets.config.ts +61 -0
- package/vite.config.test.ts +36 -0
- package/vite.config.ts +112 -0
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, CreateAxiosDefaults } from 'axios';
|
|
2
|
+
import AxiosStatic, { AxiosError, isAxiosError, isCancel } from 'axios';
|
|
3
|
+
import { parseTemplate } from 'url-template';
|
|
4
|
+
import { data } from '../data';
|
|
5
|
+
import { route } from '../service';
|
|
6
|
+
|
|
7
|
+
export interface ApiReturn<T = any> {
|
|
8
|
+
success: boolean;
|
|
9
|
+
message?: string;
|
|
10
|
+
code: number;
|
|
11
|
+
status: number;
|
|
12
|
+
data: T;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare module 'axios' {
|
|
16
|
+
export interface AxiosRequestConfig {
|
|
17
|
+
vars?: Record<string, any>;
|
|
18
|
+
methodSimulate?: string;
|
|
19
|
+
methodSimulateByHeader?: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface CreateAxiosDefaults {
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function prepareAxios(axios: AxiosInstance): AxiosInstance {
|
|
27
|
+
axios.interceptors.request.use((config) => {
|
|
28
|
+
config.headers['X-CSRF-Token'] = data('csrf-token');
|
|
29
|
+
|
|
30
|
+
if (config.url && config.url.startsWith('@')) {
|
|
31
|
+
config.url = route(config.url);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (config?.vars && config.url) {
|
|
35
|
+
const tmpl = parseTemplate(config.url);
|
|
36
|
+
config.url = tmpl.expand(config.vars || {});
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Simulate methods
|
|
40
|
+
if (config.methodSimulate) {
|
|
41
|
+
if (config.methodSimulateByHeader) {
|
|
42
|
+
config.headers['X-HTTP-Method-Override'] = config;
|
|
43
|
+
} else if (typeof config.data === 'object') {
|
|
44
|
+
config.data['_method'] = config.method;
|
|
45
|
+
} else if (typeof config.data === 'string') {
|
|
46
|
+
if (config.data.includes('?')) {
|
|
47
|
+
config.data += '&_method=' + config.method;
|
|
48
|
+
} else {
|
|
49
|
+
config.data += '?_method=' + config.method;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if (config.method?.toLowerCase() !== 'get') {
|
|
54
|
+
config.method = 'POST';
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return config;
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
return axios;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export type UnicornHttpClient = ReturnType<typeof createHttpClient>;
|
|
65
|
+
|
|
66
|
+
export function createHttpClient(config?: CreateAxiosDefaults | AxiosInstance) {
|
|
67
|
+
const axios = config && 'interceptors' in config
|
|
68
|
+
? config
|
|
69
|
+
: AxiosStatic.create(config ?? {});
|
|
70
|
+
|
|
71
|
+
prepareAxios(axios);
|
|
72
|
+
|
|
73
|
+
function requestMiddleware(callback: Parameters<AxiosInstance['interceptors']['request']['use']>[0]) {
|
|
74
|
+
return axios.interceptors.request.use(callback);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function responseMiddleware(callback: Parameters<AxiosInstance['interceptors']['response']['use']>[0]) {
|
|
78
|
+
return axios.interceptors.response.use(callback);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Send a GET request.
|
|
83
|
+
*/
|
|
84
|
+
async function get<T = any, D = any>(
|
|
85
|
+
url: string,
|
|
86
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
87
|
+
): Promise<AxiosResponse<T, D>> {
|
|
88
|
+
options.url = url;
|
|
89
|
+
options.method = 'GET';
|
|
90
|
+
|
|
91
|
+
return request(options);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Send a POST request.
|
|
96
|
+
*/
|
|
97
|
+
async function post<T = any, D = any>(
|
|
98
|
+
url: string,
|
|
99
|
+
data?: any,
|
|
100
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
101
|
+
): Promise<AxiosResponse<T, D>> {
|
|
102
|
+
options.url = url;
|
|
103
|
+
options.method = 'POST';
|
|
104
|
+
options.data = data;
|
|
105
|
+
|
|
106
|
+
return request(options);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Send a PUT request.
|
|
111
|
+
*
|
|
112
|
+
* @param {string} url
|
|
113
|
+
* @param {any} data
|
|
114
|
+
* @param {AxiosRequestConfig} options
|
|
115
|
+
*
|
|
116
|
+
* @returns {Promise<AxiosResponse>}
|
|
117
|
+
*/
|
|
118
|
+
async function put<T = any, D = any>(
|
|
119
|
+
url: string,
|
|
120
|
+
data?: any,
|
|
121
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
122
|
+
): Promise<AxiosResponse<T, D>> {
|
|
123
|
+
options.url = url;
|
|
124
|
+
options.method = 'PUT';
|
|
125
|
+
options.data = data;
|
|
126
|
+
|
|
127
|
+
return request(options);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Send a PATCH request.
|
|
132
|
+
*
|
|
133
|
+
* @param {string} url
|
|
134
|
+
* @param {any} data
|
|
135
|
+
* @param {AxiosRequestConfig} options
|
|
136
|
+
*
|
|
137
|
+
* @returns {Promise<AxiosResponse>}
|
|
138
|
+
*/
|
|
139
|
+
async function patch<T = any, D = any>(
|
|
140
|
+
url: string,
|
|
141
|
+
data?: any,
|
|
142
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
143
|
+
): Promise<AxiosResponse<T, D>> {
|
|
144
|
+
options.url = url;
|
|
145
|
+
options.method = 'PATCH';
|
|
146
|
+
options.data = data;
|
|
147
|
+
|
|
148
|
+
return request(options);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Send a DELETE request.
|
|
153
|
+
*
|
|
154
|
+
* @param {string} url
|
|
155
|
+
* @param {any} data
|
|
156
|
+
* @param {AxiosRequestConfig} options
|
|
157
|
+
*
|
|
158
|
+
* @returns {Promise<AxiosResponse>}
|
|
159
|
+
*/
|
|
160
|
+
async function deletes<T = any, D = any>(
|
|
161
|
+
url: string,
|
|
162
|
+
data?: any,
|
|
163
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
164
|
+
): Promise<AxiosResponse<T, D>> {
|
|
165
|
+
options.url = url;
|
|
166
|
+
options.method = 'DELETE';
|
|
167
|
+
options.data = data;
|
|
168
|
+
|
|
169
|
+
return request(options);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Send a HEAD request.
|
|
174
|
+
*
|
|
175
|
+
* @param {string} url
|
|
176
|
+
* @param {AxiosRequestConfig} options
|
|
177
|
+
*
|
|
178
|
+
* @returns {Promise<AxiosResponse>}
|
|
179
|
+
*/
|
|
180
|
+
async function head<T = any, D = any>(
|
|
181
|
+
url: string,
|
|
182
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
183
|
+
): Promise<AxiosResponse<T, D>> {
|
|
184
|
+
options.url = url;
|
|
185
|
+
options.method = 'HEAD';
|
|
186
|
+
|
|
187
|
+
return request(options);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Send a OPTIONS request.
|
|
192
|
+
*
|
|
193
|
+
* @param {string} url
|
|
194
|
+
* @param {AxiosRequestConfig} options
|
|
195
|
+
*
|
|
196
|
+
* @returns {Promise<AxiosResponse>}
|
|
197
|
+
*/
|
|
198
|
+
async function options<T = any, D = any>(
|
|
199
|
+
url: string,
|
|
200
|
+
options: Partial<AxiosRequestConfig> = {}
|
|
201
|
+
): Promise<AxiosResponse<T, D>> {
|
|
202
|
+
options.url = url;
|
|
203
|
+
options.method = 'OPTIONS';
|
|
204
|
+
|
|
205
|
+
return request(options);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Send request.
|
|
210
|
+
*/
|
|
211
|
+
async function request<T = any, D = any>(options: AxiosRequestConfig): Promise<AxiosResponse<T, D>> {
|
|
212
|
+
try {
|
|
213
|
+
return await axios(options);
|
|
214
|
+
} catch (e) {
|
|
215
|
+
(e as any).originMessage = (e as Error).message;
|
|
216
|
+
|
|
217
|
+
const err = e as AxiosError<any>;
|
|
218
|
+
|
|
219
|
+
if (err.response?.data?.message) {
|
|
220
|
+
err.message = err.response.data.message;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
throw err;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
return {
|
|
228
|
+
axios,
|
|
229
|
+
request,
|
|
230
|
+
get,
|
|
231
|
+
post,
|
|
232
|
+
put,
|
|
233
|
+
patch,
|
|
234
|
+
delete: deletes,
|
|
235
|
+
head,
|
|
236
|
+
options,
|
|
237
|
+
requestMiddleware,
|
|
238
|
+
responseMiddleware,
|
|
239
|
+
isCancel,
|
|
240
|
+
AxiosError,
|
|
241
|
+
isAxiosError,
|
|
242
|
+
};
|
|
243
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import { Modal } from 'bootstrap';
|
|
2
|
+
import { useUniDirective } from '../composable';
|
|
3
|
+
import { mergeDeep } from '../utilities';
|
|
4
|
+
|
|
5
|
+
interface IFrameModalOptions {
|
|
6
|
+
id?: string;
|
|
7
|
+
size?: string;
|
|
8
|
+
resize?: boolean;
|
|
9
|
+
height?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export class IFrameModalElement extends HTMLElement {
|
|
13
|
+
static is = 'uni-iframe-modal';
|
|
14
|
+
|
|
15
|
+
options!: IFrameModalOptions;
|
|
16
|
+
modalElement!: HTMLDivElement;
|
|
17
|
+
modal!: Modal;
|
|
18
|
+
iframe!: HTMLIFrameElement;
|
|
19
|
+
|
|
20
|
+
template() {
|
|
21
|
+
return `
|
|
22
|
+
<div class="modal fade c-unicorn-iframe-modal" id="${this.getModalId()}"
|
|
23
|
+
data-iframe-modal>
|
|
24
|
+
<div class="modal-dialog ${this.options?.size || 'modal-xl'}">
|
|
25
|
+
<div class="modal-content">
|
|
26
|
+
<div class="modal-body">
|
|
27
|
+
<iframe class="c-unicorn-iframe-modal__iframe" width="100%" src="" frameborder="0"></iframe>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</div>`;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
get selector() {
|
|
35
|
+
return this.getAttribute('selector') || '[data-iframe-modal]';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
async getBootstrapModal() {
|
|
39
|
+
const { Modal } = await import('bootstrap');
|
|
40
|
+
|
|
41
|
+
return this.modal ??= Modal.getOrCreateInstance(this.modalElement);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
connectedCallback() {
|
|
45
|
+
this.options = JSON.parse(this.getAttribute('options') || '{}');
|
|
46
|
+
|
|
47
|
+
if (!this.innerHTML.trim()) {
|
|
48
|
+
this.innerHTML = this.template();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
this.modalElement = this.querySelector<HTMLDivElement>(this.selector)!;
|
|
52
|
+
this.iframe = this.modalElement.querySelector<HTMLIFrameElement>('iframe')!;
|
|
53
|
+
|
|
54
|
+
// @ts-ignore
|
|
55
|
+
this.iframe.modalLink = () => {
|
|
56
|
+
return this;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
this.bindEvents();
|
|
60
|
+
this.getBootstrapModal();
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
bindEvents() {
|
|
64
|
+
this.modalElement.addEventListener('hidden.bs.modal', () => {
|
|
65
|
+
this.iframe.src = '';
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
async open(href: string, options: IFrameModalOptions = {}) {
|
|
70
|
+
options = mergeDeep(
|
|
71
|
+
{
|
|
72
|
+
height: undefined,
|
|
73
|
+
resize: false,
|
|
74
|
+
size: 'modal-lg',
|
|
75
|
+
},
|
|
76
|
+
this.options,
|
|
77
|
+
options
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
if (options.resize) {
|
|
81
|
+
const onload = () => {
|
|
82
|
+
this.resize(this.iframe);
|
|
83
|
+
|
|
84
|
+
this.iframe.removeEventListener('load', onload);
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
this.iframe.addEventListener('load', onload);
|
|
88
|
+
} else {
|
|
89
|
+
this.iframe.style.height = options.height || '500px';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if (options.size != null) {
|
|
93
|
+
const dialog = this.modalElement.querySelector<HTMLDivElement>('.modal-dialog')!;
|
|
94
|
+
dialog.classList.remove('modal-lg', 'modal-xl', 'modal-sm', 'modal-xs');
|
|
95
|
+
dialog.classList.add(options.size);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
this.iframe.src = href;
|
|
99
|
+
const modal = await this.getBootstrapModal();
|
|
100
|
+
modal.show();
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
async close() {
|
|
104
|
+
this.iframe.src = '';
|
|
105
|
+
const modal = await this.getBootstrapModal();
|
|
106
|
+
modal.hide();
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
resize(iframe: HTMLIFrameElement) {
|
|
110
|
+
setTimeout(() => {
|
|
111
|
+
if (!iframe.contentWindow) {
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
let height = iframe.contentWindow.document.documentElement.scrollHeight;
|
|
116
|
+
|
|
117
|
+
height += 30;
|
|
118
|
+
|
|
119
|
+
if (height < 500) {
|
|
120
|
+
height = 500;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
iframe.style.height = height + 'px';
|
|
124
|
+
}, 30);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
getModalId() {
|
|
128
|
+
return this.options?.id || this.id + '__modal';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
customElements.define(IFrameModalElement.is, IFrameModalElement);
|
|
133
|
+
|
|
134
|
+
export const ready = useUniDirective('modal-link', {
|
|
135
|
+
mounted(el, binding) {
|
|
136
|
+
let options: IFrameModalOptions = {};
|
|
137
|
+
|
|
138
|
+
options.height = el.dataset.height;
|
|
139
|
+
options.resize = el.dataset.resize === '1' || el.dataset.resize === 'true';
|
|
140
|
+
options.size = el.dataset.size;
|
|
141
|
+
|
|
142
|
+
const target = binding.value;
|
|
143
|
+
|
|
144
|
+
el.style.pointerEvents = '';
|
|
145
|
+
|
|
146
|
+
el.addEventListener('click', (e) => {
|
|
147
|
+
e.preventDefault();
|
|
148
|
+
e.stopPropagation();
|
|
149
|
+
const im = document.querySelector(target);
|
|
150
|
+
|
|
151
|
+
if (!im) {
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
if ('src' in el) {
|
|
156
|
+
im.open(el.src, options);
|
|
157
|
+
} else if ('href' in el) {
|
|
158
|
+
im.open(el.href, options);
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
export interface IframeModalModule {
|
|
165
|
+
IFrameModalElement: typeof IFrameModalElement;
|
|
166
|
+
ready: typeof ready;
|
|
167
|
+
}
|