এখানে প্রচুর উত্তরগুলি রেজিক্সগুলি ব্যবহার করে, এটি ঠিক আছে তবে এটি ভাষাতে খুব ভাল নতুন সংযোজন পরিচালনা করে না (যেমন তীর ফাংশন এবং ক্লাস)। এছাড়াও নোটের বিষয়টি হ'ল আপনি যদি মিনিফাড কোডে এই ফাংশনগুলির কোনও ব্যবহার করেন তবে এটি চলে যাচ্ছে 🔥 এটি ক্ষুদ্রাকৃত নাম যাই হোক না কেন ব্যবহার করবে। কৌনিকটি ডিআই ধারক দিয়ে রেজিস্ট্রেশন করার সময় আর্গুমেন্টের ক্রমের সাথে মেলে এমন একটি স্ট্রিংয়ের অর্ডারযুক্ত অ্যারেতে আপনাকে অনুমতি দেওয়ার মাধ্যমে এগুলির চারপাশে যায়। সমাধান সহ তাই:
var esprima = require('esprima');
var _ = require('lodash');
const parseFunctionArguments = (func) => {
// allows us to access properties that may or may not exist without throwing
// TypeError: Cannot set property 'x' of undefined
const maybe = (x) => (x || {});
// handle conversion to string and then to JSON AST
const functionAsString = func.toString();
const tree = esprima.parse(functionAsString);
console.log(JSON.stringify(tree, null, 4))
// We need to figure out where the main params are. Stupid arrow functions 👊
const isArrowExpression = (maybe(_.first(tree.body)).type == 'ExpressionStatement');
const params = isArrowExpression ? maybe(maybe(_.first(tree.body)).expression).params
: maybe(_.first(tree.body)).params;
// extract out the param names from the JSON AST
return _.map(params, 'name');
};
এটি মূল পার্স ইস্যু এবং আরও কয়েকটি ফাংশনের ধরণের (যেমন তীর ফাংশন) পরিচালনা করে। এটি কীভাবে পরিচালনা করতে পারে এবং কীভাবে পরিচালনা করতে পারে না তার একটি ধারণা এখানে রয়েছে:
// I usually use mocha as the test runner and chai as the assertion library
describe('Extracts argument names from function signature. 💪', () => {
const test = (func) => {
const expectation = ['it', 'parses', 'me'];
const result = parseFunctionArguments(toBeParsed);
result.should.equal(expectation);
}
it('Parses a function declaration.', () => {
function toBeParsed(it, parses, me){};
test(toBeParsed);
});
it('Parses a functional expression.', () => {
const toBeParsed = function(it, parses, me){};
test(toBeParsed);
});
it('Parses an arrow function', () => {
const toBeParsed = (it, parses, me) => {};
test(toBeParsed);
});
// ================= cases not currently handled ========================
// It blows up on this type of messing. TBH if you do this it deserves to
// fail 😋 On a tech note the params are pulled down in the function similar
// to how destructuring is handled by the ast.
it('Parses complex default params', () => {
function toBeParsed(it=4*(5/3), parses, me) {}
test(toBeParsed);
});
// This passes back ['_ref'] as the params of the function. The _ref is a
// pointer to an VariableDeclarator where the ✨🦄 happens.
it('Parses object destructuring param definitions.' () => {
function toBeParsed ({it, parses, me}){}
test(toBeParsed);
});
it('Parses object destructuring param definitions.' () => {
function toBeParsed ([it, parses, me]){}
test(toBeParsed);
});
// Classes while similar from an end result point of view to function
// declarations are handled completely differently in the JS AST.
it('Parses a class constructor when passed through', () => {
class ToBeParsed {
constructor(it, parses, me) {}
}
test(ToBeParsed);
});
});
আপনি এটি ES6 প্রক্সিগুলির জন্য কী ব্যবহার করতে চান তার উপর নির্ভর করে এবং ডেস্ট্রাকচারিং আপনার সেরা বাজি হতে পারে। উদাহরণস্বরূপ আপনি যদি নির্ভরতা ইনজেকশনের জন্য এটি ব্যবহার করতে চান (প্যারামগুলির নাম ব্যবহার করে) তবে আপনি এটি নিম্নলিখিত হিসাবে এটি করতে পারেন:
class GuiceJs {
constructor() {
this.modules = {}
}
resolve(name) {
return this.getInjector()(this.modules[name]);
}
addModule(name, module) {
this.modules[name] = module;
}
getInjector() {
var container = this;
return (klass) => {
console.log(klass);
var paramParser = new Proxy({}, {
// The `get` handler is invoked whenever a get-call for
// `injector.*` is made. We make a call to an external service
// to actually hand back in the configured service. The proxy
// allows us to bypass parsing the function params using
// taditional regex or even the newer parser.
get: (target, name) => container.resolve(name),
// You shouldn't be able to set values on the injector.
set: (target, name, value) => {
throw new Error(`Don't try to set ${name}! 😑`);
}
})
return new klass(paramParser);
}
}
}
এটি সেখানকার সর্বাধিক উন্নত সমাধানকারী নয় তবে আপনি যদি সাধারণ ডিআইয়ের জন্য আরগস পার্সার ব্যবহার করতে চান তবে কীভাবে আপনি এটির জন্য একটি প্রক্সি ব্যবহার করতে পারেন তার একটি ধারণা দেয়। এই পদ্ধতির মধ্যে একটি সামান্য সতর্কতা আছে। আমাদের সাধারণ প্যারামের পরিবর্তে ডেস্ট্রাকচারিং অ্যাসাইনমেন্ট ব্যবহার করতে হবে। যখন আমরা ইনজেক্টর প্রক্সিতে পাস করি তখন ডাস্টস্ট্রাকচারিংটি বস্তুতে প্রাপ্তকারীকে কল করার সমান।
class App {
constructor({tweeter, timeline}) {
this.tweeter = tweeter;
this.timeline = timeline;
}
}
class HttpClient {}
class TwitterApi {
constructor({client}) {
this.client = client;
}
}
class Timeline {
constructor({api}) {
this.api = api;
}
}
class Tweeter {
constructor({api}) {
this.api = api;
}
}
// Ok so now for the business end of the injector!
const di = new GuiceJs();
di.addModule('client', HttpClient);
di.addModule('api', TwitterApi);
di.addModule('tweeter', Tweeter);
di.addModule('timeline', Timeline);
di.addModule('app', App);
var app = di.resolve('app');
console.log(JSON.stringify(app, null, 4));
এটি নিম্নলিখিত ফলাফলগুলি দেয়:
{
"tweeter": {
"api": {
"client": {}
}
},
"timeline": {
"api": {
"client": {}
}
}
}
এটি পুরো অ্যাপ্লিকেশনটি ওয়্যার্ড করেছিল। সেরাটি হ'ল অ্যাপটি পরীক্ষা করা সহজ (আপনি কেবলমাত্র প্রতিটি ক্লাস ইনস্ট্যান্ট করতে পারেন এবং মক / স্টাব / ইত্যাদি ক্ষেত্রে পাস করতে পারেন)। এছাড়াও যদি আপনার প্রয়োগগুলি অদলবদল করার দরকার হয় তবে আপনি এটি একক জায়গা থেকে করতে পারেন। জেএস প্রক্সি অবজেক্টের কারণে এই সমস্ত সম্ভব।
দ্রষ্টব্য: উত্পাদন ব্যবহারের জন্য প্রস্তুত হওয়ার আগে অনেক কাজ করার দরকার আছে তবে এটি কী দেখাচ্ছে তা ধারণা দেয় না an
উত্তরে কিছুটা দেরি হলেও এটি অন্যদের যারা একই জিনিস নিয়ে ভাবছেন তাদের পক্ষে এটি সহায়তা করতে পারে। 👍