forked from dotnetcore/BootstrapBlazor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalException.razor.cs
More file actions
82 lines (73 loc) · 2.25 KB
/
GlobalException.razor.cs
File metadata and controls
82 lines (73 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
namespace BootstrapBlazor.Server.Components.Samples;
/// <summary>
///
/// </summary>
public partial class GlobalException
{
[Inject]
[NotNull]
private NavigationManager? NavigationManager { get; set; }
[Inject]
[NotNull]
private SwalService? SwalService { get; set; }
[Inject, NotNull]
private DialogService? DialogService { get; set; }
private static void OnClick()
{
var a = 0;
_ = 1 / a;
}
private Task OnErrorHandleAsync(ILogger logger, Exception ex) => SwalService.Show(new SwalOption()
{
Category = SwalCategory.Error,
Title = "Oops...",
Content = ex.Message,
ShowFooter = true,
FooterTemplate = BootstrapDynamicComponent.CreateComponent<SwalFooter>().Render()
});
private Task OnShowDialog() => DialogService.Show(new DialogOption()
{
Title = Localizer["DialogTitle"],
Component = BootstrapDynamicComponent.CreateComponent<MockError>()
});
private Task OnGotoPage()
{
NavigationManager.NavigateTo("/error-page");
return Task.CompletedTask;
}
/// <summary>
/// 获得属性方法
/// </summary>
/// <returns></returns>
private static AttributeItem[] GetAttributes() =>
[
new()
{
Name = nameof(ErrorLogger.ChildContent),
Description = "子组件模板",
Type = nameof(RenderTemplate),
ValueList = " — ",
DefaultValue = " — "
},
new()
{
Name = nameof(ErrorLogger.ErrorContent),
Description = "异常显示模板",
Type = nameof(RenderTemplate),
ValueList = " — ",
DefaultValue = " — "
},
new()
{
Name = nameof(ErrorLogger.ShowToast),
Description = "是否显示错误消息弹窗",
Type = "bool",
ValueList = "true|false",
DefaultValue = "true"
}
];
}