@hexagon6/svelte-solid-webid-check
TypeScript icon, indicating that this package has built-in type declarations

0.5.1 • Public • Published

@hexagon6/svelte-solid-webid-check

Purpose

A Svelte component which can do OpenID Connect Discovery.

It is useful to check where a solid webId is being authenticated with a OpenID Connect Identity Provider.

This works by reading the contents of /.well-known/openid-configuration as defined in https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig.

This component can be used to help application developers guide users to set their webId url, for a quick validation on input. It should make it easier to set up a webID-based login for solid applications with svelte / sveltekit.

Example usage

<script>
  import WebIdCheck from '@hexagon6/svelte-solid-webid-check'

  let validOIDCEndpoint = ''
</script>

<WebIdCheck
  placeholder={'https://timbl.inrupt.net/profile/card#me'}
  on:valid-oidc-endpoint={({ detail: { oidcEndpoint } }) => {
    validOIDCEndpoint = oidcEndpoint
  }}><span slot="confirm">show</span></WebIdCheck
>

Your solid webId oidc authentication endpoint is {validOIDCEndpoint}

For more examples check out this repo and check out histoire with npm run story:dev or a sveltekit example with npm run dev.

Readme

Keywords

none

Package Sidebar

Install

npm i @hexagon6/svelte-solid-webid-check

Weekly Downloads

5

Version

0.5.1

License

none

Unpacked Size

13.6 kB

Total Files

14

Last publish

Collaborators

  • hexagon6