Initial commit: Client Doc docs Server Tools
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
import moduleHelper from './module-helper';
|
||||
export default {
|
||||
handleText(s, f, c) {
|
||||
const self = this;
|
||||
return {
|
||||
success(res) {
|
||||
self.textFormat(s, res);
|
||||
},
|
||||
fail(res) {
|
||||
self.textFormat(f, res);
|
||||
},
|
||||
complete(res) {
|
||||
self.textFormat(c, res);
|
||||
},
|
||||
};
|
||||
},
|
||||
handleTextLongBack(s, f, c) {
|
||||
const self = this;
|
||||
return {
|
||||
success(res) {
|
||||
self.textFormatLongBack(s, res);
|
||||
},
|
||||
fail(res) {
|
||||
self.textFormatLongBack(f, res);
|
||||
},
|
||||
complete(res) {
|
||||
self.textFormatLongBack(c, res);
|
||||
},
|
||||
};
|
||||
},
|
||||
textFormat(id, res) {
|
||||
if (!id) {
|
||||
return false;
|
||||
}
|
||||
moduleHelper.send('TextResponseCallback', JSON.stringify({
|
||||
callbackId: id,
|
||||
errMsg: res.errMsg,
|
||||
errCode: res.errCode,
|
||||
}));
|
||||
},
|
||||
textFormatLongBack(id, res) {
|
||||
if (!id) {
|
||||
return false;
|
||||
}
|
||||
moduleHelper.send('TextResponseLongCallback', JSON.stringify({
|
||||
callbackId: id,
|
||||
errMsg: res.errMsg,
|
||||
errCode: res.errCode,
|
||||
}));
|
||||
},
|
||||
handlecloudCallFunction(s, f, c) {
|
||||
const self = this;
|
||||
return {
|
||||
success(res) {
|
||||
self.cloudCallFunctionFormat(s, res);
|
||||
},
|
||||
fail(res) {
|
||||
self.cloudCallFunctionFormat(f, res);
|
||||
},
|
||||
complete(res) {
|
||||
self.cloudCallFunctionFormat(c, res);
|
||||
},
|
||||
};
|
||||
},
|
||||
cloudCallFunctionFormat(id, res) {
|
||||
if (!id) {
|
||||
return false;
|
||||
}
|
||||
moduleHelper.send('CloudCallFunctionResponseCallback', JSON.stringify({
|
||||
callbackId: id,
|
||||
errMsg: res.errMsg,
|
||||
result: typeof res.result === 'object' ? JSON.stringify(res.result) : res.result,
|
||||
requestID: res.requestID,
|
||||
}));
|
||||
},
|
||||
handle(formatFunc, s, f, c) {
|
||||
return {
|
||||
success(res) {
|
||||
if (!s) {
|
||||
return false;
|
||||
}
|
||||
formatFunc(s, res);
|
||||
},
|
||||
fail(res) {
|
||||
if (!f) {
|
||||
return false;
|
||||
}
|
||||
formatFunc(f, res);
|
||||
},
|
||||
complete(res) {
|
||||
if (!c) {
|
||||
return false;
|
||||
}
|
||||
formatFunc(c, res);
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user