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 / route.js
Created February 11, 2022 17:48
Simple A/B testing abstraction used on Sanity.io
export default {
name: 'route',
type: 'document',
title: 'Route',
fields: [
{
name: 'title',
type: 'string',
description: 'This title populates meta-tags on the webpage'
},
@kmelve
kmelve / _middleware.js
Created November 12, 2021 04:27
Proof of concepts simple page views with Next.js middleware
// posts/_middleware.js
import { NextResponse } from 'next/server'
const config = {
dataset: process.env.NEXT_PUBLIC_SANITY_DATASET || 'production',
projectId: process.env.NEXT_PUBLIC_SANITY_PROJECT_ID,
apiVersion: '2021-10-21',
}
const baseUrl = cdn => `https://${config.projectId}.api${cdn ? 'cdn' : ''}.sanity.io/v${config.apiVersion}`
const queryUrl = baseUrl() + `/data/query/${config.dataset}/`
@kmelve
kmelve / migration.js
Created November 10, 2021 22:15
Simple migration script that can be run with `sanity exec` in a Sanity Studio
// migration.js
/**
* Run:
* sanity exec --with-user-token migration.js
*
*/
import sanityClient from 'part:@sanity/base/client'
const client = sanityClient.withConfig({ apiVersion: '2021-11-10' })
// Patch 1000 at a time
const query = `*[_type == "stream"][0...999]{title, publishedDate, _id, _rev}`
@kmelve
kmelve / blurhash.js
Last active July 22, 2023 14:29
Retroactively add Blurhash strings to image assets in your Sanity Content Lake.
/**
* Retroactively add Blurhash strings to image assets in your Sanity Content Lake.
* 1. yarn add got sharp blurhash
* 2. run sanity exec blurhash --with-user-token
* 3. repeat (patches 100 assets in 1 transaction pr run)
*
* Some images might take a while to process.
*/
import client from 'part:@sanity/base/client'
import got from 'got'
@kmelve
kmelve / parseHTML.js
Created September 15, 2021 21:04
Deserializing Transcript HTML into Portable Text
const blockTools = require("@sanity/block-tools").default;
const jsdom = require("jsdom");
const { JSDOM } = jsdom;
const HTML_SPAN_TAGS = {
span: {object: 'text'},
}
const defaultSchema = require("./defaultSchema");
function tagName(el) {
@kmelve
kmelve / create-community-newsletter.js
Created December 8, 2020 23:33
Create Mailchimp campaign document action proof of concept
const fetch = require('got');
const client = require('../client');
const HTML = require('../lib/newsletter-template');
const MAILCHIMP_URL = 'https://us3.api.mailchimp.com/3.0/campaigns';
const API_TOKEN = process.env.MAILCHIMP_TOKEN;
const QUERY = `//groq
*[
@kmelve
kmelve / disable-js.html
Last active November 30, 2020 09:10
JavaScript-less no JS please. Inspired by https://heydonworks.com/
<html>
<head>
<title>No JS please</title>
</head>
<body>
<main>
<noscript>
Content!
<style>
@kmelve
kmelve / PTEditor.js
Last active November 25, 2020 13:12
Handle pasting of Github flavored markdown for the Portable Text array.
import React, { useState, forwardRef, Fragment } from 'react'
import { BlockEditor } from 'part:@sanity/form-builder'
import Switch from 'part:@sanity/components/toggles/switch'
import css from './PTeditor.module.css'
import { handlePaste } from './handlePaste'
function CustomEditor(props, ref){
const [customPaste, setCustomPaste] = useState(false)
function handleCustomPaste () {
@kmelve
kmelve / opt-out-for-gif.js
Created October 28, 2020 19:58
GIFs with Portable Text in Gatsby
import React from "react";
import Img from "gatsby-image";
import { getFluidGatsbyImage } from "gatsby-source-sanity";
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
import { atomDark } from "react-syntax-highlighter/dist/esm/styles/prism";
import iconLinksList from "./iconLinksList.js";
import YouTube from "../components/YouTube.js";
import getYouTubeID from "get-youtube-id";
const sanityConfig = { projectId: "rx426fbd", dataset: "production" };
@kmelve
kmelve / GitHubSelector.module.css
Created October 21, 2020 10:25
Simple Github repo selector for Sanity Studio
@import 'part:@sanity/base/theme/variables-style';
.item {
padding: var(--small-padding);
}
.searchableSelect {
composes: spacing from 'part:@sanity/components/buttons/default-style';
grid-column: span 2;