Adam S
Adam S
I was thinking about this this morning. When the app is initially bootstrapping all the modules get an opportunity to define imperative configuration. jQuery plugins are imperative meaning information about...
I went ahead and started changing how configuration is stored on the client. It's just a cache with a getter and setter. https://github.com/adam-s/apollo-universal-starter-kit/blob/configuration/packages/client/src/modules/configConnector.web.jsx https://github.com/adam-s/apollo-universal-starter-kit/commit/63912ba2bf3ae7d5b2972147a5d486aefcaea2db I ran into a problem with...
Sorry about that. When I get free time, I will clarify more of my thoughts on how to build an extendable configuration which doesn't hard code features like nav items....
I added a third navigation menu and wanted each module to be able to add nav menu items to it without changing files which will be overwritten when pulling the...
@vlasenko I don't think my idea is to throw off connectors. I believe that connectors should be defined by modules using them either by getting a piece of configuration or...
`const path = `${RNFS.ExternalStorageDirectoryPath}/Download/${fileName}`;` Need to add the Download folder in the path. Files can then be found in Downloads.
I'm having a problem with this. Is there a reasonable hack to fix this problem available?
> I am very certain that firestore is now using fetch instead of XMLHttpRequest, but maybe i am wrong. Your error is pointing to Google's Closure library. https://github.com/google/closure-library/blob/master/closure/goog/net/xmlhttp.js#L170 This isn't...
This is very ambiguous question, likely outside the scope of this project, and probably should be posted on Stack Overflow instead. If you need a router in a tab extension...
@devhandler Here is an example of how I solved it. Watch for URL changes using the background service worker. What is important is using the background script to listen for...