Daniel van Mil

Results 21 comments of Daniel van Mil

thanks @jouni! Any chance this "feature" will be added to the default Vaadin or might even become standard behavior?

why are the fragments decoded anyway? I can't seem to use a identifier with slashes for example with a url like http://localhost#/%2Fmy%2Fpath with the use-hash-as-path option as the fragment is...

We also have the use case where we want to prevent routing when the user decides from a discard changes dialog. The Vaadin router doc/API is not very clear here,...

> Considering [Langchain Python/JS](https://python.langchain.com/docs/integrations/toolkits/playwright) already fits the use case (playwright and non-OpenAI frameworks), I'm not sure this is really needed. I got also interested: it seems the JS/TS version of...

+1 For now I used laika.behaviors.clear() as a hacky workaround

can this also be implemented by using the keepNonSubscriptionConnectionsOpen? I cannot seem to get it to work with something like: ``` const subscriptionInterceptor = laika.intercept({operationName: "GetUser"}, false, true); subscriptionInterceptor.waitForNextSubscription().then(() =>...

@niieani : thanks for the answer, but I still don't understand it. I notices the keepNonSubscriptionConnectionsOpen option and thought I could use this to delay a query or mutation response...

+1 For now we use https://the-guild.dev/graphql/codegen/plugins/typescript/typed-document-node and created a helper function like: ``` export function getLaikaMatcher(query: ComponentDocument): Matcher { return {operationName: (query.definitions[0] as OperationDefinitionNode).name.value}; } ``` and then use the...