Skip to content

Commit

Permalink
deploy: 2217fbc
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Dec 27, 2023
0 parents commit 7c85315
Show file tree
Hide file tree
Showing 157 changed files with 6,547 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
36 changes: 36 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blazor Web Authentication</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script takes the current url and converts the path and query
// string into just a query string, and then redirects the browser
// to the new url with only a query string and hash fragment

// If you're creating a Project Pages site and NOT using a custom domain,
// then set pathSegmentsToKeep to 1 (enterprise users may need to set it to > 1).
// This way the code will only replace the route part of the path, and not
// the real directory in which the app resides, for example:
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
// https://username.github.io/repo-name/?/one/two&a=b~and~c=d#qwe
// Otherwise, leave pathSegmentsToKeep as 0.
var pathSegmentsToKeep = 1;

var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);

</script>
</head>
<body>
</body>
</html>
151 changes: 151 additions & 0 deletions KristofferStrube.Blazor.WebAuthentication.WasmExample.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-km09rtigs1] {
position: relative;
display: flex;
flex-direction: column;
}

main[b-km09rtigs1] {
flex: 1;
}

.sidebar[b-km09rtigs1] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-km09rtigs1] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}

.top-row[b-km09rtigs1] a, .top-row[b-km09rtigs1] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}

.top-row[b-km09rtigs1] a:hover, .top-row[b-km09rtigs1] .btn-link:hover {
text-decoration: underline;
}

.top-row[b-km09rtigs1] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
.top-row:not(.auth)[b-km09rtigs1] {
display: none;
}

.top-row.auth[b-km09rtigs1] {
justify-content: space-between;
}

.top-row[b-km09rtigs1] a, .top-row[b-km09rtigs1] .btn-link {
margin-left: 0;
}
}

@media (min-width: 641px) {
.page[b-km09rtigs1] {
flex-direction: row;
}

.sidebar[b-km09rtigs1] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}

.top-row[b-km09rtigs1] {
position: sticky;
top: 0;
z-index: 1;
}

.top-row.auth[b-km09rtigs1] a:first-child {
flex: 1;
text-align: right;
width: 0;
}

.top-row[b-km09rtigs1], article[b-km09rtigs1] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-yoos4e8960] {
background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-yoos4e8960] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-yoos4e8960] {
font-size: 1.1rem;
}

.bi[b-yoos4e8960] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}

.nav-item[b-yoos4e8960] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-yoos4e8960] {
padding-top: 1rem;
}

.nav-item:last-of-type[b-yoos4e8960] {
padding-bottom: 1rem;
}

.nav-item[b-yoos4e8960] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}

.nav-item[b-yoos4e8960] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}

.nav-item[b-yoos4e8960] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}

@media (min-width: 641px) {
.navbar-toggler[b-yoos4e8960] {
display: none;
}

.collapse[b-yoos4e8960] {
/* Never collapse the sidebar for wide screens */
display: block;
}

.nav-scrollable[b-yoos4e8960] {
/* Allow sidebar to scroll for tall menus */
height: calc(100vh - 3.5rem);
overflow-y: auto;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function getAttribute(object, attribute) { return object[attribute]; }

export function isSupported() { return !(!window.PublicKeyCredential); }
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
export function getAttribute(object, attribute) { return object[attribute]; }
export function setAttribute(object, attribute, value) { object[attribute] = value; }

export function getJSReference(element) { return element.valueOf(); }

export function addEventListener(target, type, eventListener = null, options = null)
{
target.addEventListener(type, eventListener, options)
}

export function removeEventListener(target, type, eventListener = null, options)
{
target.removeEventListener(type, eventListener, options)
}

export function constructEventListener() {
return { };
}

export function registerEventHandlerAsync(objRef, jSInstance) {
jSInstance.handleEvent = (e) => objRef.invokeMethodAsync("HandleEventAsync", DotNet.createJSObjectReference(e))
}

export function registerInProcessEventHandlerAsync(objRef, jSInstance) {
jSInstance.handleEvent = (e) => objRef.invokeMethodAsync("HandleEventInProcessAsync", DotNet.createJSObjectReference(e))
}

export function constructEvent(type, eventInitDict = null) {
return new Event(type, eventInitDict);
}

export function constructCustomEvent(type, eventInitDict = null) {
return new CustomEvent(type, eventInitDict);
}

export function constructEventTarget() { return new EventTarget(); }

export function constructAbortController() { return new AbortController(); }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export function getAttribute(object, attribute) { return object[attribute]; }
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
export function getAttribute(object, attribute) { return object[attribute]; }

export function forEachWithNoArguments(jSReference, callbackObjRef) {
jSReference.forEach(() => callbackObjRef.invokeMethodAsync('InvokeCallback'))
}

export function forEachWithOneArgument(jSReference, callbackObjRef) {
jSReference.forEach((value) => callbackObjRef.invokeMethodAsync('InvokeCallback', DotNet.createJSObjectReference(value)))
}

export function forEachWithTwoArguments(jSReference, callbackObjRef) {
jSReference.forEach((value, key) => callbackObjRef.invokeMethodAsync('InvokeCallback', DotNet.createJSObjectReference(value, key)))
}

// https://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/
export function valuePropertiesType(obj, attribute) {
return ({}).toString.call(obj[attribute]).match(/\s([a-z|A-Z]+)/)[1].toLowerCase();
}

export function valuePropertiesValue(obj, attribute) {
return obj[attribute];
}

export function constructUint8Array(argument) {
return new Uint8Array(argument);
}

export function constructFloat32Array(argument) {
return new Float32Array(argument);
}

export function constructDomException(message, name) {
return new DOMException(message, name);
}

export function constructEvalError(message) {
return EvalError(message);
}

export function constructRangeError(message) {
return RangeError(message);
}

export function constructReferenceError(message) {
return ReferenceError(message);
}

export function constructTypeError(message) {
return TypeError(message);
}

export function constructURIError(message) {
return URIError(message);
}

export async function callAsyncGlobalMethod(extraErrorProperties, identifier, args) {
return await callAsyncInstanceMethod(extraErrorProperties, window, identifier, args);
}

export async function callAsyncInstanceMethod(extraErrorProperties, instance, identifier, args) {
try {
var [functionObject, functionInstance] = resolveFunction(instance, identifier);
return await functionInstance.apply(functionObject, args);
}
catch (error) {
throw new DOMException(formatError(error, extraErrorProperties), "AbortError");
}
}

export function callGlobalMethod(extraErrorProperties, identifier, args) {
return callInstanceMethod(extraErrorProperties, window, identifier, args);
}

export function callInstanceMethod(extraErrorProperties, instance, identifier, args) {
try {
var [functionObject, functionInstance] = resolveFunction(instance, identifier);
return functionInstance.apply(functionObject, args);
}
catch (error) {
throw new DOMException(formatError(error, extraErrorProperties), "AbortError");
}
}

function resolveFunction(instance, identifier)
{
let identifierParts = identifier.split(".");
var functionObject = instance;
var functionInstance = instance[identifierParts[0]];
for (let i = 1; i < identifierParts.length; i++) {
if (functionInstance == undefined) {
throw new ReferenceError(`Cannot read properties of undefined (reading '${identifierParts[i - 1]}').`);
}
functionObject = functionInstance;
functionInstance = functionInstance[identifierParts[i]];
}
if (!(functionInstance instanceof Function)) {
throw new TypeError(`'${identifierParts.slice(-1)}' is not a function.`);
}
return [functionObject, functionInstance];
}

function formatError(error, extraErrorProperties) {
var name = error.name;
if (error instanceof DOMException && name == "SyntaxError") {
name = "DOMExceptionSyntaxError";
};
let copy = {
name: error.name,
message: error.message,
stack: error.stack,
};
extraErrorProperties?.forEach(property => copy[property] = error[property]);
return JSON.stringify(copy);
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.DOM.wasm
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.DOM.wasm.br
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.DOM.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.WebIDL.wasm
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.WebIDL.wasm.br
Binary file not shown.
Binary file added _framework/KristofferStrube.Blazor.WebIDL.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.wasm
Binary file not shown.
Binary file added _framework/System.Collections.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.wasm.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Console.wasm
Binary file not shown.
Binary file added _framework/System.Console.wasm.br
Binary file not shown.
Binary file added _framework/System.Console.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Linq.wasm
Binary file not shown.
Binary file added _framework/System.Linq.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.wasm.gz
Binary file not shown.
Binary file added _framework/System.Memory.wasm
Binary file not shown.
Binary file added _framework/System.Memory.wasm.br
Binary file not shown.
Binary file added _framework/System.Memory.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm.gz
Binary file not shown.
Loading

0 comments on commit 7c85315

Please sign in to comment.