ncloudchat 0.0.19-beta
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/LICENSE.md +21 -0
- package/README.md +69 -0
- package/esm/CloudChat.d.ts +38 -0
- package/esm/CloudChat.js +592 -0
- package/esm/CloudChat.js.map +1 -0
- package/esm/CoreManager.d.ts +5 -0
- package/esm/CoreManager.js +27 -0
- package/esm/CoreManager.js.map +1 -0
- package/esm/Dispatcher.d.ts +21 -0
- package/esm/Dispatcher.js +78 -0
- package/esm/Dispatcher.js.map +1 -0
- package/esm/Type.d.ts +35 -0
- package/esm/Type.js +12 -0
- package/esm/Type.js.map +1 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +3 -0
- package/esm/index.js.map +1 -0
- package/esm/logger.d.ts +4 -0
- package/esm/logger.js +11 -0
- package/esm/logger.js.map +1 -0
- package/esm/mutations/channel.d.ts +4 -0
- package/esm/mutations/channel.js +162 -0
- package/esm/mutations/channel.js.map +1 -0
- package/esm/mutations/friend.d.ts +5 -0
- package/esm/mutations/friend.js +146 -0
- package/esm/mutations/friend.js.map +1 -0
- package/esm/mutations/index.d.ts +14 -0
- package/esm/mutations/index.js +15 -0
- package/esm/mutations/index.js.map +1 -0
- package/esm/mutations/invite.d.ts +1 -0
- package/esm/mutations/invite.js +71 -0
- package/esm/mutations/invite.js.map +1 -0
- package/esm/mutations/memberinvitation.d.ts +2 -0
- package/esm/mutations/memberinvitation.js +103 -0
- package/esm/mutations/memberinvitation.js.map +1 -0
- package/esm/mutations/memberreport.d.ts +10 -0
- package/esm/mutations/memberreport.js +110 -0
- package/esm/mutations/memberreport.js.map +1 -0
- package/esm/mutations/message.d.ts +2 -0
- package/esm/mutations/message.js +97 -0
- package/esm/mutations/message.js.map +1 -0
- package/esm/mutations/messageread.d.ts +1 -0
- package/esm/mutations/messageread.js +69 -0
- package/esm/mutations/messageread.js.map +1 -0
- package/esm/mutations/subscription.d.ts +4 -0
- package/esm/mutations/subscription.js +139 -0
- package/esm/mutations/subscription.js.map +1 -0
- package/esm/mutations/user.d.ts +1 -0
- package/esm/mutations/user.js +74 -0
- package/esm/mutations/user.js.map +1 -0
- package/esm/queries/channel.d.ts +2 -0
- package/esm/queries/channel.js +119 -0
- package/esm/queries/channel.js.map +1 -0
- package/esm/queries/friend.d.ts +1 -0
- package/esm/queries/friend.js +80 -0
- package/esm/queries/friend.js.map +1 -0
- package/esm/queries/index.d.ts +7 -0
- package/esm/queries/index.js +8 -0
- package/esm/queries/index.js.map +1 -0
- package/esm/queries/memberinvitation.d.ts +2 -0
- package/esm/queries/memberinvitation.js +110 -0
- package/esm/queries/memberinvitation.js.map +1 -0
- package/esm/queries/message.d.ts +2 -0
- package/esm/queries/message.js +117 -0
- package/esm/queries/message.js.map +1 -0
- package/esm/queries/messageread.d.ts +1 -0
- package/esm/queries/messageread.js +74 -0
- package/esm/queries/messageread.js.map +1 -0
- package/esm/queries/project.d.ts +1 -0
- package/esm/queries/project.js +74 -0
- package/esm/queries/project.js.map +1 -0
- package/esm/queries/subscription.d.ts +2 -0
- package/esm/queries/subscription.js +112 -0
- package/esm/queries/subscription.js.map +1 -0
- package/lib/CloudChat.js +1032 -0
- package/lib/CoreManager.js +35 -0
- package/lib/Dispatcher.js +109 -0
- package/lib/Type.js +25 -0
- package/lib/index.js +18 -0
- package/lib/logger.js +27 -0
- package/lib/mutations/channel.js +324 -0
- package/lib/mutations/friend.js +319 -0
- package/lib/mutations/index.js +128 -0
- package/lib/mutations/invite.js +208 -0
- package/lib/mutations/memberinvitation.js +271 -0
- package/lib/mutations/memberreport.js +272 -0
- package/lib/mutations/message.js +246 -0
- package/lib/mutations/messageread.js +215 -0
- package/lib/mutations/subscription.js +299 -0
- package/lib/mutations/user.js +207 -0
- package/lib/queries/channel.js +274 -0
- package/lib/queries/friend.js +220 -0
- package/lib/queries/index.js +102 -0
- package/lib/queries/memberinvitation.js +273 -0
- package/lib/queries/message.js +267 -0
- package/lib/queries/messageread.js +219 -0
- package/lib/queries/project.js +217 -0
- package/lib/queries/subscription.js +264 -0
- package/ncloudchat_javascript.md +290 -0
- package/package copy.json +74 -0
- package/package.json +76 -0
- package/tsconfig.json +31 -0
- package/types/exif.d.ts +10 -0
- package/types/window.d.ts +5 -0
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
|
|
6
|
+
|
|
7
|
+
_Object$defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
exports.updateInvitation = exports.createInvitation = void 0;
|
|
12
|
+
|
|
13
|
+
var _stringify = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/json/stringify"));
|
|
14
|
+
|
|
15
|
+
var _iterator = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/symbol/iterator"));
|
|
16
|
+
|
|
17
|
+
var _symbol = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/symbol"));
|
|
18
|
+
|
|
19
|
+
var _promise = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/promise"));
|
|
20
|
+
|
|
21
|
+
var _CoreManager = _interopRequireDefault(require("../CoreManager"));
|
|
22
|
+
|
|
23
|
+
var __awaiter = void 0 && (void 0).__awaiter || function (thisArg, _arguments, P, generator) {
|
|
24
|
+
function adopt(value) {
|
|
25
|
+
return value instanceof P ? value : new P(function (resolve) {
|
|
26
|
+
resolve(value);
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return new (P || (P = _promise["default"]))(function (resolve, reject) {
|
|
31
|
+
function fulfilled(value) {
|
|
32
|
+
try {
|
|
33
|
+
step(generator.next(value));
|
|
34
|
+
} catch (e) {
|
|
35
|
+
reject(e);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function rejected(value) {
|
|
40
|
+
try {
|
|
41
|
+
step(generator["throw"](value));
|
|
42
|
+
} catch (e) {
|
|
43
|
+
reject(e);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function step(result) {
|
|
48
|
+
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
52
|
+
});
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
var __generator = void 0 && (void 0).__generator || function (thisArg, body) {
|
|
56
|
+
var _ = {
|
|
57
|
+
label: 0,
|
|
58
|
+
sent: function sent() {
|
|
59
|
+
if (t[0] & 1) throw t[1];
|
|
60
|
+
return t[1];
|
|
61
|
+
},
|
|
62
|
+
trys: [],
|
|
63
|
+
ops: []
|
|
64
|
+
},
|
|
65
|
+
f,
|
|
66
|
+
y,
|
|
67
|
+
t,
|
|
68
|
+
g;
|
|
69
|
+
return g = {
|
|
70
|
+
next: verb(0),
|
|
71
|
+
"throw": verb(1),
|
|
72
|
+
"return": verb(2)
|
|
73
|
+
}, typeof _symbol["default"] === "function" && (g[_iterator["default"]] = function () {
|
|
74
|
+
return this;
|
|
75
|
+
}), g;
|
|
76
|
+
|
|
77
|
+
function verb(n) {
|
|
78
|
+
return function (v) {
|
|
79
|
+
return step([n, v]);
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function step(op) {
|
|
84
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
85
|
+
|
|
86
|
+
while (_) {
|
|
87
|
+
try {
|
|
88
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
89
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
90
|
+
|
|
91
|
+
switch (op[0]) {
|
|
92
|
+
case 0:
|
|
93
|
+
case 1:
|
|
94
|
+
t = op;
|
|
95
|
+
break;
|
|
96
|
+
|
|
97
|
+
case 4:
|
|
98
|
+
_.label++;
|
|
99
|
+
return {
|
|
100
|
+
value: op[1],
|
|
101
|
+
done: false
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
case 5:
|
|
105
|
+
_.label++;
|
|
106
|
+
y = op[1];
|
|
107
|
+
op = [0];
|
|
108
|
+
continue;
|
|
109
|
+
|
|
110
|
+
case 7:
|
|
111
|
+
op = _.ops.pop();
|
|
112
|
+
|
|
113
|
+
_.trys.pop();
|
|
114
|
+
|
|
115
|
+
continue;
|
|
116
|
+
|
|
117
|
+
default:
|
|
118
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
119
|
+
_ = 0;
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
124
|
+
_.label = op[1];
|
|
125
|
+
break;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
129
|
+
_.label = t[1];
|
|
130
|
+
t = op;
|
|
131
|
+
break;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
if (t && _.label < t[2]) {
|
|
135
|
+
_.label = t[2];
|
|
136
|
+
|
|
137
|
+
_.ops.push(op);
|
|
138
|
+
|
|
139
|
+
break;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
if (t[2]) _.ops.pop();
|
|
143
|
+
|
|
144
|
+
_.trys.pop();
|
|
145
|
+
|
|
146
|
+
continue;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
op = body.call(thisArg, _);
|
|
150
|
+
} catch (e) {
|
|
151
|
+
op = [6, e];
|
|
152
|
+
y = 0;
|
|
153
|
+
} finally {
|
|
154
|
+
f = t = 0;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
if (op[0] & 5) throw op[1];
|
|
159
|
+
return {
|
|
160
|
+
value: op[0] ? op[1] : void 0,
|
|
161
|
+
done: true
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
var createInvitation = function createInvitation(channelId, url, inviteForm, inviterId, invitee, content) {
|
|
167
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
168
|
+
var token, projectId, endpoint, query, CONTENT_TYPE, response, json;
|
|
169
|
+
return __generator(this, function (_a) {
|
|
170
|
+
switch (_a.label) {
|
|
171
|
+
case 0:
|
|
172
|
+
token = _CoreManager["default"].get('TOKEN');
|
|
173
|
+
projectId = _CoreManager["default"].get('PROJECT_ID');
|
|
174
|
+
endpoint = _CoreManager["default"].get('SERVER_URL') + '/graphql';
|
|
175
|
+
query = "\n mutation ($projectId:String!,$channelId:String!,$url:String!,$inviteForm:String!,$inviterId:String!,$invitee:String!, $content:String){\n createInvitation(input:{projectId:$projectId,channelId:$channelId,url:$url,inviteForm:$inviteForm,inviterId:$inviterId,invitee:$invitee,content:$content}){\n invitation {\n id\n sequence_id\n url\n link\n invite_form\n invitee\n invite_status\n send_at\n created_at\n }\n }\n }\n ";
|
|
176
|
+
CONTENT_TYPE = 'application/json';
|
|
177
|
+
return [4
|
|
178
|
+
/*yield*/
|
|
179
|
+
, fetch(endpoint, {
|
|
180
|
+
method: 'POST',
|
|
181
|
+
headers: {
|
|
182
|
+
'Authorization': "Bearer " + token,
|
|
183
|
+
'Content-Type': CONTENT_TYPE,
|
|
184
|
+
'Accept': CONTENT_TYPE
|
|
185
|
+
},
|
|
186
|
+
body: (0, _stringify["default"])({
|
|
187
|
+
query: query,
|
|
188
|
+
variables: {
|
|
189
|
+
projectId: projectId,
|
|
190
|
+
channelId: channelId,
|
|
191
|
+
url: url,
|
|
192
|
+
inviteForm: inviteForm,
|
|
193
|
+
inviterId: inviterId,
|
|
194
|
+
invitee: invitee,
|
|
195
|
+
content: content
|
|
196
|
+
}
|
|
197
|
+
})
|
|
198
|
+
})];
|
|
199
|
+
|
|
200
|
+
case 1:
|
|
201
|
+
response = _a.sent();
|
|
202
|
+
return [4
|
|
203
|
+
/*yield*/
|
|
204
|
+
, response.json()];
|
|
205
|
+
|
|
206
|
+
case 2:
|
|
207
|
+
json = _a.sent();
|
|
208
|
+
return [2
|
|
209
|
+
/*return*/
|
|
210
|
+
, json.data.createInvitation.invitation];
|
|
211
|
+
}
|
|
212
|
+
});
|
|
213
|
+
});
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
exports.createInvitation = createInvitation;
|
|
217
|
+
|
|
218
|
+
var updateInvitation = function updateInvitation(sequenceId, inviteStatus, subscribedId) {
|
|
219
|
+
if (inviteStatus === void 0) {
|
|
220
|
+
inviteStatus = 'receive';
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (subscribedId === void 0) {
|
|
224
|
+
subscribedId = '';
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
228
|
+
var token, endpoint, query, CONTENT_TYPE, response, json;
|
|
229
|
+
return __generator(this, function (_a) {
|
|
230
|
+
switch (_a.label) {
|
|
231
|
+
case 0:
|
|
232
|
+
token = _CoreManager["default"].get('TOKEN');
|
|
233
|
+
endpoint = _CoreManager["default"].get('SERVER_URL') + '/graphql';
|
|
234
|
+
query = "\n mutation ($sequenceId:String!,$inviteStatus:String!,$subscribedId:String){\n updateInvitation(input:{sequenceId:$sequenceId,inviteStatus:$inviteStatus,subscribedId:$subscribedId}) {\n invitation {\n id\n sequence_id \n link\n invite_form\n invitee\n invite_status\n subscribed_id\n send_at\n received_at\n subscribed_at\n }\n }\n }\n ";
|
|
235
|
+
CONTENT_TYPE = 'application/json';
|
|
236
|
+
return [4
|
|
237
|
+
/*yield*/
|
|
238
|
+
, fetch(endpoint, {
|
|
239
|
+
method: 'POST',
|
|
240
|
+
headers: {
|
|
241
|
+
'Authorization': "Bearer " + token,
|
|
242
|
+
'Content-Type': CONTENT_TYPE,
|
|
243
|
+
'Accept': CONTENT_TYPE
|
|
244
|
+
},
|
|
245
|
+
body: (0, _stringify["default"])({
|
|
246
|
+
query: query,
|
|
247
|
+
variables: {
|
|
248
|
+
sequenceId: sequenceId,
|
|
249
|
+
inviteStatus: inviteStatus,
|
|
250
|
+
subscribedId: subscribedId
|
|
251
|
+
}
|
|
252
|
+
})
|
|
253
|
+
})];
|
|
254
|
+
|
|
255
|
+
case 1:
|
|
256
|
+
response = _a.sent();
|
|
257
|
+
return [4
|
|
258
|
+
/*yield*/
|
|
259
|
+
, response.json()];
|
|
260
|
+
|
|
261
|
+
case 2:
|
|
262
|
+
json = _a.sent();
|
|
263
|
+
return [2
|
|
264
|
+
/*return*/
|
|
265
|
+
, json.data.updateInvitation.invitation];
|
|
266
|
+
}
|
|
267
|
+
});
|
|
268
|
+
});
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
exports.updateInvitation = updateInvitation;
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
|
|
6
|
+
|
|
7
|
+
_Object$defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
exports.updateMemberReport = exports.createMemberReport = void 0;
|
|
12
|
+
|
|
13
|
+
var _stringify = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/json/stringify"));
|
|
14
|
+
|
|
15
|
+
var _iterator = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/symbol/iterator"));
|
|
16
|
+
|
|
17
|
+
var _symbol = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/symbol"));
|
|
18
|
+
|
|
19
|
+
var _promise = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/promise"));
|
|
20
|
+
|
|
21
|
+
var _assign = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/assign"));
|
|
22
|
+
|
|
23
|
+
var _CoreManager = _interopRequireDefault(require("../CoreManager"));
|
|
24
|
+
|
|
25
|
+
var __assign = void 0 && (void 0).__assign || function () {
|
|
26
|
+
__assign = _assign["default"] || function (t) {
|
|
27
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
28
|
+
s = arguments[i];
|
|
29
|
+
|
|
30
|
+
for (var p in s) {
|
|
31
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return t;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
return __assign.apply(this, arguments);
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
var __awaiter = void 0 && (void 0).__awaiter || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) {
|
|
43
|
+
return value instanceof P ? value : new P(function (resolve) {
|
|
44
|
+
resolve(value);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return new (P || (P = _promise["default"]))(function (resolve, reject) {
|
|
49
|
+
function fulfilled(value) {
|
|
50
|
+
try {
|
|
51
|
+
step(generator.next(value));
|
|
52
|
+
} catch (e) {
|
|
53
|
+
reject(e);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function rejected(value) {
|
|
58
|
+
try {
|
|
59
|
+
step(generator["throw"](value));
|
|
60
|
+
} catch (e) {
|
|
61
|
+
reject(e);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function step(result) {
|
|
66
|
+
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
70
|
+
});
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
var __generator = void 0 && (void 0).__generator || function (thisArg, body) {
|
|
74
|
+
var _ = {
|
|
75
|
+
label: 0,
|
|
76
|
+
sent: function sent() {
|
|
77
|
+
if (t[0] & 1) throw t[1];
|
|
78
|
+
return t[1];
|
|
79
|
+
},
|
|
80
|
+
trys: [],
|
|
81
|
+
ops: []
|
|
82
|
+
},
|
|
83
|
+
f,
|
|
84
|
+
y,
|
|
85
|
+
t,
|
|
86
|
+
g;
|
|
87
|
+
return g = {
|
|
88
|
+
next: verb(0),
|
|
89
|
+
"throw": verb(1),
|
|
90
|
+
"return": verb(2)
|
|
91
|
+
}, typeof _symbol["default"] === "function" && (g[_iterator["default"]] = function () {
|
|
92
|
+
return this;
|
|
93
|
+
}), g;
|
|
94
|
+
|
|
95
|
+
function verb(n) {
|
|
96
|
+
return function (v) {
|
|
97
|
+
return step([n, v]);
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function step(op) {
|
|
102
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
103
|
+
|
|
104
|
+
while (_) {
|
|
105
|
+
try {
|
|
106
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
107
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
108
|
+
|
|
109
|
+
switch (op[0]) {
|
|
110
|
+
case 0:
|
|
111
|
+
case 1:
|
|
112
|
+
t = op;
|
|
113
|
+
break;
|
|
114
|
+
|
|
115
|
+
case 4:
|
|
116
|
+
_.label++;
|
|
117
|
+
return {
|
|
118
|
+
value: op[1],
|
|
119
|
+
done: false
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
case 5:
|
|
123
|
+
_.label++;
|
|
124
|
+
y = op[1];
|
|
125
|
+
op = [0];
|
|
126
|
+
continue;
|
|
127
|
+
|
|
128
|
+
case 7:
|
|
129
|
+
op = _.ops.pop();
|
|
130
|
+
|
|
131
|
+
_.trys.pop();
|
|
132
|
+
|
|
133
|
+
continue;
|
|
134
|
+
|
|
135
|
+
default:
|
|
136
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
137
|
+
_ = 0;
|
|
138
|
+
continue;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
142
|
+
_.label = op[1];
|
|
143
|
+
break;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
147
|
+
_.label = t[1];
|
|
148
|
+
t = op;
|
|
149
|
+
break;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
if (t && _.label < t[2]) {
|
|
153
|
+
_.label = t[2];
|
|
154
|
+
|
|
155
|
+
_.ops.push(op);
|
|
156
|
+
|
|
157
|
+
break;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
if (t[2]) _.ops.pop();
|
|
161
|
+
|
|
162
|
+
_.trys.pop();
|
|
163
|
+
|
|
164
|
+
continue;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
op = body.call(thisArg, _);
|
|
168
|
+
} catch (e) {
|
|
169
|
+
op = [6, e];
|
|
170
|
+
y = 0;
|
|
171
|
+
} finally {
|
|
172
|
+
f = t = 0;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
if (op[0] & 5) throw op[1];
|
|
177
|
+
return {
|
|
178
|
+
value: op[0] ? op[1] : void 0,
|
|
179
|
+
done: true
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
var CONTENT_TYPE = 'application/json';
|
|
185
|
+
|
|
186
|
+
var createMemberReport = function createMemberReport(input) {
|
|
187
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
188
|
+
var token, projectId, endpoint, query, response, json;
|
|
189
|
+
return __generator(this, function (_a) {
|
|
190
|
+
switch (_a.label) {
|
|
191
|
+
case 0:
|
|
192
|
+
token = _CoreManager["default"].get('TOKEN');
|
|
193
|
+
projectId = _CoreManager["default"].get('PROJECT_ID');
|
|
194
|
+
endpoint = _CoreManager["default"].get('SERVER_URL') + '/graphql';
|
|
195
|
+
query = "\n mutation ($projectId:String,$channelId:String,$fromMemberId:String,$toMemberId:String){\n createMemberReport(input:{projectId:$projectId,channelId:$channelId,fromMemberId:$fromMemberId,toMemberId:$toMemberId}) {\n report {\n id\n project_id\n channel_id\n sequence_id\n from_member_id\n to_member_id\n status\n etc\n created_at\n updated_at\n }\n }\n }\n ";
|
|
196
|
+
return [4
|
|
197
|
+
/*yield*/
|
|
198
|
+
, fetch(endpoint, {
|
|
199
|
+
method: 'POST',
|
|
200
|
+
headers: {
|
|
201
|
+
'Authorization': "Bearer " + token,
|
|
202
|
+
'Content-Type': CONTENT_TYPE,
|
|
203
|
+
'Accept': CONTENT_TYPE
|
|
204
|
+
},
|
|
205
|
+
body: (0, _stringify["default"])({
|
|
206
|
+
query: query,
|
|
207
|
+
variables: __assign({
|
|
208
|
+
projectId: projectId
|
|
209
|
+
}, input)
|
|
210
|
+
})
|
|
211
|
+
})];
|
|
212
|
+
|
|
213
|
+
case 1:
|
|
214
|
+
response = _a.sent();
|
|
215
|
+
return [4
|
|
216
|
+
/*yield*/
|
|
217
|
+
, response.json()];
|
|
218
|
+
|
|
219
|
+
case 2:
|
|
220
|
+
json = _a.sent();
|
|
221
|
+
return [2
|
|
222
|
+
/*return*/
|
|
223
|
+
, json.data.createMemberReport.report];
|
|
224
|
+
}
|
|
225
|
+
});
|
|
226
|
+
});
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
exports.createMemberReport = createMemberReport;
|
|
230
|
+
|
|
231
|
+
var updateMemberReport = function updateMemberReport(input) {
|
|
232
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
233
|
+
var token, projectId, endpoint, query, response, json;
|
|
234
|
+
return __generator(this, function (_a) {
|
|
235
|
+
switch (_a.label) {
|
|
236
|
+
case 0:
|
|
237
|
+
token = _CoreManager["default"].get('TOKEN');
|
|
238
|
+
projectId = _CoreManager["default"].get('PROJECT_ID');
|
|
239
|
+
endpoint = _CoreManager["default"].get('SERVER_URL') + '/graphql';
|
|
240
|
+
query = "\n mutation ($sequenceId:String,$status:Int,$etc:String){\n updateMemberReport(input : {sequenceId:$sequenceId,status:$status,etc:$etc}) {\n report {\n id\n project_id\n channel_id\n sequence_id\n from_member_id\n to_member_id\n status\n etc\n created_at\n updated_at\n }\n }\n }\n ";
|
|
241
|
+
return [4
|
|
242
|
+
/*yield*/
|
|
243
|
+
, fetch(endpoint, {
|
|
244
|
+
method: 'POST',
|
|
245
|
+
headers: {
|
|
246
|
+
'Authorization': "Bearer " + token,
|
|
247
|
+
'Content-Type': CONTENT_TYPE,
|
|
248
|
+
'Accept': CONTENT_TYPE
|
|
249
|
+
},
|
|
250
|
+
body: (0, _stringify["default"])({
|
|
251
|
+
query: query,
|
|
252
|
+
variables: input
|
|
253
|
+
})
|
|
254
|
+
})];
|
|
255
|
+
|
|
256
|
+
case 1:
|
|
257
|
+
response = _a.sent();
|
|
258
|
+
return [4
|
|
259
|
+
/*yield*/
|
|
260
|
+
, response.json()];
|
|
261
|
+
|
|
262
|
+
case 2:
|
|
263
|
+
json = _a.sent();
|
|
264
|
+
return [2
|
|
265
|
+
/*return*/
|
|
266
|
+
, json.data.updateMemberReport.report];
|
|
267
|
+
}
|
|
268
|
+
});
|
|
269
|
+
});
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
exports.updateMemberReport = updateMemberReport;
|