-
-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModalDialogParams - allow ability to be tokenized, provide differently or remove #538
Comments
Hi, My preference would be to avoid keeping any state inside the That said, enabling web + {N} scenarios is a top priority. Can you please share why 'ModalDialogParams' are a problem? Maybe we can provide web-compatible stub(#523) for those too? |
@vakrilov I like having those services remain I tried all these combos:
None of those worked to successfully tokenize modal params :( Other services are able to be tokenized like that to share across single codebase but since you construct |
You are right - for each dialog - a new instance of You might to try to map the I'm still wondering on what the best way to implement web compatibility is. Do you think it is reasonable to expose |
Hi @vakrilov and @NathanWalker, I know this issue is very old but I'm having problems in getting ModalDialogParams tokenized to integrate it in a Web + {N} application. Is there any news on this issue? Thank you very much. |
We haven't done any work on this one yet, but we can kick off the discussion once again. |
Hi @vakrilov, Thank you for your response. I've just managed to make this work using another approach. I' ve created two files (services) 'dialog-params.service.tns.ts' and 'dialog-params.service.ts':
Then, with a gulp task, if I am building {N} app, I rename 'dialog-params.service.tns.ts' to 'dialog-params.service.ts'. In my custom dialog component I am importing it as follows:
Do you see any drawback in this approach? |
Looks good to me! |
Hi @vakrilov, I am using the angular-seed-advanced (as always, big thanks to @NathanWalker). But yes, the approach I've described above is taken from https://github.com/TeamMaestro/angular-native-seed. They use it to import RouterModule/NativeScriptRouterModule. |
Several months later, I'm still struggling with having a shared {N} + web project work on dialogs. My approach has been to hide the opening code inside a duplicated service, but I'm having trouble trying to get things to work without duplicating component code too. For reference, my two services,
and
Since I have to inject for both sides parameters, I've been trying with a custom |
For future reference, I made it working with something similar to @codeback solution. What I did was basically:
I make sure to set a known ID to the dialog when opened with
On {N} I export the already present
Now when I invoke |
In an attempt to integrate modal handling seamlessly across web + {N} shared codebase,
ModalDialogParams
presents a problem in the way it is currently designed.Instead of:
Perhaps the params could be simply lifted off the
ModalDialogService
itself and do away withModalDialogParams
altogether to do something like this:Could look something like:
Simplifying setup by only needing to work with 1 service
ModalDialogService
instead of 2. It would also make tokenized setups for code sharing between web + {N} more achievable.If this makes sense, I can offer a PR for this soon.
/cc @vakrilov
The text was updated successfully, but these errors were encountered: