Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codewithshin/svelte-utterances

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codewithshin/svelte-utterances

Svelte Utterances Component

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

svelte-utterances

Demo

Svelte-Utterances Demo

Installation

npm i -D @codewithshin/svelte-utterances

After cloning this repo, you can see Svelte-Utterances in action in the demo-site branch.

git checkout demo-site

Props

NameDefault
reponameNone
issueTermpathname
labelcomments
themegithub-light

Themes

The default is github-light. Select one from:

  • github-light
  • github-dark
  • preferred-color-scheme
  • github-dark-orange
  • icy-dark
  • dark-blue
  • photon-dark
  • boxy-light
  • gruvbox-dark

Issue term

The default is pathname. Select one from:

  • url
  • title
  • og:title
  • [Enter issue number]
  • [Enter term]

How to use

<script>
import { Utterances } from '@codewithshin/svelte-utterances'
</script>

<Utterances 
  theme="github-dark"
  reponame="yourname/repo-name"
/>

Check more details Svelte-Utterances

Theme switch

You can toggle between two themes.

<script>
  import Utterances from "@codewithshin/svelte-utterances";
  import {Button} from 'flowbite-svelte'
  let theme = "github-light";
  const switchTheme = () => {
    theme = theme === "github-light" ? "github-dark" : "github-light";
  };
</script>

<Button on:click={switchTheme} name="Toggle theme" />

<Utterances reponame="shinokada/svelte-utterances" {theme} />

Dynamic theme switching

This is an example of how to reactively change the theme.

Install Flowbite-Svelte:

npm i -D flowbite-svelte
<script>
  import { Utterances } from "@codewithshin/svelte-utterances";
  import { Select } from "flowbite-svelte";
  let theme = "github-light";
  let selectprops = {
    id: "theme-select",
    name: "theme-select",
    label: "Select your theme",
  };
  let selectClass =
    "bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-48 p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500";
</script>

<div class="my-16 relative">
  <Select {...selectprops} bind:value={theme} {selectClass}>
    <option value="github-light">GitHub Light</option>
    <option value="github-dark">GitHub Dark</option>
    <option value="github-dark-orange">GitHub Dark Orange</option>
    <option value="icy-dark">Icy Dark</option>
    <option value="dark-blue">Dark Blue</option>
    <option value="photon-dark">Photon Dark</option>
    <option value="boxy-light">Boxy Light</option>
    <option value="gruvbox-dark">Gruvbox Dark</option>
  </Select>

  <Utterances reponame="shinokada/svelte-utterances" {theme} />
</div>

Check more details Utterances

Credits

References

Keywords

FAQs

Package last updated on 11 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc