The question/problem is following.
require.js states the way of defining objects inside modules with define([requiremens],object) as best way.
So every page or other js file will do require() call and receive modules as parameters.
This works pretty fine, each function/module has own namespace. But, the problem is that while I have: The following is real-code example:
/*AJAX/Requests.js*/
define(['UI/Message'],function(Message){
var Requests={
checkResponse:function(response){
//1==ok
//0==error
//2==good message
//3==good message, but still stop
if(response.status==1){
return true;
}
else if(response.status==2){
Message.good(response.message);
return true;
}else if(response.status==3){
Message.good(response.message);
return false;
}
else{
Message.bad(response.message);
return false;
}
}
};
return Requests;
});
Now the UI/Message is defined in the same way, and it returns object. But while i edit file with requests - I cant navigate by code, so if i want to edit Message object - > the single way is to go and open file myself and to find function i need
Is there some workaround for pycharm specific or to require.js in common to solve this issue? While having a lot of code it becomes a mess to navigate it.
And what much worser -> editor never know what functions objects have.
The one possible solution i can see is to not to use enclosed namespaces, and to declare global variable before define() call, but in this case all objects shall be called like UI_Message, AJAX_Requests. In order to be sure, that i dont have some Message in two different locations....
And i am not sure, if require.js optimizator will use this correctly. Require.js documentation states very clear, to stay away from global variables
Thanks for any advices