You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using DownKyi.Core.Logging ;
using DownKyi.Core.Settings ;
using DownKyi.Core.Settings.Models ;
using DownKyi.Events ;
using DownKyi.ViewModels ;
using Prism.Events ;
namespace DownKyi.Utils
{
public static class NavigateToView
{
public static string Tag = "NavigateToView" ;
/// <summary>
/// 导航到用户空间,
/// 如果传入的mid与本地登录的mid一致,
/// 则进入我的用户空间。
/// </summary>
/// <param name="mid"></param>
public static void NavigateToViewUserSpace ( IEventAggregator eventAggregator , string parentViewName , long mid )
{
UserInfoSettings userInfo = SettingsManager . GetInstance ( ) . GetUserInfo ( ) ;
if ( userInfo ! = null & & userInfo . Mid = = mid )
{
NavigationView ( eventAggregator , ViewMySpaceViewModel . Tag , parentViewName , mid ) ;
}
else
{
NavigationView ( eventAggregator , ViewUserSpaceViewModel . Tag , parentViewName , mid ) ;
}
}
/// <summary>
/// 导航到其他页面
/// </summary>
/// <param name="viewName"></param>
/// <param name="param"></param>
public static void NavigationView ( IEventAggregator eventAggregator , string viewName , string parentViewName , object param )
{
LogManager . Debug ( Tag , $"NavigationView: {viewName}, Parameter: {param}" ) ;
NavigationParam parameter = new NavigationParam
{
ViewName = viewName ,
ParentViewName = parentViewName ,
Parameter = param
} ;
eventAggregator . GetEvent < NavigationEvent > ( ) . Publish ( parameter ) ;
}
}
}