fix: 删除无用的文件

This commit is contained in:
2024-01-20 20:25:05 +08:00
parent 25be0d2302
commit b16ae3209a
13 changed files with 0 additions and 184 deletions

View File

@@ -1,3 +0,0 @@
<div class="my-component">
This component is defined in the <strong>YaeBlog.Theme.FluentUI</strong> library.
</div>

View File

@@ -1,6 +0,0 @@
.my-component {
border: 2px dashed red;
padding: 1em;
margin: 1em 0;
background-image: url('background.png');
}

View File

@@ -1,36 +0,0 @@
using Microsoft.JSInterop;
namespace YaeBlog.Theme.FluentUI;
// This class provides an example of how JavaScript functionality can be wrapped
// in a .NET class for easy consumption. The associated JavaScript module is
// loaded on demand when first needed.
//
// This class can be registered as scoped DI service and then injected into Blazor
// components for use.
public class ExampleJsInterop : IAsyncDisposable
{
private readonly Lazy<Task<IJSObjectReference>> moduleTask;
public ExampleJsInterop(IJSRuntime jsRuntime)
{
moduleTask = new (() => jsRuntime.InvokeAsync<IJSObjectReference>(
"import", "./_content/YaeBlog.Theme.FluentUI/exampleJsInterop.js").AsTask());
}
public async ValueTask<string> Prompt(string message)
{
var module = await moduleTask.Value;
return await module.InvokeAsync<string>("showPrompt", message);
}
public async ValueTask DisposeAsync()
{
if (moduleTask.IsValueCreated)
{
var module = await moduleTask.Value;
await module.DisposeAsync();
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 378 B

View File

@@ -1,6 +0,0 @@
// This is a JavaScript module that is loaded on demand. It can export any number of
// functions, and may import other JavaScript modules if required.
export function showPrompt(message) {
return prompt(message, 'Type anything here');
}