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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const {
prepareMessage
} = require("devtools/client/webconsole/new-console-output/utils/messages");
const { IdGenerator } = require("devtools/client/webconsole/new-console-output/utils/id-generator");
const { batchActions } = require("devtools/client/webconsole/new-console-output/actions/enhancers");
const {
MESSAGE_ADD,
MESSAGES_CLEAR,
MESSAGE_OPEN,
MESSAGE_CLOSE,
MESSAGE_TYPE,
MESSAGE_TABLE_RECEIVE,
} = require("../constants");
const defaultIdGenerator = new IdGenerator();
function messageAdd(packet, idGenerator = null) {
if (idGenerator == null) {
idGenerator = defaultIdGenerator;
}
let message = prepareMessage(packet, idGenerator);
const addMessageAction = {
type: MESSAGE_ADD,
message
};
if (message.type === MESSAGE_TYPE.CLEAR) {
return batchActions([
messagesClear(),
addMessageAction,
]);
}
return addMessageAction;
}
function messagesClear() {
return {
type: MESSAGES_CLEAR
};
}
function messageOpen(id) {
return {
type: MESSAGE_OPEN,
id
};
}
function messageClose(id) {
return {
type: MESSAGE_CLOSE,
id
};
}
function messageTableDataGet(id, client, dataType) {
return (dispatch) => {
let fetchObjectActorData;
if (["Map", "WeakMap", "Set", "WeakSet"].includes(dataType)) {
fetchObjectActorData = (cb) => client.enumEntries(cb);
} else {
fetchObjectActorData = (cb) => client.enumProperties({
ignoreNonIndexedProperties: dataType === "Array"
}, cb);
}
fetchObjectActorData(enumResponse => {
const {iterator} = enumResponse;
iterator.slice(0, iterator.count, sliceResponse => {
let {ownProperties} = sliceResponse;
dispatch(messageTableDataReceive(id, ownProperties));
});
});
};
}
function messageTableDataReceive(id, data) {
return {
type: MESSAGE_TABLE_RECEIVE,
id,
data
};
}
module.exports = {
messageAdd,
messagesClear,
messageOpen,
messageClose,
messageTableDataGet,
};
|