npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@focus-reactive/sanity-plugin-inline-svg-input

v1.0.1

Published

Sanity plugin to upload and preview inline SVGs

Downloads

2,060

Readme

Sanity Plugin Inline SVG Input npm version Sanity Exchange

Sanity Studio v3 plugin to upload and preview inline SVGs.

preview

Installation

npm install @focus-reactive/sanity-plugin-inline-svg-input
yarn add @focus-reactive/sanity-plugin-inline-svg-input
pnpm add @focus-reactive/sanity-plugin-inline-svg-input

Usage

  1. Add it as a plugin in sanity.config.ts (or .js):
import { defineConfig } from 'sanity'
import { inlineSvgInput } from '@focus-reactive/sanity-plugin-inline-svg-input'

export default defineConfig({
  // ...
  plugins: [inlineSvgInput()],
})
  1. Use the inlineSvg type in your schema types:
// ...
{
  fields: [
    // ...
    {
      name: 'svgIcon',
      title: 'SVG Icon',
      type: 'inlineSvg',
    },
  ]
}

That's it! Now you can use this field to upload SVG images and see the preview in your Sanity Studio.

Preview

The sections below describe how to preview your SVG within arrays, objects or your own custom preview component.

Within arrays

Sanity offers a convenient way to preview arrays out of the box, but it only allows the use of the image type in media. To provide same functionality for SVGs, we provide a ready-to-use preview component that mimics the default array preview.

preview

To preview your SVG in arrays, use the InlineSvgPreviewItem component.
It accepts the following props:

  • icon [string] - inline SVG
  • title [string] - the title of the item
  • subtitle [string] - the subtitle of the item

iconsList in the example below is an array of objects with icon, title and subtitle fields. To use them in preview the same way as the default array preview, only what you need is to replace default preview component with InlineSvgPreviewItem.

import { defineType } from 'sanity'
import { InlineSvgPreviewItem } from '@focus-reactive/sanity-plugin-inline-svg-input'

const IconsListItem = defineType({
  type: 'object',
  name: 'iconsListItem',
  fields: [
    {
      name: 'icon',
      type: 'inlineSvg',
    },
    {
      name: 'title',
      type: 'string',
    },
    {
      name: 'subtitle',
      type: 'string',
    },
  ],
  preview: {
    select: {
      icon: 'icon',
      title: 'title',
      subtitle: 'subtitle',
    },
  },
  components: {
    preview: ({ icon, title, subtitle }) => {
      return <InlineSvgPreviewItem icon={icon} title={title} subtitle={subtitle} />
    },
  },
})

const IconsList = defineType({
  name: 'iconsList',
  type: 'array',
  of: [{ type: IconsListItem.name }],
})

Custom preview component

If you need more customization or want to build your own preview component using SVG icons, you can use the InlineSvgPreviewComponent.

InlineSvgPreviewComponent is the smallest building block of the plugin the only purpose of which is to sanitize and render SVG.
It accepts the following props:

  • value [string] - inline SVG
import { InlineSvgPreviewComponent } from '@focus-reactive/sanity-plugin-inline-svg-input'

export const PreviewComponent = ({ value }) => {
  return (
    // ...
    <InlineSvgPreviewComponent value={value} />
    // ...
  )
}

To customize the preview component, you can either:

  • Pass className or style props
  • Extend default styles with styled-components
import { InlineSvgPreviewComponent } from '@focus-reactive/sanity-plugin-inline-svg-input'
import styled from 'styled-components'

const StyledInlineSvg = styled(InlineSvgPreviewComponent)`
  // ...
`

Development, testing and publishing

This plugin uses @sanity/plugin-kit with default configuration for build & watch scripts.

npm run build - creates a ready to publish plugin in /dist folder.

npm run link-watch - creates a symlink from the plugin repo to the local sanity repo and watches for changes. After running this command, you will see the instructions on how to add this plugin to your Sanity Studio in the terminal.

npm publish - there is pre-publish script that prepares the plugin for publishing, you don't need to build it manually. Please run npm publish --dry-run to make sure that everything is ok before publishing.

See Testing a plugin in Sanity Studio for additional information.

Credits

This project was created at FocusReactive - the Sanity Partner Agency. We specialize in helping clients beat the competition and accelerate business growth. With a deep expertise in headless CMS, NextJS, and eCommerce, we deliver cutting-edge solutions that prioritize your business goals.

Our Expertise

  • Content-Centric Websites: We have a deep experience building extendable, SEO optimized content and marketing websites with advanced CMS integrations and analytics.
  • Headless eCommerce: Our next-generation, content-rich, and performant online eCommerce websites come with end-to-end integrations to power your digital business.
  • Headless CMS Consulting: We offer multi-channel CMS development, modeling, customization, and support to help you manage your content seamlessly across various platforms.
  • Web Performance: Our experts can audit, transform the architecture, and optimize your website to meet the 100 SCORE Core Web Vitals for exceptional web performance.

If you're looking for expertise in headless CMS, NextJS, or eCommerce, get in touch with FocusReactive today. Visit our website at focusreactive.com to learn more about how we can help you accelerate your business growth.

FocusReactive

This project is licensed under the MIT License. © 2023 FocusReactive.