Skip to content

Instantly share code, notes, and snippets.

View Jamiewarb's full-sized avatar
🦑

Jamie Warburton Jamiewarb

🦑
View GitHub Profile
@Jamiewarb
Jamiewarb / OuterBlockItemComponent.tsx
Created March 24, 2025 12:08
OuterBlockItemComponent.tsx
import type { ObjectItemProps, ObjectMember } from 'sanity';
import { Card, Stack } from '@sanity/ui';
import { ModularBlocksProvider } from '../context/ModularBlocksProvider';
import type {
ContentMember,
fieldToChildFieldsMap,
SanityObjectItemPropsChildren,
} from '../types';
import type { ComponentType } from 'react';
You are an expert in TypeScript, React, NextJS, HTML, CSS, and website development.
Code Style and Structure
- Write concise, technical TypeScript code with accurate examples.
- Use functional and declarative programming patterns; avoid classes.
- Prefer iteration and modularisation over code duplication.
- Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError).
- Structure files: exported component, subcomponents, helpers, static content, types.
- Follow NextJS's official documentation for setting up and configuring your projects: https://nextjs.org/docs
@Jamiewarb
Jamiewarb / eslint.config.js
Created January 14, 2025 17:10 — forked from ixahmedxi/eslint.config.js
Next.js 15 ESLint v9
/* eslint-disable import-x/no-named-as-default-member */
import comments from '@eslint-community/eslint-plugin-eslint-comments/configs'
import react from '@eslint-react/eslint-plugin'
import { FlatCompat } from '@eslint/eslintrc'
import js from '@eslint/js'
import prettierConfig from 'eslint-config-prettier'
import eslintPluginImportX from 'eslint-plugin-import-x'
import regexPlugin from 'eslint-plugin-regexp'
import security from 'eslint-plugin-security'
@Jamiewarb
Jamiewarb / components\CharacterCount.module.css
Created October 9, 2024 07:42
Sanity Character Count component for string and text
.textInput {
border: 1.5px solid #e1e8fa;
border-radius: 3px;
color: #6f7fb3;
font-size: 12px;
font-weight: bold;
padding: 1px 3px;
@media (prefers-color-scheme: dark) {
border-color: #575f73;
import type { SanityDocument } from 'sanity';
import type { ListItemBuilder } from 'sanity/desk';
import { AddIcon, WarningFilledIcon } from '@sanity/icons';
import { map } from 'rxjs/operators';
import { defineRegionStructure } from '~/utils/defineStructure';
import { regionalDocumentTypeList } from '~/utils/regionalDocumentListItem';
import { options } from '~/config/options';
import { TEMPLATES } from '~/constants/templates';
import { INTENT } from '~/constants/sanity/intent';
id: 34241
name: entelechy-api
environments:
development:
domain: dev-api.entelechy.academy
memory: 1024
cli-memory: 512
gateway-version: 2
runtime: docker
database: entelechy-dev01_laravel
@Jamiewarb
Jamiewarb / AbstractConstant.php
Created June 24, 2022 09:39
Abstract Constant for PHP
<?php
namespace App\Constants;
use ReflectionClass;
abstract class AbstractConstant
{
/**
* Get a constant value by name
@Jamiewarb
Jamiewarb / SkeletonLoader.vue
Last active June 10, 2022 14:50
Skeleton Loader - Vue Component
<template>
<component
:is="transition ? 'transition' : 'div'"
:name="transition"
@afterEnter="resetStyles"
@beforeEnter="onBeforeEnter"
@beforeLeave="onBeforeLeave"
@leaveCancelled="resetStyles"
>
<div v-show="isLoading || boilerplate" :class="classes" v-bind="attributes">
@Jamiewarb
Jamiewarb / doc-table.md
Created May 25, 2022 10:18 — forked from antfu/doc-table.md
Doc Table in Markdown

Example

Name

Description


@Jamiewarb
Jamiewarb / .env.github
Created May 17, 2022 14:51 — forked from hofmannsven/.env.github
Notes on working with GitHub Actions and Laravel Nova.
APP_ENV=ci
APP_KEY=
APP_DEBUG=true
APP_URL=https://localhost
LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=33306