Stefan Meyer
Stefan Meyer
please test 0.4.3 version.
Can you tell me which function names are the problem here? Is it on the server or in the browser? On the server we actually need to keep function names...
You could also simply turn off uglify for the server. It isn't really useful for the server.
That seems to be a missing piece. The [ResourceMapping](https://github.com/sinnerschrader/aem-react-js/blob/1619199106d2dd9f5d7bd6e13c1d7c1aa9c9a1db/router/ResourceMappingImpl.tsx) should actually handle this but it is not used in the [ClientSling](https://github.com/sinnerschrader/aem-react-js/blob/706e14d04e6082eb309b3ebed77f5add4829e383/store/ClientSling.tsx#L50). You should override/extend ClientSling like this: ````javascript export class...
1) No, just use the instance that you are registering. They are both defined in the same file. 2) Yes, replace it. Please have a look at [client.tsx](https://github.com/sinnerschrader/aem-react/blob/master/demo/src/main/ts/client.tsx#L21): Both ClientSling...
You must change the Implementation of ResourceMapping to remove the "/content/${project}/" part of the resource path to create the path for the ajax call. The standard implementation just appends the...
This issue is really important and I am grateful for you raising it. Let's solve this and then I will try to find a way to make it work in...
Yes, you need to override subscribe and pass the mappedPath to fetch - path is different for each call. Can you share the code?
ResourceMapping is really where this code should reside. Maybe there should be another special method for this purpose. I will have a look in the next couple days.
You are probably right, that the ServerSling doesn't care about the mapping. So the cache's keys are resourcePaths. Im happy to accept a Merge Request, we just need to create...