Add footer and create typewriter event service
This commit is contained in:
@@ -0,0 +1,7 @@
|
|||||||
|
namespace BeauFindlay.Features.Typewriter;
|
||||||
|
|
||||||
|
public interface ITypewriterNotificationService
|
||||||
|
{
|
||||||
|
event EventHandler<TypingCompletedEventArgs>? TypingCompleted;
|
||||||
|
void NotifyTypingCompleted(TypingCompletedEventArgs args);
|
||||||
|
}
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
@using System.Timers
|
@using System.Timers
|
||||||
|
|
||||||
|
@inject ITypewriterNotificationService NotificationService
|
||||||
|
|
||||||
@if (DisplayCursor)
|
@if (DisplayCursor)
|
||||||
{
|
{
|
||||||
<span>@currentText<span class="blinking-cursor">|</span></span>
|
<span>@currentText<span class="blinking-cursor">|</span></span>
|
||||||
@@ -23,6 +25,9 @@ else
|
|||||||
[Parameter]
|
[Parameter]
|
||||||
public string Text { get; set; } = "";
|
public string Text { get; set; } = "";
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string? Name { get; set; }
|
||||||
|
|
||||||
public static event Action? OnAllTypingCompleted;
|
public static event Action? OnAllTypingCompleted;
|
||||||
|
|
||||||
protected override void OnInitialized()
|
protected override void OnInitialized()
|
||||||
@@ -76,6 +81,11 @@ else
|
|||||||
UpdateCursorVisibility();
|
UpdateCursorVisibility();
|
||||||
StartNextInstanceTyping();
|
StartNextInstanceTyping();
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(Name))
|
||||||
|
{
|
||||||
|
NotificationService.NotifyTypingCompleted(new TypingCompletedEventArgs(Name));
|
||||||
|
}
|
||||||
|
|
||||||
if (!instances.Any())
|
if (!instances.Any())
|
||||||
{
|
{
|
||||||
OnAllTypingCompleted?.Invoke();
|
OnAllTypingCompleted?.Invoke();
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace BeauFindlay.Features.Typewriter;
|
||||||
|
|
||||||
|
public static class TypewriterConstants
|
||||||
|
{
|
||||||
|
public static class Name
|
||||||
|
{
|
||||||
|
public const string IntroComplete = nameof(IntroComplete);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
namespace BeauFindlay.Features.Typewriter;
|
||||||
|
|
||||||
|
public class TypewriterNotificationService : ITypewriterNotificationService
|
||||||
|
{
|
||||||
|
public event EventHandler<TypingCompletedEventArgs>? TypingCompleted;
|
||||||
|
|
||||||
|
public void NotifyTypingCompleted(TypingCompletedEventArgs args) => TypingCompleted?.Invoke(this, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
public class TypingCompletedEventArgs(string typewriterInstanceId) : EventArgs
|
||||||
|
{
|
||||||
|
public string TypewriterInstanceId { get; set; } = typewriterInstanceId;
|
||||||
|
}
|
||||||
17
BeauFindlay/BeauFindlay/Layout/Footer.razor
Normal file
17
BeauFindlay/BeauFindlay/Layout/Footer.razor
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<footer class="mt-auto fade-in" aria-labelledby="footer-heading">
|
||||||
|
<div class="mx-auto max-w-7xl p-8 lg:p-8">
|
||||||
|
<div class="md:flex md:items-center md:justify-between">
|
||||||
|
<div class="flex space-x-6 md:order-2">
|
||||||
|
<a href="#" class="text-slate-200 hover:text-slate-500">
|
||||||
|
<span class="sr-only">GitHub</span>
|
||||||
|
<i class="fa-brands fa-github fa-lg"></i>
|
||||||
|
</a>
|
||||||
|
<a href="#" class="text-slate-200 hover:text-slate-500">
|
||||||
|
<span class="sr-only">YouTube</span>
|
||||||
|
<i class="fa-brands fa-linkedin fa-lg"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<p class="mt-8 text-xs leading-5 text-slate-200 md:order-1 md:mt-0">© @DateTime.UtcNow.Year Beau Findlay. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
@@ -1,3 +1,18 @@
|
|||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
@Body
|
@inject ITypewriterNotificationService TypingNotification
|
||||||
|
|
||||||
|
<div class="flex flex-col min-h-screen">
|
||||||
|
<div class="p-8">
|
||||||
|
@Body
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Footer></Footer>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<p class="text-xl mt-8">
|
<p class="text-xl mt-8">
|
||||||
<Typewriter Text="I'm a software engineer and I love building cool stuff."/>
|
<Typewriter Name="@TypewriterConstants.Name.IntroComplete" Text="I'm a software engineer and I love building cool stuff."/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 class="text-2xl mt-10 underline underline-offset-4">
|
<h2 class="text-2xl mt-10 underline underline-offset-4">
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using BeauFindlay;
|
using BeauFindlay;
|
||||||
|
using BeauFindlay.Features.Typewriter;
|
||||||
using Microsoft.AspNetCore.Components.Web;
|
using Microsoft.AspNetCore.Components.Web;
|
||||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||||
|
|
||||||
@@ -8,4 +9,6 @@ builder.RootComponents.Add<HeadOutlet>("head::after");
|
|||||||
|
|
||||||
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
||||||
|
|
||||||
|
builder.Services.AddSingleton<ITypewriterNotificationService, TypewriterNotificationService>();
|
||||||
|
|
||||||
await builder.Build().RunAsync();
|
await builder.Build().RunAsync();
|
||||||
|
|||||||
@@ -8,4 +8,4 @@
|
|||||||
@using Microsoft.JSInterop
|
@using Microsoft.JSInterop
|
||||||
@using BeauFindlay
|
@using BeauFindlay
|
||||||
@using BeauFindlay.Layout
|
@using BeauFindlay.Layout
|
||||||
@using BeauFindlay.Components.Typewriter
|
@using BeauFindlay.Features.Typewriter
|
||||||
@@ -10,3 +10,14 @@
|
|||||||
.blinking-cursor {
|
.blinking-cursor {
|
||||||
animation: blink 1s step-end infinite;
|
animation: blink 1s step-end infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fade-in {
|
||||||
|
animation: fadeInAnimation ease 6s;
|
||||||
|
animation-iteration-count: 1;
|
||||||
|
animation-fill-mode: forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeInAnimation {
|
||||||
|
from { opacity: 0; }
|
||||||
|
to { opacity: 1; }
|
||||||
|
}
|
||||||
120
BeauFindlay/BeauFindlay/wwwroot/css/app.min.css
vendored
120
BeauFindlay/BeauFindlay/wwwroot/css/app.min.css
vendored
@@ -544,10 +544,27 @@ video {
|
|||||||
--tw-backdrop-sepia: ;
|
--tw-backdrop-sepia: ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
white-space: nowrap;
|
||||||
|
border-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.static {
|
.static {
|
||||||
position: static;
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx-auto {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.mt-10 {
|
.mt-10 {
|
||||||
margin-top: 2.5rem;
|
margin-top: 2.5rem;
|
||||||
}
|
}
|
||||||
@@ -560,14 +577,30 @@ video {
|
|||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mt-auto {
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-full {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.min-h-screen {
|
.min-h-screen {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.max-w-7xl {
|
||||||
|
max-width: 80rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex-col {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.items-center {
|
.items-center {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
@@ -576,6 +609,12 @@ video {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
||||||
|
--tw-space-x-reverse: 0;
|
||||||
|
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
||||||
|
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
||||||
|
}
|
||||||
|
|
||||||
.bg-black {
|
.bg-black {
|
||||||
--tw-bg-opacity: 1;
|
--tw-bg-opacity: 1;
|
||||||
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
||||||
@@ -585,6 +624,11 @@ video {
|
|||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.py-10 {
|
||||||
|
padding-top: 2.5rem;
|
||||||
|
padding-bottom: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.font-mono {
|
.font-mono {
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
}
|
}
|
||||||
@@ -599,18 +643,23 @@ video {
|
|||||||
line-height: 2.25rem;
|
line-height: 2.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-lg {
|
|
||||||
font-size: 1.125rem;
|
|
||||||
line-height: 1.75rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-xl {
|
.text-xl {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
line-height: 1.75rem;
|
line-height: 1.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.font-semibold {
|
.text-xs {
|
||||||
font-weight: 600;
|
font-size: 0.75rem;
|
||||||
|
line-height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leading-5 {
|
||||||
|
line-height: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-slate-200 {
|
||||||
|
--tw-text-opacity: 1;
|
||||||
|
color: rgb(226 232 240 / var(--tw-text-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-slate-50 {
|
.text-slate-50 {
|
||||||
@@ -622,10 +671,6 @@ video {
|
|||||||
text-decoration-line: underline;
|
text-decoration-line: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.underline-offset-2 {
|
|
||||||
text-underline-offset: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.underline-offset-4 {
|
.underline-offset-4 {
|
||||||
text-underline-offset: 4px;
|
text-underline-offset: 4px;
|
||||||
}
|
}
|
||||||
@@ -648,3 +693,56 @@ video {
|
|||||||
.blinking-cursor {
|
.blinking-cursor {
|
||||||
animation: blink 1s step-end infinite;
|
animation: blink 1s step-end infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fade-in {
|
||||||
|
animation: fadeInAnimation ease 6s;
|
||||||
|
animation-iteration-count: 1;
|
||||||
|
animation-fill-mode: forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeInAnimation {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hover\:text-slate-500:hover {
|
||||||
|
--tw-text-opacity: 1;
|
||||||
|
color: rgb(100 116 139 / var(--tw-text-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.md\:order-1 {
|
||||||
|
order: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:order-2 {
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:mt-0 {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:flex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:items-center {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:justify-between {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
.lg\:p-8 {
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,22 +2,30 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport"
|
||||||
<title>Beau Findlay</title>
|
content="width=device-width, initial-scale=1.0"/>
|
||||||
<base href="/" />
|
<title>Beau
|
||||||
<link rel="stylesheet" href="css/app.min.css" />
|
Findlay</title>
|
||||||
<!-- If you add any scoped CSS files, uncomment the following to load them
|
<base href="/"/>
|
||||||
<link href="BeauFindlay.styles.css" rel="stylesheet" /> -->
|
<link rel="stylesheet"
|
||||||
|
href="css/app.min.css"/>
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
||||||
|
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
referrerpolicy="no-referrer"/>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="bg-black font-mono text-slate-50 min-h-screen subpixel-antialiased">
|
<body class="bg-black font-mono text-slate-50 min-h-screen subpixel-antialiased">
|
||||||
<div id="app" class="p-8">
|
<div id="app" class="h-full">
|
||||||
<div class="flex items-center justify-center text-xl">
|
<div class="flex items-center justify-center text-2xl">
|
||||||
<p>Loading beaufindlay.com<span class="blinking-cursor">|</span></p>
|
<p class="py-10">
|
||||||
|
Loading beaufindlay.com<span class="blinking-cursor">|</span>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="_framework/blazor.webassembly.js"></script>
|
<script src="_framework/blazor.webassembly.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user