আমার একটি ES6- স্টাইলের ফাংশন রয়েছে যা এর সাথে ফাংশন রচনা ব্যবহার করে সংজ্ঞায়িত করা হয় asyncPipe
।
import { getItemAsync } from 'expo-secure-store';
const asyncPipe = (...fns) => x => fns.reduce(async (y, f) => f(await y), x);
const getToken = () => getItemAsync('token');
const liftedGetToken = async ({ ...rest }) => ({
token: await getToken(),
...rest,
});
const liftedFetch = ({ body, route, token, method = 'GET' } = {}) =>
fetch(route, {
...(body && { body: JSON.stringify(body) }),
headers: {
'Content-Type': 'application/json',
...(token && { Authorization: `Bearer ${token}` }),
},
method,
});
const json = res => res.json();
/**
* @method
* @param {Object} fetchSettings the settings for the fetch request
* @param {Object} fetchSettings.body the body of the request
* @param {string} fetchSettings.route the URL of the request
* @param {string} fetchSettings.method the method of the request
* @param {string} fetchSettings.token should only be used for testing and unauthenticated requests
*/
const request = asyncPipe(liftedGetToken, liftedFetch, json);
আপনি দেখতে পাচ্ছেন যে আমি এটিতে জেএসডোকের বর্ণনা যুক্ত করার চেষ্টা করেছি। তবে আমি যখনই এটি অন্য কোথাও ব্যবহার করি তখন আমার সম্পাদক, ভিএসকোড এর পরামিতিগুলির পরামর্শ দেয় না। আপনি কীভাবে জেএসডকের সাথে এই ধরণের ফাংশনগুলি ঘোষণা করবেন? এবং আমি কীভাবে এই ফাংশনটির জন্য ইন্টেলিসেন্সের সাথে কাজ করতে পারি?