Skip to content

Instantly share code, notes, and snippets.

View Jamiewarb's full-sized avatar
🦑

Jamie Warburton Jamiewarb

🦑
View GitHub Profile
@Jamiewarb
Jamiewarb / gist:c47a893cf929570aa38e5caeb3616dc8
Last active January 6, 2022 13:03
Example of useFetch serialisation stripping away functions from object during clientside hydration
<template>
<h1>{{ someObj.someFunction() }}</h1>
</template>
<script>
import { useFetch } from '@nuxtjs/composition-api';
import { doSomethingAsync } from './helpers';
export default {
setup() {
import { provideApolloClient } from '@vue/apollo-composable';
export default defineNuxtPlugin(({ app }) => {
onGlobalSetup(() => {
provideApolloClient(app.apolloProvider?.defaultClient);
});
});
@Jamiewarb
Jamiewarb / useState.ts
Last active December 17, 2021 12:31
useState in Nuxt 2
import { toRef, ssrRef, useContext } from '@nuxtjs/composition-api';
import type { Ref } from '@nuxtjs/composition-api';
/**
* Create a global reactive ref that will be hydrated but not shared across ssr requests
*
* @param key a unique key ensuring that data fetching can be properly de-duplicated across requests
* @param init a function that provides initial value for the state when it's not initiated
*/
export const useState = <T>(key: string, init?: () => T): Ref<T> => {
@Jamiewarb
Jamiewarb / hero.blade.php
Created May 7, 2021 15:48 — forked from jamesfacts/hero.blade.php
Hero section with buttons
<section class="relative pt-32 pb-16 mb-8 flex content-center items-center justify-center lg:shadow-sm" style="min-height: 55vh;">
<div class="absolute top-0 w-full h-full bg-center bg-cover"
style="background-image: url('{{ \Roots\asset('images/header-mock-reversed.jpg') }}');">
<span id="blackOverlay" class="w-full h-full absolute opacity-50 bg-white lg:bg-gradient-to-r lg:from-white lg:to-transparent"></span></div>
<div class="container relative mx-auto">
<div class="items-center flex flex-wrap">
<div class="w-full lg:w-8/12 xl:w-6/12 px-4 ml-auto mr-auto text-center lg:mr-12 lg:mt-12 lg:text-left">
<div class="px-4">
<h1 class="text-gray-800 font-semibold text-3xl md:text-5xl font-oxygen leading-none mb-4 lg:text-right">
{{ "Hero Hedline Text" }}
@Jamiewarb
Jamiewarb / figure-component.blade.php
Created May 7, 2021 15:48 — forked from jamesfacts/figure-component.blade.php
Figure with variable aspect ratio
<figure>
<a href="{{ $url }}">
<div class="aspect-ratio-wrap relative" style="padding-bottom: {{ $aspect_ratio ?? '0%' }};">
<img src="{{ $img_url }}" @if($alt) alt="{!! $alt !!}" @endif
class="block absolute top-0 left-0 object-cover w-full h-full">
</div>
</a>
</figure>
@Jamiewarb
Jamiewarb / header.blade.php
Created May 7, 2021 15:48 — forked from jamesfacts/header.blade.php
header view template to match Tailwind walker
<header class="banner w-full bg-white border-grey-100 shadow-md">
<div class="menu-wrap flex items-center flex-wrap justify-between p-3 w-full z-20 max-w-screen-xl
sm:px-6 sm:py-5 lg:relative lg:mx-auto">
<div class="flex items-center flex-no-shrink max-w-2/3">
<a class="brand lg:block lg:pt-2" href="{{ home_url('/') }}">
<img src="{{\Roots\asset('images/brand.png')}}" alt="Brand"
class="max-w-200">
</a>
</div>
@Jamiewarb
Jamiewarb / menus.php
Created May 7, 2021 15:48 — forked from jamesfacts/menus.php
This adds tailwind classes to the output of navwalkers
<?php
namespace App;
/**
* Custom fork of WP's native Walker functionality revised so we can output
* classes for tailwind
*
*/
/**
@Jamiewarb
Jamiewarb / README.md
Created November 11, 2020 12:27 — forked from addyosmani/README.md
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version

@Jamiewarb
Jamiewarb / cloudflare-purge-cache-service-worker.js
Created July 1, 2020 15:32 — forked from vdbelt/cloudflare-purge-cache-service-worker.js
A CloudFlare service worker that proxies purge cache requests. Example: https://example.com/__purge_cache?zone=XX
addEventListener('fetch', event => {
event.respondWith(purgeCache(event.request))
})
async function purgeCache(request) {
const url = new URL(request.url)
@Jamiewarb
Jamiewarb / Cluster.vue
Created February 18, 2020 10:54
Cluster primitive layout
<template>
<component :is="tag" :class="classes">
<slot />
</component>
</template>
<script>
const availableAlign = ['top', 'middle', 'bottom', 'baseline', 'stretch'];
const availableJustify = ['center', 'left', 'right', 'between', 'around', 'evenly'];
const availableSizes = ['small', 'base', 'large'];