-
Notifications
You must be signed in to change notification settings - Fork 347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add promise support #62
Comments
yah +1, this should be pretty easy to add |
I made an attempt while wrapping x-ray for my mini-library, this might help if you can't wait for the new release:
Of course by no means it's complete. I didn't need the |
+1 to this |
1 similar comment
+1 to this |
With bluebird, var getTitle = Promise.promisify(x('http://google.com', 'title')); Full example var Promise = require('bluebird');
var Xray = require('x-ray');
var x = Xray();
var getTitle = Promise.promisify(x('http://google.com', 'title'));
getTitle().then(function(title) {
console.log(title); // Google
}); |
is anyone implementing this? |
@yang-wei Bluebird is the way to go - the most elegant and easiest solution. @monolithed do you wanna mark this as resolved? |
@kengz, I use a simple wrapper like: // xray.js
import Xray from 'x-ray';
export default class {
get (url, data) {
return Promise((resolve, reject) => {
let xray = Xray();
xray(url, data)((error, result) => {
if (error) {
reject(error);
}
else {
resolve(result);
}
});
});
}
};
// usage.js
import Xray from './xray';
let xray = new Xray;
xray.get(url, data).then(result => { }); But, the issue is not resolved yet. |
+1 |
1 similar comment
👍 |
Actually made a package months ago for this by extending my answer above. Just putting this out there: |
@kengz, I'm sorry, but you package does not relate to the current issue. |
In current setup, can we use promise without adding I'm looking to get image dimension using https://github.com/nodeca/probe-image-size
|
To add to monolithed's answer, I'm using the following:
Usage:
I'm not a guru, so feedback welcomed. |
Code example looks goods, but I think that promise is not a feature for this library. You can use pify out of the box. It converts callback style into Promise style. |
Promise is not a feature. It should be part of any library )) |
Very related with caolan/async#956. @monolithed ideally yes, but I feel that first we need to put effort have a better codebase for do it. I'm trying to uncouple some methods that are not related with x-ray interface. Later, we can a promise wrapping around the API methods |
I made a util for xray-to-promise:
|
+1 |
^ you just emailed 13 people. please use the thumbs up button instead |
New solution that works much better with Note that external dependencies are used, so you need to do const Promise = require('bluebird')
const _ = require('lodash')
const sts = require('stream-to-string')
const Xray = require('x-ray')
function streamToPromise(stream) {
return new Promise((resolve, reject) => {
sts(stream, (err, resStr) => {
if (err) {
reject(err)
} else {
resolve(JSON.parse(resStr))
}
})
})
}
// inject a promisify function to xray using its stream()
// called xray().promisify() to return a promise
function injectWithPromisify(xray) {
const wrapx = _.wrap(xray, (fn, urlStr, scope, selector) => {
const initx = fn(urlStr, scope, selector)
const promisify = function pfn() {
return streamToPromise(initx.stream())
}
_.assign(initx, { promisify })
return initx
})
return wrapx
}
// return a new instance of xray with options
function newXray(){
let xray = Xray()
xray = injectWithPromisify(xray)
return xray
}
// Usage
const xray = newXray()
const url = 'http://www.imdb.com/'
const selector = ['title']
xray(url, selector).promisify()
.then((res) => {
console.log(JSON.stringify(res))
}).catch((err) => {
console.log(err)
}) What it does is adding a xray(url, selector)
.paginate('.next_page@href')
.limit(3)
.promisify()
.then((res) => {
console.log(JSON.stringify(res))
}).catch((err) => {
console.log(err)
}) |
nice! fwiw, I'd totally accept a PR that does something like this: Xray.prototype.then = function () {
return new Promise(function (resolve, reject) {
// ...
})
} |
@matthewmueller yep, turns out to be way cleaner if done from within the source code. Please review, and advice on some of the unchecked items in the PR |
Heys, guys! Let me share what I've been doing for a while now, maybe it could help someone (it's similar to the solution by @monolithed). const Xray = require('x-ray')
const request = (params) => {
const { url, filters, limit } = params
const { parent, children, pagination } = params.selectors
const x = filters ? Xray({ filters }) : Xray()
return new Promise((resolve, reject) => {
try {
x(url, parent, children)
((error, results) => {
if (error) reject(error)
resolve(results)
}).paginate(pagination).limit(limit)
} catch (error) {
reject(error)
}
})
}
module.exports = request Then I'd just pass an object like this: const obj = {
url,
filters,
selectors: {
parent,
children,
pagination
},
limit
}
request(obj)
.then(console.log) Let me know if you'd have any idea on how to improve it. :) |
`if (error) reject(error)` -> `if (error) return reject(error)`.
Other than that, that seems like how I would promisify it.
…On Fri, May 12, 2017 at 8:24 PM, Vinicius Camargo ***@***.***> wrote:
Heys, guys!
Let me share what I've been doing for a while now, maybe it could help
someone (similar to the solution by @monolithed
<https://github.com/monolithed>).
Please, keep in mind that I'm not totally sure if it was the best approach
for the task, nor if is performant or compliant to best practices. That
said, I must say that it's been working really well for me since I haven't
seen any issues so far.
const Xray = require('x-ray')
const request = (params) => {
const { url, filters, limit } = params
const { parent, children, pagination } = params.selectors
const x = filters ? Xray({ filters }) : Xray()
return new Promise((resolve, reject) => {
try {
x(url, parent, children)
((error, results) => {
if (error) reject(error)
resolve(results)
}).paginate(pagination).limit(limit)
} catch (error) {
reject(error)
}
})
}
module.exports = request
Then I'd just pass an object like this:
const obj = {
url,
filters,
selectors: {
parent,
children,
pagination
},
limit
}
request(obj)
.then(console.log)
Let me know if you'd have any idea on how to improve it. :)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#62 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAYAK2rZ3yQ6MqJTk-Hb9toSK7QzqBtZks5r5KPIgaJpZM4FSL6g>
.
|
Hi guys, |
The text was updated successfully, but these errors were encountered: