not-bulma 1.2.15 → 1.2.17
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/package.json +1 -1
- package/src/elements/modal/ui.modal.svelte +2 -0
- package/src/elements/various/ui.indicator.svelte +55 -54
- package/src/elements/various/ui.tag.svelte +7 -7
- package/src/elements/various/ui.tag.value.list.svelte +10 -4
- package/src/elements/various/ui.tag.value.svelte +13 -2
- package/src/elements/various/ui.user.card.svelte +47 -49
- package/src/frame/base.js +123 -124
- package/src/frame/common.js +22 -33
- package/src/frame/components/navigation/menu.js +250 -228
- package/src/frame/components/navigation/top/ui.top.svelte +89 -88
- package/src/frame/components/table/controls/ui.tags.svelte +27 -25
- package/src/frame/components/table/notTable.svelte +1 -6
- package/src/frame/components/table/stores.js +33 -36
- package/src/frame/controller.js +1 -1
- package/src/frame/lib.js +39 -39
- package/src/frame/record.js +2 -6
- package/src/locale/store.js +20 -20
package/package.json
CHANGED
|
@@ -35,12 +35,14 @@
|
|
|
35
35
|
<div class="pageloader {loading ? 'is-active' : ''}">
|
|
36
36
|
<span class="title">{$LOCALE[WAITING_TEXT]}</span>
|
|
37
37
|
</div>
|
|
38
|
+
|
|
38
39
|
{#if buttonsPosition === "top"}
|
|
39
40
|
<UIButtonsRow
|
|
40
41
|
left={closeButton ? [closeButton] : []}
|
|
41
42
|
right={applyButton ? [applyButton] : []}
|
|
42
43
|
></UIButtonsRow>
|
|
43
44
|
{/if}
|
|
45
|
+
|
|
44
46
|
<slot />
|
|
45
47
|
|
|
46
48
|
{#if buttonsPosition === "bottom"}
|
|
@@ -1,67 +1,68 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
import { onMount } from "svelte";
|
|
3
|
+
import notCommon from "../../frame/common";
|
|
4
|
+
//if we want to address this indicator
|
|
5
|
+
export let id = "tagId";
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
7
|
+
export let state = "light";
|
|
8
|
+
export let size = "normal";
|
|
9
|
+
export let labels = {
|
|
10
|
+
black: "black",
|
|
11
|
+
dark: "dark",
|
|
12
|
+
light: "light",
|
|
13
|
+
white: "white",
|
|
14
|
+
primary: "primary",
|
|
15
|
+
link: "link",
|
|
16
|
+
info: "info",
|
|
17
|
+
success: "success",
|
|
18
|
+
warning: "warning",
|
|
19
|
+
danger: "danger",
|
|
20
|
+
};
|
|
21
|
+
export let classes = "mx-1";
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
export let padding = "normal";
|
|
24
|
+
export let bold = false;
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
export let right = false;
|
|
27
|
+
export let left = false;
|
|
28
|
+
export let top = false;
|
|
29
|
+
export let bottom = false;
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
let sided = false;
|
|
32
|
+
$: sided = right || left || top || bottom;
|
|
33
33
|
|
|
34
|
+
export let events = {}; //events to react on
|
|
35
|
+
//register event handlers
|
|
36
|
+
export let register = notCommon.registerWidgetEvents.bind(notCommon);
|
|
37
|
+
//
|
|
38
|
+
export let onUpdate = (data) => {
|
|
39
|
+
if (Object.hasOwn(data, "state")) {
|
|
40
|
+
state = data.state;
|
|
41
|
+
}
|
|
42
|
+
};
|
|
34
43
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export let register = notCommon.registerWidgetEvents.bind(notCommon);
|
|
38
|
-
//
|
|
39
|
-
export let onUpdate = (data)=>{
|
|
40
|
-
if (Object.prototype.hasOwnProperty.call(data, 'state')){
|
|
41
|
-
state = data.state;
|
|
44
|
+
function getStandartUpdateEventName() {
|
|
45
|
+
return `indicator-${id}:update`;
|
|
42
46
|
}
|
|
43
|
-
};
|
|
44
47
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
events[getStandartUpdateEventName()] = onUpdate;
|
|
52
|
-
}
|
|
53
|
-
register(events);
|
|
54
|
-
});
|
|
48
|
+
onMount(() => {
|
|
49
|
+
if (!Object.hasOwn(events, getStandartUpdateEventName())) {
|
|
50
|
+
events[getStandartUpdateEventName()] = onUpdate;
|
|
51
|
+
}
|
|
52
|
+
register(events);
|
|
53
|
+
});
|
|
55
54
|
</script>
|
|
56
55
|
|
|
57
|
-
<span
|
|
56
|
+
<span
|
|
57
|
+
class="tag
|
|
58
58
|
is-{size}
|
|
59
|
-
{bold?'has-text-weight-bold':''}
|
|
60
|
-
{padding!=='normal'
|
|
61
|
-
{sided?'is-sided':''}
|
|
62
|
-
{right?'is-sided-right':''}
|
|
63
|
-
{left?'is-sided-left':''}
|
|
64
|
-
{top?'is-sided-top':''}
|
|
65
|
-
{bottom?'is-sided-bottom':''}
|
|
59
|
+
{bold ? 'has-text-weight-bold' : ''}
|
|
60
|
+
{padding !== 'normal' ? `is-padded-${padding}` : ''}
|
|
61
|
+
{sided ? 'is-sided' : ''}
|
|
62
|
+
{right ? 'is-sided-right' : ''}
|
|
63
|
+
{left ? 'is-sided-left' : ''}
|
|
64
|
+
{top ? 'is-sided-top' : ''}
|
|
65
|
+
{bottom ? 'is-sided-bottom' : ''}
|
|
66
66
|
is-{state} {classes}
|
|
67
|
-
">{labels[state]}</span
|
|
67
|
+
">{labels[state]}</span
|
|
68
|
+
>
|
|
@@ -26,22 +26,21 @@
|
|
|
26
26
|
export let register = notCommon.registerWidgetEvents.bind(notCommon);
|
|
27
27
|
//
|
|
28
28
|
export let onUpdate = (data) => {
|
|
29
|
-
if (Object.
|
|
29
|
+
if (Object.hasOwn(data, "title")) {
|
|
30
30
|
title = data.title;
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
+
export let action = () => {
|
|
35
|
+
return true;
|
|
36
|
+
};
|
|
37
|
+
|
|
34
38
|
function getStandartUpdateEventName() {
|
|
35
39
|
return `tag-${id}:update`;
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
onMount(() => {
|
|
39
|
-
if (
|
|
40
|
-
!Object.prototype.hasOwnProperty.call(
|
|
41
|
-
events,
|
|
42
|
-
getStandartUpdateEventName()
|
|
43
|
-
)
|
|
44
|
-
) {
|
|
43
|
+
if (!Object.hasOwn(events, getStandartUpdateEventName())) {
|
|
45
44
|
events[getStandartUpdateEventName()] = onUpdate;
|
|
46
45
|
}
|
|
47
46
|
register(events);
|
|
@@ -50,6 +49,7 @@
|
|
|
50
49
|
|
|
51
50
|
{#if title}
|
|
52
51
|
<span
|
|
52
|
+
on:click={action ? action : undefined}
|
|
53
53
|
id="tag-{id}"
|
|
54
54
|
class="
|
|
55
55
|
tag
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import UITagValue from "
|
|
2
|
+
import UITagValue from "not-bulma/src/elements/various/ui.tag.value.svelte";
|
|
3
3
|
|
|
4
4
|
export let value = [];
|
|
5
5
|
</script>
|
|
6
6
|
|
|
7
|
-
{#
|
|
8
|
-
<
|
|
9
|
-
{
|
|
7
|
+
{#if value.length}
|
|
8
|
+
<div class="field is-grouped is-grouped-multiline">
|
|
9
|
+
{#each value as tagValueProps}
|
|
10
|
+
<div class="control">
|
|
11
|
+
<UITagValue {...tagValueProps} />
|
|
12
|
+
</div>
|
|
13
|
+
{/each}
|
|
14
|
+
</div>
|
|
15
|
+
{/if}
|
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import UITag from "./ui.tag.svelte";
|
|
3
|
+
import UIButtons from "../button/ui.buttons.svelte";
|
|
3
4
|
|
|
4
5
|
//if we want to address this tag
|
|
5
6
|
export let id = "taggedValueId";
|
|
6
7
|
export let title; //UITag props
|
|
7
8
|
export let value; //UITag props
|
|
9
|
+
export let actions = []; //UIButtons values or for some custom actionsGroupContructor
|
|
8
10
|
export let classes = "";
|
|
11
|
+
export let actionsGroupContructor = UIButtons;
|
|
12
|
+
export let actionsGroupProps = {};
|
|
13
|
+
export let readonly = false; //hides actions if true
|
|
9
14
|
</script>
|
|
10
15
|
|
|
11
16
|
<div class="tags has-addons {classes}" {id}>
|
|
12
|
-
{#if title}
|
|
13
|
-
|
|
17
|
+
{#if title}<UITag {...title} />{/if}
|
|
18
|
+
{#if value}<UITag {...value} />{/if}
|
|
19
|
+
{#if !readonly && actions && actions.length}
|
|
20
|
+
<svelte:component
|
|
21
|
+
this={actionsGroupContructor}
|
|
22
|
+
values={actions}
|
|
23
|
+
{...actionsGroupProps}
|
|
24
|
+
/>
|
|
14
25
|
{/if}
|
|
15
26
|
</div>
|
|
@@ -1,58 +1,56 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
import { onMount } from "svelte";
|
|
3
|
+
import notCommon from "../../frame/common";
|
|
4
|
+
|
|
5
|
+
export let id = "userCard";
|
|
6
|
+
export let image = "https://bulma.io/images/placeholders/32x32.png";
|
|
7
|
+
export let username = "John Doe";
|
|
8
|
+
export let role = "admin";
|
|
9
|
+
|
|
10
|
+
export let events = {}; //events to react on
|
|
11
|
+
//register event handlers
|
|
12
|
+
export let register = notCommon.registerWidgetEvents;
|
|
13
|
+
//
|
|
14
|
+
export let onUpdate = (data) => {
|
|
15
|
+
if (Object.hasOwn(data, "username")) {
|
|
16
|
+
username = data.username;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
if (Object.hasOwn(data, "role")) {
|
|
20
|
+
role = data.role;
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
function getCompId() {
|
|
25
|
+
return `usercard-${id}`;
|
|
17
26
|
}
|
|
18
27
|
|
|
19
|
-
|
|
20
|
-
|
|
28
|
+
function getStandartUpdateEventName() {
|
|
29
|
+
let compId = getCompId();
|
|
30
|
+
return `${compId}:update`;
|
|
21
31
|
}
|
|
22
32
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
function getStandartUpdateEventName(){
|
|
30
|
-
let compId = getCompId();
|
|
31
|
-
return `${compId}:update`;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
onMount(()=>{
|
|
35
|
-
if (!Object.prototype.hasOwnProperty.call(events, getStandartUpdateEventName())){
|
|
36
|
-
events[getStandartUpdateEventName()] = onUpdate;
|
|
37
|
-
}
|
|
38
|
-
register(events);
|
|
39
|
-
});
|
|
33
|
+
onMount(() => {
|
|
34
|
+
if (!Object.hasOwn(events, getStandartUpdateEventName())) {
|
|
35
|
+
events[getStandartUpdateEventName()] = onUpdate;
|
|
36
|
+
}
|
|
37
|
+
register(events);
|
|
38
|
+
});
|
|
40
39
|
</script>
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
</
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
41
|
+
<article id={getCompId()} class="media">
|
|
42
|
+
<figure class="media-left">
|
|
43
|
+
<p class="image is-32x32">
|
|
44
|
+
<img src={image} alt={username} />
|
|
45
|
+
</p>
|
|
46
|
+
</figure>
|
|
47
|
+
<div class="media-content">
|
|
48
|
+
<div class="content">
|
|
49
|
+
<p>
|
|
50
|
+
<strong>{username}</strong>
|
|
51
|
+
<small>@</small>
|
|
52
|
+
<strong>{role}</strong>
|
|
53
|
+
</p>
|
|
54
|
+
</div>
|
|
56
55
|
</div>
|
|
57
|
-
</div>
|
|
58
56
|
</article>
|
package/src/frame/base.js
CHANGED
|
@@ -1,153 +1,152 @@
|
|
|
1
|
-
import EventEmitter from
|
|
2
|
-
import notPath from
|
|
1
|
+
import EventEmitter from "wolfy87-eventemitter";
|
|
2
|
+
import notPath from "not-path";
|
|
3
3
|
|
|
4
|
-
import notCommon from
|
|
4
|
+
import notCommon from "./common.js";
|
|
5
5
|
|
|
6
|
-
const META_METHOD_INIT = Symbol(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
const META_METHOD_INIT = Symbol("init"),
|
|
7
|
+
META_DATA = Symbol("data"),
|
|
8
|
+
META_WORKING = Symbol("working"),
|
|
9
|
+
META_OPTIONS = Symbol("options");
|
|
10
10
|
|
|
11
11
|
export default class notBase extends EventEmitter {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
[META_METHOD_INIT](input) {
|
|
22
|
-
if (!input) {
|
|
23
|
-
input = {};
|
|
12
|
+
constructor(input) {
|
|
13
|
+
super();
|
|
14
|
+
this[META_DATA] = {};
|
|
15
|
+
this[META_WORKING] = {};
|
|
16
|
+
this[META_OPTIONS] = {};
|
|
17
|
+
this[META_METHOD_INIT](input);
|
|
18
|
+
return this;
|
|
24
19
|
}
|
|
25
20
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
21
|
+
[META_METHOD_INIT](input) {
|
|
22
|
+
if (!input) {
|
|
23
|
+
input = {};
|
|
24
|
+
}
|
|
29
25
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
26
|
+
if (Object.hasOwn(input, "data")) {
|
|
27
|
+
this.setData(input.data);
|
|
28
|
+
}
|
|
33
29
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
30
|
+
if (Object.hasOwn(input, "working")) {
|
|
31
|
+
this.setWorking(input.working);
|
|
32
|
+
}
|
|
37
33
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
case 1:
|
|
47
|
-
{
|
|
48
|
-
/* set collection */
|
|
49
|
-
what = args[0];
|
|
50
|
-
break;
|
|
51
|
-
}
|
|
52
|
-
case 2:
|
|
53
|
-
{
|
|
54
|
-
/* set collection element */
|
|
55
|
-
notPath.set(args[0] /* path */ , what /* collection */ , undefined /* helpers */ , args[1] /* value */ );
|
|
56
|
-
break;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
return this;
|
|
60
|
-
}
|
|
61
|
-
getCommon(what, args) {
|
|
62
|
-
switch (args.length) {
|
|
63
|
-
/* if we want get data by path */
|
|
64
|
-
case 1:
|
|
65
|
-
{
|
|
66
|
-
return notPath.get(args[0], what);
|
|
67
|
-
}
|
|
68
|
-
/* if we want get data by path with default value */
|
|
69
|
-
case 2:
|
|
70
|
-
{
|
|
71
|
-
let res = notPath.get(args[0], what);
|
|
72
|
-
if (res === undefined) {
|
|
73
|
-
/* no data, return default value */
|
|
74
|
-
return args[1];
|
|
75
|
-
} else {
|
|
76
|
-
/* data, return it */
|
|
77
|
-
return res;
|
|
78
|
-
}
|
|
34
|
+
if (Object.hasOwn(input, "options")) {
|
|
35
|
+
this.setOptions(input.options);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
this.log = notCommon.genLogMsg(this.getWorking("name"));
|
|
39
|
+
this.info = this.log;
|
|
40
|
+
this.debug = notCommon.genLogDebug(this.getWorking("name"));
|
|
41
|
+
this.error = notCommon.genLogError(this.getWorking("name"));
|
|
79
42
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
43
|
+
|
|
44
|
+
setCommon(what, args) {
|
|
45
|
+
switch (args.length) {
|
|
46
|
+
case 1: {
|
|
47
|
+
/* set collection */
|
|
48
|
+
what = args[0];
|
|
49
|
+
break;
|
|
50
|
+
}
|
|
51
|
+
case 2: {
|
|
52
|
+
/* set collection element */
|
|
53
|
+
notPath.set(
|
|
54
|
+
args[0] /* path */,
|
|
55
|
+
what /* collection */,
|
|
56
|
+
undefined /* helpers */,
|
|
57
|
+
args[1] /* value */
|
|
58
|
+
);
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
return this;
|
|
84
63
|
}
|
|
64
|
+
getCommon(what, args) {
|
|
65
|
+
switch (args.length) {
|
|
66
|
+
/* if we want get data by path */
|
|
67
|
+
case 1: {
|
|
68
|
+
return notPath.get(args[0], what);
|
|
69
|
+
}
|
|
70
|
+
/* if we want get data by path with default value */
|
|
71
|
+
case 2: {
|
|
72
|
+
let res = notPath.get(args[0], what);
|
|
73
|
+
if (res === undefined) {
|
|
74
|
+
/* no data, return default value */
|
|
75
|
+
return args[1];
|
|
76
|
+
} else {
|
|
77
|
+
/* data, return it */
|
|
78
|
+
return res;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
/* return full collection */
|
|
82
|
+
default: {
|
|
83
|
+
return what;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
85
86
|
}
|
|
86
|
-
}
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
/*
|
|
89
89
|
CORE OBJECT
|
|
90
90
|
DATA - information
|
|
91
91
|
OPTIONS - how to work
|
|
92
92
|
WORKING - temporarily generated in proccess
|
|
93
93
|
*/
|
|
94
94
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
setData() {
|
|
96
|
+
if (arguments.length === 1) {
|
|
97
|
+
this[META_DATA] = arguments[0];
|
|
98
|
+
} else {
|
|
99
|
+
this.setCommon(this.getData(), arguments);
|
|
100
|
+
}
|
|
101
|
+
this.emit("change");
|
|
102
|
+
return this;
|
|
100
103
|
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
this.setCommon(this.getOptions(), arguments);
|
|
104
|
+
|
|
105
|
+
getData() {
|
|
106
|
+
return this.getCommon(this[META_DATA], arguments);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
setOptions() {
|
|
110
|
+
if (arguments.length === 1) {
|
|
111
|
+
this[META_OPTIONS] = arguments[0];
|
|
112
|
+
} else {
|
|
113
|
+
this.setCommon(this.getOptions(), arguments);
|
|
114
|
+
}
|
|
115
|
+
return this;
|
|
114
116
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
getOptions() {
|
|
119
|
-
return this.getCommon(this[META_OPTIONS], arguments);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
setWorking() {
|
|
123
|
-
if (arguments.length === 1) {
|
|
124
|
-
this[META_WORKING] = arguments[0];
|
|
125
|
-
} else {
|
|
126
|
-
this.setCommon(this.getWorking(), arguments);
|
|
117
|
+
|
|
118
|
+
getOptions() {
|
|
119
|
+
return this.getCommon(this[META_OPTIONS], arguments);
|
|
127
120
|
}
|
|
128
|
-
return this;
|
|
129
|
-
}
|
|
130
121
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
122
|
+
setWorking() {
|
|
123
|
+
if (arguments.length === 1) {
|
|
124
|
+
this[META_WORKING] = arguments[0];
|
|
125
|
+
} else {
|
|
126
|
+
this.setCommon(this.getWorking(), arguments);
|
|
127
|
+
}
|
|
128
|
+
return this;
|
|
129
|
+
}
|
|
134
130
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
notCommon.report(e);
|
|
131
|
+
getWorking() {
|
|
132
|
+
return this.getCommon(this[META_WORKING], arguments);
|
|
138
133
|
}
|
|
139
|
-
}
|
|
140
134
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
135
|
+
report(e) {
|
|
136
|
+
if (notCommon.report) {
|
|
137
|
+
notCommon.report(e);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
144
140
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
this.setWorking(null);
|
|
149
|
-
this.setData(null);
|
|
150
|
-
this.emit('destroy');
|
|
151
|
-
}
|
|
141
|
+
getApp() {
|
|
142
|
+
return notCommon.getApp();
|
|
143
|
+
}
|
|
152
144
|
|
|
145
|
+
destroy() {
|
|
146
|
+
this.removeEvent();
|
|
147
|
+
this.setOptions(null);
|
|
148
|
+
this.setWorking(null);
|
|
149
|
+
this.setData(null);
|
|
150
|
+
this.emit("destroy");
|
|
151
|
+
}
|
|
153
152
|
}
|