-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Rectify the scopes in the builder #19932
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Microsoft.Maui.Dispatching | ||
{ | ||
/// <summary> | ||
/// The default service provider does not support a single service type for | ||
/// BOTH a singleton (for the root app) AND a scoped (for the window scope). | ||
/// This is a small wrapper so we can do the same thing. The preferred way is | ||
/// actually a keyed service, but this is a new feature that existing factories | ||
/// may not yet support. Also, this wrapper is not public so it is hard to | ||
/// replace/substitute in tests. | ||
/// | ||
/// TODO: Remove in net9 and require a keyed service - or some other way. | ||
/// </summary> | ||
internal class ApplicationDispatcher | ||
{ | ||
public IDispatcher Dispatcher { get; } | ||
|
||
public ApplicationDispatcher(IDispatcher dispatcher) | ||
{ | ||
Dispatcher = dispatcher; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,13 +41,13 @@ public static IMauiContext MakeApplicationScope(this IMauiContext mauiContext, N | |
|
||
scopedContext.AddSpecific(platformApplication); | ||
|
||
scopedContext.InitializeScopedServices(); | ||
|
||
return scopedContext; | ||
} | ||
|
||
public static IMauiContext MakeWindowScope(this IMauiContext mauiContext, NativeWindow platformWindow, out IServiceScope scope) | ||
{ | ||
// Create the window-level scopes that will only be used for the lifetime of the window | ||
// TODO: We need to dispose of these services once the window closes | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI #8538 |
||
scope = mauiContext.Services.CreateScope(); | ||
|
||
#if ANDROID | ||
|
@@ -65,12 +65,27 @@ public static IMauiContext MakeWindowScope(this IMauiContext mauiContext, Native | |
scopedContext.AddSpecific(new NavigationRootManager(platformWindow)); | ||
#endif | ||
|
||
// Initialize any window-scoped services, for example the window dispatchers and animation tickers | ||
scopedContext.InitializeScopedServices(); | ||
PureWeen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
return scopedContext; | ||
} | ||
|
||
public static void InitializeAppServices(this MauiApp mauiApp) | ||
{ | ||
var initServices = mauiApp.Services.GetServices<IMauiInitializeService>(); | ||
if (initServices is null) | ||
return; | ||
|
||
foreach (var instance in initServices) | ||
instance.Initialize(mauiApp.Services); | ||
} | ||
|
||
public static void InitializeScopedServices(this IMauiContext scopedContext) | ||
{ | ||
var scopedServices = scopedContext.Services.GetServices<IMauiInitializeScopedService>(); | ||
if (scopedServices is null) | ||
return; | ||
|
||
foreach (var service in scopedServices) | ||
service.Initialize(scopedContext.Services); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has to be changed because the
IServiceProvider
in the app's ctor is actually the root povider and does not have a window dispatcher.The page uses a VM that uses the dispatcher. However, the services coming in here via the activation state is a window provider and does have the dispatcher.