Skip to content

Instantly share code, notes, and snippets.

View kmelve's full-sized avatar
💬
is typing

Knut Melvær kmelve

💬
is typing
View GitHub Profile
@kmelve
kmelve / migrateValues.js
Created August 29, 2020 07:16
Migrate categories in an array field on sanity.io
/* eslint-disable no-console */
import client from 'part:@sanity/base/client'
// Run this script with: `sanity exec --with-user-token migrations/migrateValues.js`
//
// This example shows how you may write a migration script that migrates a field value
// on a specific document type.
// This will migrate documents in batches of 100 and continue patching until no more documents are
// returned from the query.
//
@kmelve
kmelve / BlockContent.js
Created May 14, 2020 07:45
Mininal exampe of how to Twitter embeds with Santiy.io
// Example of how to output this in a React frontend
import React from 'react'
import BlockContent from '@sanity/block-content-to-react'
import { TwitterTweetEmbed } from 'react-twitter-embed'
const Tweet = ({url}) => {
const exp = /\/status\/(\d+)($|[?/])/
const [, id] = exp.exec(url) || []
if (id) {
return <TwitterTweetEmbed className="sliderBoxes" tweetId={id} options={{conversation: 'none', 'hide-thread': true}} />
@kmelve
kmelve / import.js
Last active May 10, 2020 09:22
How to import documents, and add them as a new item in an array of references with Sanity.io
/**
* import.js
*
* Install dependencies:
* yarn add p-queue nanoid
* or
* npm i p-queue nanoid && sanity install
*
* Run this script with:
* sanity exec --with-user-token import.js
@kmelve
kmelve / entries-by-date-this-year.js
Created May 9, 2020 18:23
Structure definition for listing entries by date of the current year for Sanity Studio
import S from '@sanity/desk-tool/structure-builder'
import eachDayOfInterval from 'date-fns/eachDayOfInterval'
import startOfYear from 'date-fns/startOfYear'
import startOfDay from 'date-fns/startOfDay'
import endOfDay from 'date-fns/endOfDay'
let now = new Date()
export default () => S.listItem()
.title('Entries by day this year')
.child(
@kmelve
kmelve / gallery.js
Created May 9, 2020 07:55
A simple gallery type for Sanity.io
@kmelve
kmelve / initialValueTemplates.js
Created April 30, 2020 21:11
Initial Value Templates Commynity Digest Example for Sanity.io
import T from '@sanity/base/initial-value-template-builder'
import client from 'part:@sanity/base/client'
const getNextDigestTitle = async () => {
const titles = await client.fetch(`*[
_type == "post" &&
title match "Community Digest*"
].title
`)
@kmelve
kmelve / gatsby-node.js
Created April 28, 2020 05:34
Pizza Taxonomies with Sanity and Gatsby
// web/gatsby-node.js
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
exports.createResolvers = ({ createResolvers }) => {
const resolvers = {
SanityTopping: {
@kmelve
kmelve / department.js
Created April 15, 2020 07:35
Example of listing documents in Sanity Studio‘s desk structure with real-time listener
export default {
name: 'department',
type: 'document',
title: 'Department',
fields: [
{
name: 'title',
type: 'string',
title: 'Title',
},
@kmelve
kmelve / schemas.js
Last active February 23, 2024 01:27
Super simple galleries on Sanity.io
/*
$ sanity init
# Follow steps, choose the clean template
# go to schemas/schema.js and paste this in
*/
// First, we must import the schema creator
import createSchema from 'part:@sanity/base/schema-creator'
@kmelve
kmelve / get-response.ts
Created February 16, 2020 12:56
Very crude TypeForm integration for Sanity.io on Zeit’s Now.
// api/get-response.ts
import SanityClient from "@sanity/client";
const projectId = "<yourProjectId>";
const dataset = "<yourDataset>";
const token = process.env.SANITY_EVENT_TOKEN; // Add to now secrets and .env
const client = SanityClient({
projectId,