move js code to its own folder

This commit is contained in:
Iuri Matias 2017-12-30 20:57:40 -05:00
parent 37a126a6b8
commit 35a4098b82
4 changed files with 24 additions and 39 deletions

View File

@ -42,12 +42,13 @@ class Whisper {
// TODO: possible race condition could be a concern
this.events.request("version:get:web3", function(web3Version) {
let code = "";
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'message_events.js')).toString();
if (web3Version[0] === "0") {
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs_old_web3.js')).toString();
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'embarkjs_old_web3.js')).toString();
code += "\nEmbarkJS.Messages.registerProvider('whisper', __embarkWhisperOld);";
} else {
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs.js')).toString();
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'embarkjs.js')).toString();
code += "\nEmbarkJS.Messages.registerProvider('whisper', __embarkWhisperNewWeb3);";
}
self.embark.addCodeToEmbarkJS(code);

View File

@ -60,26 +60,9 @@ __embarkWhisperNewWeb3.sendMessage = function(options) {
};
__embarkWhisperNewWeb3.listenTo = function(options) {
var topics, messageEvents;
messageEvents = function() {
this.cb = function() {};
};
var topics = options.topic || options.topics;
messageEvents.prototype.then = function(cb) {
this.cb = cb;
};
messageEvents.prototype.error = function(err) {
return err;
};
messageEvents.prototype.stop = function() {
this.filter.stopWatching();
};
topics = options.topic || options.topics;
let promise = new messageEvents();
let promise = new __MessageEvents();
if (typeof topics === 'string') {
topics = [this.web3.utils.toHex(topics).slice(0, 10)];

View File

@ -63,26 +63,10 @@ __embarkWhisperOld.sendMessage = function(options) {
};
__embarkWhisperOld.listenTo = function(options) {
var topics, _topics, messageEvents;
var topics, _topics;
topics = options.topic || options.topics;
_topics = [];
messageEvents = function() {
this.cb = function() {};
};
messageEvents.prototype.then = function(cb) {
this.cb = cb;
};
messageEvents.prototype.error = function(err) {
return err;
};
messageEvents.prototype.stop = function() {
this.filter.stopWatching();
};
if (typeof topics === 'string') {
_topics = [topics];
} else {
@ -94,7 +78,7 @@ __embarkWhisperOld.listenTo = function(options) {
topics: topics
};
let promise = new messageEvents();
let promise = new __MessageEvents();
let filter = this.web3.shh.filter(filterOptions, function(err, result) {
var payload = JSON.parse(EmbarkJS.Utils.toAscii(result.payload));

View File

@ -0,0 +1,17 @@
var __MessageEvents = function() {
this.cb = function() {};
};
__MessageEvents.prototype.then = function(cb) {
this.cb = cb;
};
__MessageEvents.prototype.error = function(err) {
return err;
};
__MessageEvents.prototype.stop = function() {
this.filter.stopWatching();
};