-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathmodal-methods.js
68 lines (67 loc) · 2.04 KB
/
modal-methods.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import $ from './dom7.js';
import { extend } from './utils.js';
import ConstructorMethods from './constructor-methods.js';
export default function ModalMethods(parameters = {}) {
const { defaultSelector, constructor: Constructor, app } = parameters;
const methods = extend(
ConstructorMethods({
defaultSelector,
constructor: Constructor,
app,
domProp: 'f7Modal',
}),
{
open(el, animate, targetEl) {
let $el = $(el);
if ($el.length > 1 && targetEl) {
// check if same modal in other page
const $targetPage = $(targetEl).parents('.page');
if ($targetPage.length) {
$el.each((modalEl) => {
const $modalEl = $(modalEl);
if ($modalEl.parents($targetPage)[0] === $targetPage[0]) {
$el = $modalEl;
}
});
}
}
if ($el.length > 1) {
$el = $el.eq($el.length - 1);
}
if (!$el.length) return undefined;
let instance = $el[0].f7Modal;
if (!instance) {
const params = $el.dataset();
instance = new Constructor(app, { el: $el, ...params });
}
return instance.open(animate);
},
close(el = defaultSelector, animate, targetEl) {
let $el = $(el);
if (!$el.length) return undefined;
if ($el.length > 1) {
// check if close link (targetEl) in this modal
let $parentEl;
if (targetEl) {
const $targetEl = $(targetEl);
if ($targetEl.length) {
$parentEl = $targetEl.parents($el);
}
}
if ($parentEl && $parentEl.length > 0) {
$el = $parentEl;
} else {
$el = $el.eq($el.length - 1);
}
}
let instance = $el[0].f7Modal;
if (!instance) {
const params = $el.dataset();
instance = new Constructor(app, { el: $el, ...params });
}
return instance.close(animate);
},
},
);
return methods;
}