mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-22 21:29:14 +00:00
PR feedback
This commit is contained in:
parent
60c6bc3e48
commit
39b9d6e1d8
@ -53,14 +53,14 @@ __embarkIPFS.saveText = function (text) {
|
||||
var promise = new Promise(function (resolve, reject) {
|
||||
if (!self._ipfsConnection) {
|
||||
var connectionError = new Error(NoConnectionError);
|
||||
reject(connectionError);
|
||||
return reject(connectionError);
|
||||
}
|
||||
self._ipfsConnection.add(self._ipfsConnection.Buffer.from(text), function (err, result) {
|
||||
if (err) {
|
||||
reject(err);
|
||||
} else {
|
||||
resolve(result[0].path);
|
||||
return reject(err);
|
||||
}
|
||||
|
||||
resolve(result[0].path);
|
||||
});
|
||||
});
|
||||
|
||||
@ -74,7 +74,7 @@ __embarkIPFS.get = function (hash) {
|
||||
var promise = new Promise(function (resolve, reject) {
|
||||
if (!self._ipfsConnection) {
|
||||
var connectionError = new Error(NoConnectionError);
|
||||
reject(connectionError);
|
||||
return reject(connectionError);
|
||||
}
|
||||
self._ipfsConnection.get(hash, function (err, files) {
|
||||
if (err) {
|
||||
@ -98,7 +98,7 @@ __embarkIPFS.uploadFile = function (inputSelector) {
|
||||
var promise = new Promise(function (resolve, reject) {
|
||||
if (!self._ipfsConnection) {
|
||||
var connectionError = new Error(NoConnectionError);
|
||||
reject(connectionError);
|
||||
return reject(connectionError);
|
||||
}
|
||||
var reader = new FileReader();
|
||||
reader.onloadend = function () {
|
||||
@ -106,10 +106,10 @@ __embarkIPFS.uploadFile = function (inputSelector) {
|
||||
var buffer = self._ipfsConnection.Buffer.from(fileContent);
|
||||
self._ipfsConnection.add(buffer, function (err, result) {
|
||||
if (err) {
|
||||
reject(err);
|
||||
} else {
|
||||
resolve(result[0].path);
|
||||
return reject(err);
|
||||
}
|
||||
|
||||
resolve(result[0].path);
|
||||
});
|
||||
};
|
||||
reader.readAsArrayBuffer(file);
|
||||
|
@ -105,10 +105,10 @@ __embarkSwarm.getUrl = function (hash) {
|
||||
|
||||
const NotAvailable = "Not available with Swarm";
|
||||
|
||||
__embarkSwarm.resolve = function () {
|
||||
return new Error(NotAvailable);
|
||||
__embarkSwarm.resolve = function (_name, callback) {
|
||||
callback(NotAvailable);
|
||||
};
|
||||
|
||||
__embarkSwarm.register = function () {
|
||||
return new Error(NotAvailable);
|
||||
__embarkSwarm.register = function (_addr, callback) {
|
||||
callback(NotAvailable);
|
||||
};
|
||||
|
@ -215,6 +215,8 @@ class Storage extends React.Component {
|
||||
</FormGroup>
|
||||
</Form>
|
||||
|
||||
<Alert bsStyle="warning">The 2 functions below are only available with IPFS</Alert>
|
||||
|
||||
<h3>Register to IPNS</h3>
|
||||
<Form inline onKeyDown={(e) => this.checkEnter(e, this.ipnsRegister)}>
|
||||
<FormGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user