text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
export * from './useDocumentsFunctionSWR';
export * from './useInitialDocument';
export * from './usePaginatedDocumentsSWR';
| interiorly | apps/app/lib/hooks/index.ts | TypeScript | 32e8fab103abe41fb737b593d8affee89d6765ee1302452b4ee1dbd9c7acba3a | 0 | 27 |
'use client';
import useSWR, { type SWRConfiguration } from 'swr';
/**
* Custom `useSWR` hook that takes server actions from `/lib/actions`
*
* @example
* const { data, error, mutate } = useDocumentsFunctionSWR([
* getDocumentUsers, { documentId }
* ],{ refreshInterval: 0 });
*
* @param documentActionAndArg... | interiorly | apps/app/lib/hooks/useDocumentsFunctionSWR.ts | TypeScript | d033e90f82c20a948385d01c3f6d8021cfaafa205ca0507f6adc9d611145e484 | 0 | 256 |
import type { Document } from '@interiorly/collaboration/types';
import { type ReactNode, createContext, useContext } from 'react';
const DocumentContext = createContext<Document | undefined>(undefined);
type Props = {
initialDocument: Document;
children: ReactNode;
};
export function InitialDocumentProvider({ i... | interiorly | apps/app/lib/hooks/useInitialDocument.tsx | TypeScript | f88520153d4ff3dec28f39663cd239a81d985a692c0ba64337e8c47766041ad4 | 0 | 133 |
import {
type GetDocumentsProps,
type GetDocumentsResponse,
getDocuments,
getNextDocuments,
} from '@/lib/actions';
import { useState } from 'react';
import type { SWRConfiguration } from 'swr';
import useSWRInfinite, { type SWRInfiniteKeyLoader } from 'swr/infinite';
/**
* Takes a documentsOptions object and... | interiorly | apps/app/lib/hooks/usePaginatedDocumentsSWR.ts | TypeScript | db1714e39d93bad56139d71f4116151a83b8dd09b27a0c2a906f88d3a0bd6ccb | 0 | 584 |
// import type { Document } from '@prisma/client';
// import { createStore } from 'zustand';
// export type WorkspaceDocumentState = {
// workspaceId: string | null;
// documents: Document[];
// };
// export type WorkspaceDocumentAction = {
// setWorkspaceId: (workspaceId: string | null) => void;
// setDocume... | interiorly | apps/app/lib/stores/document-store.ts | TypeScript | 98421fe729424d30eff29da403826b545dccbd9510d5f31943df9db24b096a7e | 0 | 354 |
import type {
Document,
DocumentRoomMetadata,
} from '@interiorly/collaboration/types';
import type { RoomInfo } from '@liveblocks/node';
import { roomAccessesToDocumentAccess } from './convertAccessType';
/**
* Convert Liveblocks rooms into our custom document format
*
* @param rooms - Liveblocks rooms
*/
exp... | interiorly | apps/app/lib/utils/buildDocuments.ts | TypeScript | a291d0a906291cf06288c6210391111fa4232ccebff1eec709ee483243940a5a | 0 | 460 |
import { roomAccessesToDocumentAccess } from '@/lib/utils/convertAccessType';
import { currentUser } from '@interiorly/auth/server';
import type { DocumentUser } from '@interiorly/collaboration/types';
import type { RoomInfo } from '@liveblocks/node';
import { colors } from '../data/colors';
/**
* Convert a Liveblock... | interiorly | apps/app/lib/utils/buildDocumentUsers.ts | TypeScript | b9fb205d34af0e23d5594d5f17e6703cef0283ab3f80f4a6aeebdf0a091e8b4b | 0 | 254 |
import { DocumentAccess } from '@interiorly/collaboration/types';
import type { RoomPermission } from '@liveblocks/node';
/**
* Convert from Liveblocks room accesses to a custom document access format
* If the user was set on userAccesses, give FULL permissions to edit invited users
* @param roomAccesses - The room... | interiorly | apps/app/lib/utils/convertAccessType.ts | TypeScript | f4d748736345e5e101a6094a60315140ce9c9d2a1ce09be09d87ab407fa8c3ce | 0 | 285 |
import {
type Document,
DocumentAccess,
type User,
} from '@interiorly/collaboration/types';
interface Props {
documentAccesses: Document['accesses'];
groupIds: User['groupIds'];
userId: User['id'];
}
const accessLevelHierarchy = [
DocumentAccess.NONE,
DocumentAccess.READONLY,
DocumentAccess.EDIT,
... | interiorly | apps/app/lib/utils/getDocumentAccess.ts | TypeScript | 716137c6d0f9073bb3689ebd7d1f4d2e10be22fd6312d20b345028aaa06cd4fc | 0 | 233 |
export const DRAFTS_PREFIX = "__drafts-group__";
/**
* Drafts are stored as a group that uses the user's id
* @param userId
*/
export function getDraftsGroupName(userId: string) {
return `${DRAFTS_PREFIX}${userId}`;
}
| interiorly | apps/app/lib/utils/getDraftsGroupName.ts | TypeScript | c932116526b688470bef41fe24cd30dd822c41135dd28f8f3a7e833a5561b6e6 | 0 | 55 |
export * from './buildDocuments';
export * from './buildDocumentUsers';
export * from './convertAccessType';
export * from './getDocumentAccess';
export * from './getDraftsGroupName';
export * from './isUserDocumentOwner';
export * from './userAllowedInRooms';
| interiorly | apps/app/lib/utils/index.ts | TypeScript | 80ca7514a7829de4d66b8e08440de77f2be4f1040fa90f1e3caa92a02c9668c1 | 0 | 63 |
import type { DocumentUser } from '@interiorly/collaboration/types';
import type { RoomInfo } from '@liveblocks/node';
interface IsUserDocumentOwnerProps {
room: RoomInfo;
userId: DocumentUser['id'];
}
/**
* Returns true if owner is set on room, and owner is equal to userId
*
* @param room - The room to test
... | interiorly | apps/app/lib/utils/isUserDocumentOwner.ts | TypeScript | 90dc2758f2245f899564b0a1d9c9991e5d359a3cfe36b317bff92f7b3094cef5 | 0 | 157 |
import type { RoomInfo } from '@liveblocks/node';
/**
* Learn more about ID token permissions
* https://liveblocks.io/docs/authentication/id-token#permission-types
*/
interface UserAccessProps {
accessAllowed: 'write' | 'read';
checkAccessLevel?: 'any' | 'user' | 'group' | 'default';
groupIds: string[];
us... | interiorly | apps/app/lib/utils/userAllowedInRooms.ts | TypeScript | 1b327b3b3cc8593f857f6022288248226641a0a3d4f4c8d15204dbdd6e45a672 | 0 | 879 |
---
title: 'Development'
description: 'Learn how to preview changes locally'
---
<Info>
**Prerequisite** You should have installed Node.js (version 18.10.0 or
higher).
</Info>
Step 1. Install Mintlify on your OS:
<CodeGroup>
```bash npm
npm i -g mintlify
```
```bash yarn
yarn global add mintlify
```
</CodeGro... | interiorly | apps/docs/development.mdx | MDX | 23f8d27e428bcc67e40ebad0c3cd529a43d43e6bdb984b21e1330eca5491d6cb | 0 | 571 |
---
title: Introduction
description: 'Welcome to the home of your new documentation'
---
<img
className="block dark:hidden"
src="/images/hero-light.svg"
alt="Hero Light"
/>
<img
className="hidden dark:block"
src="/images/hero-dark.svg"
alt="Hero Dark"
/>
## Setting up
The first step to world-class docume... | interiorly | apps/docs/introduction.mdx | MDX | ab934f3577af99f240111ba8661a9ecd0024b16283a4401837c5ecccb26bdde1 | 0 | 413 |
{
"$schema": "https://mintlify.com/schema.json",
"name": "Starter Kit",
"logo": {
"dark": "/logo/dark.svg",
"light": "/logo/light.svg"
},
"favicon": "/favicon.svg",
"colors": {
"primary": "#0D9373",
"light": "#07C983",
"dark": "#0D9373",
"anchors": {
"from": "#0D9373",
"t... | interiorly | apps/docs/mint.json | JSON | d395b0f6d5e73581a7b15ca81cf629f31893a0e2eed5fa71d482548e81d0a602 | 0 | 552 |
{
"name": "docs",
"private": true,
"scripts": {
"dev": "mintlify dev --port 3004",
"lint": "mintlify broken-links"
},
"devDependencies": {
"typescript": "^5.7.2"
}
}
| interiorly | apps/docs/package.json | JSON | 713819883ed9ffc53c5efdcfaed4a1e9adb1d887d82dd59468f32a72377b6d8b | 0 | 62 |
---
title: 'Quickstart'
description: 'Start building awesome documentation in under 5 minutes'
---
## Setup your development
Learn how to update your docs locally and and deploy them to the public.
### Edit and preview
<AccordionGroup>
<Accordion icon="github" title="Clone your docs locally">
During the onboa... | interiorly | apps/docs/quickstart.mdx | MDX | 67868b6cb81b2e1c2003185a374e13d1712ff8a806f9612b000ba9aef380209d | 0 | 698 |
---
title: 'Introduction'
description: 'Example section for showcasing API endpoints'
---
<Note>
If you're not looking to build API reference documentation, you can delete
this section by removing the api-reference folder.
</Note>
## Welcome
There are two ways to build API documentation: [OpenAPI](https://mintli... | interiorly | apps/docs/api-reference/introduction.mdx | MDX | 33aa4163faa3d9b5c4bec42260d07892ab5179f7b5fd2c72c426752d5c010b05 | 0 | 216 |
{
"openapi": "3.0.1",
"info": {
"title": "OpenAPI Plant Store",
"description": "A sample API that uses a plant store as an example to demonstrate features in the OpenAPI specification",
"license": {
"name": "MIT"
},
"version": "1.0.0"
},
"servers": [
{
"url": "http://sandbox.... | interiorly | apps/docs/api-reference/openapi.json | JSON | b591d4ed7bc00a31fc7d09c7176ebfdf274d8f827e02e6d1cba362b2b469d919 | 0 | 896 |
"properties": {
"id": {
"description": "Identification number of the plant",
"type": "integer",
"format": "int64"
}
}
}
]
},
"Error": {
"required": [
"error",
"message"
... | interiorly | apps/docs/api-reference/openapi.json | JSON | 0aa6804ae385930884ca4b56d3063cbbc9768350bffe48e8e3aac22e2f7dc22e | 1 | 143 |
---
title: 'Create Plant'
openapi: 'POST /plants'
---
| interiorly | apps/docs/api-reference/endpoint/create.mdx | MDX | 303b34d93df1f19da758b2b9c0cb6b68cdca7a9e10d37394c763ba301480be65 | 0 | 19 |
---
title: 'Delete Plant'
openapi: 'DELETE /plants/{id}'
---
| interiorly | apps/docs/api-reference/endpoint/delete.mdx | MDX | 3aaf924e9060174f0b45d8ae601612007f4994f455008edb0563012f6b589c70 | 0 | 23 |
---
title: 'Get Plants'
openapi: 'GET /plants'
---
| interiorly | apps/docs/api-reference/endpoint/get.mdx | MDX | 0c4db2e96635627e5b206fe01b7d1d17bf7c0ed50f2846eeae383985c54954f9 | 0 | 19 |
---
title: 'Code Blocks'
description: 'Display inline code and code blocks'
icon: 'code'
---
## Basic
### Inline Code
To denote a `word` or `phrase` as code, enclose it in backticks (`).
```
To denote a `word` or `phrase` as code, enclose it in backticks (`).
```
### Code Block
Use [fenced code blocks](https://ww... | interiorly | apps/docs/essentials/code.mdx | MDX | 12b565b5d95836f1a235c2110fb3920828747276d8b8ffa63521dc95affcbeb8 | 0 | 244 |
---
title: 'Images and Embeds'
description: 'Add image, video, and other HTML elements'
icon: 'image'
---
<img
style={{ borderRadius: '0.5rem' }}
src="https://mintlify-assets.b-cdn.net/bigbend.jpg"
/>
## Image
### Using Markdown
The [markdown syntax](https://www.markdownguide.org/basic-syntax/#images) lets you ... | interiorly | apps/docs/essentials/images.mdx | MDX | 48b23f616aca580405d0aa50f8ef026451e5af1fc3cae7cc61a26645127dfe98 | 0 | 451 |
---
title: 'Markdown Syntax'
description: 'Text, title, and styling in standard markdown'
icon: 'text-size'
---
## Titles
Best used for section headers.
```md
## Titles
```
### Subtitles
Best use to subsection headers.
```md
### Subtitles
```
<Tip>
Each **title** and **subtitle** creates an anchor and also show... | interiorly | apps/docs/essentials/markdown.mdx | MDX | 62c9b538dad163ca45d4d1c6ce48a6f9ed33bdac7a6938b92e12d4e878fa0c67 | 0 | 771 |
---
title: 'Navigation'
description: 'The navigation field in mint.json defines the pages that go in the navigation menu'
icon: 'map'
---
The navigation menu is the list of links on every website.
You will likely update `mint.json` every time you add a new page. Pages do not show up automatically.
## Navigation synt... | interiorly | apps/docs/essentials/navigation.mdx | MDX | 15a2fcdd296ae1022e2a8022986854404cb36941f2bfc917dba2e5a145d98b19 | 0 | 416 |
---
title: Reusable Snippets
description: Reusable, custom snippets to keep content in sync
icon: 'recycle'
---
import SnippetIntro from '/snippets/snippet-intro.mdx';
<SnippetIntro />
## Creating a custom snippet
**Pre-condition**: You must create your snippet file in the `snippets` directory.
<Note>
Any page i... | interiorly | apps/docs/essentials/reusable-snippets.mdx | MDX | df59ba6a086515a93472d54c0c1312900f9b5b6f1d9c42335dfe822c8aec9f14 | 0 | 646 |
---
title: 'Global Settings'
description: 'Mintlify gives you complete control over the look and feel of your documentation using the mint.json file'
icon: 'gear'
---
Every Mintlify site needs a `mint.json` file with the core configuration settings. Learn more about the [properties](#properties) below.
## Properties
... | interiorly | apps/docs/essentials/settings.mdx | MDX | b3aa46d2b5dcd01e15b9de2d46684bb8cea76f7ff7307eaf487c16541a49e3d9 | 0 | 896 |
to the repository to load GitHub information from.
</ResponseField>
<ResponseField name="name" type="string">
Text inside the button. Only required if `type` is a `link`.
</ResponseField>
</Expandable>
</ResponseField>
<ResponseField name="versions" type="string[]">
Array of version names. Only us... | interiorly | apps/docs/essentials/settings.mdx | MDX | fd43f797bd8db9f910378c5d280b49d14408fe4d6b4ac8af44254505afd8bc28 | 1 | 896 |
method" type='"bearer" | "basic" | "key"'>
The authentication strategy used for all API endpoints.
</ResponseField>
<ResponseField name="name" type="string">
The name of the authentication parameter used in the API playground.
If method is `basic`, the format should be `[usern... | interiorly | apps/docs/essentials/settings.mdx | MDX | 610bd612d446248be365e02f70224aafbc9339df0afc52a50d10944e202abf42 | 2 | 896 |
the user's operating system.
</ResponseField>
<ResponseField name="isHidden" type="boolean" default="false">
Set to true to hide the dark/light mode toggle. You can combine `isHidden` with `default` to force your docs to only use light or dark mode. For example:
<CodeGroup>
```json Only... | interiorly | apps/docs/essentials/settings.mdx | MDX | bb5ca7aef6439b51c572cd33e034565db18939940b0ba61a82836453e6e141e3 | 3 | 201 |
One of the core principles of software development is DRY (Don't Repeat
Yourself). This is a principle that apply to documentation as
well. If you find yourself repeating the same content in multiple places, you
should consider creating a custom snippet to keep your content in sync.
| interiorly | apps/docs/snippets/snippet-intro.mdx | MDX | 9ff0c27bce29b874872c67fb11f58d6beaf6a7f6a1e267a7fbe6a8d06cce5b2a | 0 | 55 |
.react-email | interiorly | apps/email/.gitignore | Git Ignore | ca225e502b54c420679eb172c7a32e086a49af5b9d28e17483cc7eb52cc25304 | 0 | 4 |
{
"name": "email",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "email build",
"dev": "email dev --port 3003",
"export": "email export",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
... | interiorly | apps/email/package.json | JSON | ad90ef352ee32a23b95765b207f8a960a24d8fcdb36382941579de979fe5cfff | 0 | 208 |
{
"extends": "@interiorly/typescript-config/nextjs.json",
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
| interiorly | apps/email/tsconfig.json | JSON | 3784f076c29d6608b63e1046f9108adf9d8552b1e6b5b7598e99b8ccaeebb6df | 0 | 52 |
import { ContactTemplate } from '@interiorly/email/templates/contact';
const ExampleContactEmail = () => (
<ContactTemplate
name="Jane Smith"
email="jane.smith@example.com"
message="I'm interested in your services."
/>
);
export default ExampleContactEmail;
| interiorly | apps/email/emails/contact.tsx | TypeScript | c51c5fbaea4ad0eadf12396fc4ea2ce870cadd3663e057eb52fa3cc20af90067 | 0 | 63 |
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
};
export default nextConfig;
| interiorly | apps/storybook/next.config.ts | TypeScript | 313bbd12b7c02687533a9834c38c1052cd8037ad0b47b26713cbaa19e6fbad74 | 0 | 26 |
{
"name": "storybook",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarat... | interiorly | apps/storybook/package.json | JSON | f869013f2c84b5181b7a11f260deb3878d751f09c01c700ba76591c3d0e638da | 0 | 415 |
{
"extends": "@interiorly/typescript-config/nextjs.json",
"compilerOptions": {
"baseUrl": "."
},
"include": [
"next-env.d.ts",
"next.config.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
]
}
| interiorly | apps/storybook/tsconfig.json | JSON | 3263df150ef20c45a1cf348ded57467c7588bc152dec9bec8df39b827d0fdcc9 | 0 | 88 |
import { dirname, join } from 'node:path';
import type { StorybookConfig } from '@storybook/nextjs';
/**
* This function is used to resolve the absolute path of a package.
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
*/
const getAbsolutePath = (value: string) =>
dirname(require.re... | interiorly | apps/storybook/.storybook/main.ts | TypeScript | e72251207f36f06487dad42e202d45e8a30bcb47f9bb8179f947a52835075122 | 0 | 248 |
<!-- https://github.com/vercel/geist-font/issues/72 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap" rel="stylesheet... | interiorly | apps/storybook/.storybook/preview-head.html | HTML | 7aae9a90b1f98fe0dd5484f7309bb7ee18b221f7c4375d40f2b5037860067aca | 0 | 189 |
import { Toaster } from '@interiorly/design-system/components/ui/sonner';
import { TooltipProvider } from '@interiorly/design-system/components/ui/tooltip';
import { ThemeProvider } from '@interiorly/design-system/providers/theme';
import { withThemeByClassName } from '@storybook/addon-themes';
import type { Preview } ... | interiorly | apps/storybook/.storybook/preview.tsx | TypeScript | 192a456414d6b488f723c6a8df80c9c4df568e2371195dc88e1ba3b752c06d94 | 0 | 274 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from '@interiorly/design-system/components/ui/accordion';
/**
* A vertically stacked set of interactive headings that each reveal a section
* of content.
*/
const meta = {
titl... | interiorly | apps/storybook/stories/accordion.stories.tsx | TypeScript | ecd6968701879fa60f8a1baafd0e942fe8c8c220bdc252812fdfd1debe542858 | 0 | 349 |
import type { Meta, StoryObj } from '@storybook/react';
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from '@interiorly/design-system/components/ui/alert-dialog';
/... | interiorly | apps/storybook/stories/alert-dialog.stories.tsx | TypeScript | bd7786599c16feb8e42fbd8e7fa39b1e0f12e6012913520f54d7f85e82a621dd | 0 | 268 |
import type { Meta, StoryObj } from '@storybook/react';
import { AlertCircle } from 'lucide-react';
import {
Alert,
AlertDescription,
AlertTitle,
} from '@interiorly/design-system/components/ui/alert';
/**
* Displays a callout for user attention.
*/
const meta = {
title: 'ui/Alert',
component: Alert,
ta... | interiorly | apps/storybook/stories/alert.stories.tsx | TypeScript | 48001505f6f1a19221bf86dd4df5b6e27601c4f3af5e4d0e9c715d90a84e0b64 | 0 | 325 |
import type { Meta, StoryObj } from '@storybook/react';
import Image from 'next/image';
import { AspectRatio } from '@interiorly/design-system/components/ui/aspect-ratio';
/**
* Displays content within a desired ratio.
*/
const meta: Meta<typeof AspectRatio> = {
title: 'ui/AspectRatio',
component: AspectRatio,
... | interiorly | apps/storybook/stories/aspect-ratio.stories.tsx | TypeScript | ef87ef9d620349a70578be768e0942b02111b636151de83a8c978dafc10dcf27 | 0 | 397 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Avatar,
AvatarFallback,
AvatarImage,
} from '@interiorly/design-system/components/ui/avatar';
/**
* An image element with a fallback for representing the user.
*/
const meta = {
title: 'ui/Avatar',
component: Avatar,
tags: ['autodocs'],
... | interiorly | apps/storybook/stories/avatar.stories.tsx | TypeScript | b94f8f7282b045c309e29cf40d24b54f770c3a75df3df2863240a93cf1eeb615 | 0 | 190 |
import type { Meta, StoryObj } from '@storybook/react';
import { Badge } from '@interiorly/design-system/components/ui/badge';
/**
* Displays a badge or a component that looks like a badge.
*/
const meta = {
title: 'ui/Badge',
component: Badge,
tags: ['autodocs'],
argTypes: {
children: {
control: ... | interiorly | apps/storybook/stories/badge.stories.tsx | TypeScript | c0cf0198b4b211016cd47de7c68157ea9a255c6f76d05a622628ef3fc2772f82 | 0 | 302 |
import type { Meta, StoryObj } from '@storybook/react';
import { ArrowRightSquare } from 'lucide-react';
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from '@interiorly/design-system/components/ui/breadcrumb';
/**
* Displays the path to the cu... | interiorly | apps/storybook/stories/breadcrumb.stories.tsx | TypeScript | b5b0a474b2ce99ce4b0658cd31b0bfee26ca41c668a84e5190106cd65a46f9c9 | 0 | 373 |
import type { Meta, StoryObj } from '@storybook/react';
import { Loader2, Mail } from 'lucide-react';
import { Button } from '@interiorly/design-system/components/ui/button';
/**
* Displays a button or a component that looks like a button.
*/
const meta = {
title: 'ui/Button',
component: Button,
tags: ['autod... | interiorly | apps/storybook/stories/button.stories.tsx | TypeScript | 402314a6774b8f46dc978906be14681cbae84f163c9dfa10ca0de93ee8d9b4bc | 0 | 816 |
import { action } from '@storybook/addon-actions';
import type { Meta, StoryObj } from '@storybook/react';
import { addDays } from 'date-fns';
import { Calendar } from '@interiorly/design-system/components/ui/calendar';
/**
* A date field component that allows users to enter and edit date.
*/
const meta = {
title... | interiorly | apps/storybook/stories/calendar.stories.tsx | TypeScript | 811964574c4693424d9e9f0641bf843a46d86901a36c3e8b4dddf833db01c9bf | 0 | 449 |
import type { Meta, StoryObj } from '@storybook/react';
import { BellRing } from 'lucide-react';
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from '@interiorly/design-system/components/ui/card';
const notifications = [
{
title: 'Your call has been confirmed.',
... | interiorly | apps/storybook/stories/card.stories.tsx | TypeScript | 9b97e325b838a22d746e734adff631c2d3589be3a3f32ada9089e81b06590287 | 0 | 425 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Carousel,
CarouselContent,
CarouselItem,
CarouselNext,
CarouselPrevious,
} from '@interiorly/design-system/components/ui/carousel';
/**
* A carousel with motion and swipe built using Embla.
*/
const meta: Meta<typeof Carousel> = {
title: '... | interiorly | apps/storybook/stories/carousel.stories.tsx | TypeScript | 22f165a0a6e0cac4339fce14c38821fafaca7fa50c56bfd77f778e097edc8c8a | 0 | 496 |
import type { Meta, StoryObj } from '@storybook/react';
import { useMemo } from 'react';
import {
Area,
AreaChart,
Bar,
BarChart,
CartesianGrid,
Label,
Line,
LineChart,
Pie,
PieChart,
XAxis,
} from 'recharts';
import {
type ChartConfig,
ChartContainer,
ChartTooltip,
ChartTooltipContent,
}... | interiorly | apps/storybook/stories/chart.stories.tsx | TypeScript | 6a493a2caf205de6d758576606f684a5e85e22079dc3b4c9c67f5dfc8e7cad62 | 0 | 896 |
dataKey="month"
tickLine={false}
tickMargin={10}
axisLine={false}
tickFormatter={(value) => value.slice(0, 3)}
/>
<ChartTooltip
cursor={false}
content={<ChartTooltipContent indicator="dashed" />}
/>
<Bar dataKey="desktop" fill="... | interiorly | apps/storybook/stories/chart.stories.tsx | TypeScript | 8cb37a999faad4820c98382237afcf0e099969a1727fb41f06acf79464e0995e | 1 | 658 |
import type { Meta, StoryObj } from '@storybook/react';
import { Checkbox } from '@interiorly/design-system/components/ui/checkbox';
/**
* A control that allows the user to toggle between checked and not checked.
*/
const meta: Meta<typeof Checkbox> = {
title: 'ui/Checkbox',
component: Checkbox,
tags: ['autod... | interiorly | apps/storybook/stories/checkbox.stories.tsx | TypeScript | 262cb59cae5542b90bf45a2b5d30864da6dfb814a4dc619170ec9400eb10ae70 | 0 | 286 |
import type { Meta, StoryObj } from '@storybook/react';
import { Info } from 'lucide-react';
import {
Collapsible,
CollapsibleContent,
CollapsibleTrigger,
} from '@interiorly/design-system/components/ui/collapsible';
/**
* An interactive component which expands/collapses a panel.
*/
const meta = {
title: 'u... | interiorly | apps/storybook/stories/collapsible.stories.tsx | TypeScript | 19f99ac5c46a529d785b87d57807544945005927627df25e2ec5ca9e1fc5f544 | 0 | 295 |
import type { Meta, StoryObj } from '@storybook/react';
import { CommandSeparator } from 'cmdk';
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from '@interiorly/design-system/components/ui/command';
/**
* Fast, composable, unstyled command menu for React.
*/
con... | interiorly | apps/storybook/stories/command.stories.tsx | TypeScript | 6a1965da8ad480fc2da20d8a4fde902fdcd627b44408b39e0d229fb6801e6d8d | 0 | 308 |
import type { Meta, StoryObj } from '@storybook/react';
import {
ContextMenu,
ContextMenuCheckboxItem,
ContextMenuContent,
ContextMenuItem,
ContextMenuLabel,
ContextMenuRadioGroup,
ContextMenuRadioItem,
ContextMenuSeparator,
ContextMenuShortcut,
ContextMenuSub,
ContextMenuSubContent,
ContextMen... | interiorly | apps/storybook/stories/context-menu.stories.tsx | TypeScript | baa4858ee11452e3ad7842dd0fce3bc61e291799777d2ead7cbc1ce19b41c277 | 0 | 896 |
-sm">
Right click here
</ContextMenuTrigger>
<ContextMenuContent className="w-64">
<ContextMenuRadioGroup value="light">
<ContextMenuLabel inset>Theme</ContextMenuLabel>
<ContextMenuRadioItem value="light">Light</ContextMenuRadioItem>
<ContextMenuRadioItem value... | interiorly | apps/storybook/stories/context-menu.stories.tsx | TypeScript | 2af2228653d786d6a5864d3004ad8d8b242a1c4ec6cef20e6c4c976abc0aad92 | 1 | 80 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@interiorly/design-system/components/ui/dialog';
/**
* A window overlaid on either the primary window or another dial... | interiorly | apps/storybook/stories/dialog.stories.tsx | TypeScript | 5cd32290c5eb5bb84062c2b6dc90717cce76417c323139285c6d845bf2f357bf | 0 | 316 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Drawer,
DrawerClose,
DrawerContent,
DrawerDescription,
DrawerFooter,
DrawerHeader,
DrawerTitle,
DrawerTrigger,
} from '@interiorly/design-system/components/ui/drawer';
/**
* A drawer component for React.
*/
const meta: Meta<typeof Draw... | interiorly | apps/storybook/stories/drawer.stories.tsx | TypeScript | 5cba6c34dc5fa1939e365921cf7e2235486276421a32bfa7336e115ed8ffcc2f | 0 | 282 |
import type { Meta, StoryObj } from '@storybook/react';
import { Mail, Plus, PlusCircle, Search, UserPlus } from 'lucide-react';
import {
DropdownMenu,
DropdownMenuCheckboxItem,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuItem,
DropdownMenuLabel,
DropdownMenuPortal,
DropdownMenuRadioGroup,
Dr... | interiorly | apps/storybook/stories/dropdown-menu.stories.tsx | TypeScript | 1c930440dccf2e9ab99a64ba2e8767e197fcddc4dc34401cd4a956f82d74bb78 | 0 | 878 |
import { zodResolver } from '@hookform/resolvers/zod';
import { action } from '@storybook/addon-actions';
import type { Meta, StoryObj } from '@storybook/react';
import { useForm } from 'react-hook-form';
import * as z from 'zod';
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,... | interiorly | apps/storybook/stories/form.stories.tsx | TypeScript | 12d7c9347701bd0a7a0d99e9d456be100a1bad639f43b12e80bef518c5d4f92f | 0 | 515 |
import type { Meta, StoryObj } from '@storybook/react';
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
} from '@interiorly/design-system/components/ui/hover-card';
/**
* For sighted users to preview content available behind a link.
*/
const meta = {
title: 'ui/HoverCard',
component: HoverCard,
... | interiorly | apps/storybook/stories/hover-card.stories.tsx | TypeScript | 56ac425b61126e4b721231044260c1a7336c7fa423d1a23cc2717de172a1c202 | 0 | 248 |
import type { Meta, StoryObj } from '@storybook/react';
import { REGEXP_ONLY_DIGITS_AND_CHARS } from 'input-otp';
import {
InputOTP,
InputOTPGroup,
InputOTPSeparator,
InputOTPSlot,
} from '@interiorly/design-system/components/ui/input-otp';
/**
* Accessible one-time password component with copy paste functio... | interiorly | apps/storybook/stories/input-otp.stories.tsx | TypeScript | 33190a9119cf0b12b4acb0e7682c1e42d4292a21b5cab33f653096a58bb67c38 | 0 | 386 |
import type { Meta, StoryObj } from '@storybook/react';
import { Input } from '@interiorly/design-system/components/ui/input';
/**
* Displays a form input field or a component that looks like an input field.
*/
const meta = {
title: 'ui/Input',
component: Input,
tags: ['autodocs'],
argTypes: {},
args: {
... | interiorly | apps/storybook/stories/input.stories.tsx | TypeScript | c3506e58e747c8a912b98637a26fb0f18c15f50b0fd7a896e90eda9c8bce0620 | 0 | 548 |
import type { Meta, StoryObj } from '@storybook/react';
import { Label } from '@interiorly/design-system/components/ui/label';
/**
* Renders an accessible label associated with controls.
*/
const meta = {
title: 'ui/Label',
component: Label,
tags: ['autodocs'],
argTypes: {
children: {
control: { t... | interiorly | apps/storybook/stories/label.stories.tsx | TypeScript | c8d268ed551f1b721b015df9d17327811790f921f1cca187dbea779ee69d158e | 0 | 155 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Menubar,
MenubarCheckboxItem,
MenubarContent,
MenubarGroup,
MenubarItem,
MenubarLabel,
MenubarMenu,
MenubarRadioGroup,
MenubarRadioItem,
MenubarSeparator,
MenubarShortcut,
MenubarSub,
MenubarSubContent,
MenubarSubTrigger,
Me... | interiorly | apps/storybook/stories/menubar.stories.tsx | TypeScript | 3ec2181c224c027d087c8f986c0f9c37f5591c1050f437855fe784de2f483d73 | 0 | 626 |
import type { Meta, StoryObj } from '@storybook/react';
import {
NavigationMenu,
NavigationMenuContent,
NavigationMenuItem,
NavigationMenuLink,
NavigationMenuList,
NavigationMenuTrigger,
navigationMenuTriggerStyle,
} from '@interiorly/design-system/components/ui/navigation-menu';
/**
* A collection of ... | interiorly | apps/storybook/stories/navigation-menu.stories.tsx | TypeScript | 72a8789896351d3d2b80d4dfcd56d0591cb467d6a009b005f0bea5d3a79fc254 | 0 | 360 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Pagination,
PaginationContent,
PaginationEllipsis,
PaginationItem,
PaginationLink,
PaginationNext,
PaginationPrevious,
} from '@interiorly/design-system/components/ui/pagination';
/**
* Pagination with page navigation, next and previous l... | interiorly | apps/storybook/stories/pagination.stories.tsx | TypeScript | 216d6be9758efaed75d7e8bf2e944ec454f5d4d20b9467c59a11e1b3e9ebf32b | 0 | 280 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Popover,
PopoverContent,
PopoverTrigger,
} from '@interiorly/design-system/components/ui/popover';
/**
* Displays rich content in a portal, triggered by a button.
*/
const meta = {
title: 'ui/Popover',
component: Popover,
tags: ['autodocs'... | interiorly | apps/storybook/stories/popover.stories.tsx | TypeScript | 947eda09340290617a58142bff3925cff7b405d9a5506314570104d0869df52a | 0 | 186 |
import type { Meta, StoryObj } from '@storybook/react';
import { Progress } from '@interiorly/design-system/components/ui/progress';
/**
* Displays an indicator showing the completion progress of a task, typically
* displayed as a progress bar.
*/
const meta = {
title: 'ui/Progress',
component: Progress,
tag... | interiorly | apps/storybook/stories/progress.stories.tsx | TypeScript | f0bde31d6f674f7f828e58389f1fe206c3497f145b055b75ce95d02dc28aafbe | 0 | 205 |
import type { Meta, StoryObj } from '@storybook/react';
import {
RadioGroup,
RadioGroupItem,
} from '@interiorly/design-system/components/ui/radio-group';
/**
* A set of checkable buttons—known as radio buttons—where no more than one of
* the buttons can be checked at a time.
*/
const meta = {
title: 'ui/Rad... | interiorly | apps/storybook/stories/radio-group.stories.tsx | TypeScript | 8c36185ca51208dc05353adffb6bb4e3e36bdbdd416081bb88a99a1b16de741e | 0 | 281 |
import type { Meta, StoryObj } from '@storybook/react';
import {
ResizableHandle,
ResizablePanel,
ResizablePanelGroup,
} from '@interiorly/design-system/components/ui/resizable';
/**
* Accessible resizable panel groups and layouts with keyboard support.
*/
const meta: Meta<typeof ResizablePanelGroup> = {
ti... | interiorly | apps/storybook/stories/resizable.stories.tsx | TypeScript | 255d273d19d172283681104eb32d77157a6eca380dd39d73eba100b97adf67d5 | 0 | 381 |
import type { Meta, StoryObj } from '@storybook/react';
import { ScrollArea } from '@interiorly/design-system/components/ui/scroll-area';
/**
* Augments native scroll functionality for custom, cross-browser styling.
*/
const meta = {
title: 'ui/ScrollArea',
component: ScrollArea,
tags: ['autodocs'],
argType... | interiorly | apps/storybook/stories/scroll-area.stories.tsx | TypeScript | f846afd6151ee58b9debc07bf95e4c14709cae72b8c9b3fd4ba4965f2ed913c4 | 0 | 444 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectSeparator,
SelectTrigger,
SelectValue,
} from '@interiorly/design-system/components/ui/select';
/**
* Displays a list of options for the user to pick from—triggered by a... | interiorly | apps/storybook/stories/select.stories.tsx | TypeScript | defc0bd7676ea854a50c90739a97374e9f5dc351604d7cea35450e45935c2641 | 0 | 453 |
import type { Meta, StoryObj } from '@storybook/react';
import { Separator } from '@interiorly/design-system/components/ui/separator';
/**
* Visually or semantically separates content.
*/
const meta = {
title: 'ui/Separator',
component: Separator,
tags: ['autodocs'],
argTypes: {},
} satisfies Meta<typeof Se... | interiorly | apps/storybook/stories/separator.stories.tsx | TypeScript | bc1d29317e9dd38d97d51a892502be9b3fec4d0a84835f14c33b84d1766bd1c5 | 0 | 243 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Sheet,
SheetClose,
SheetContent,
SheetDescription,
SheetFooter,
SheetHeader,
SheetTitle,
SheetTrigger,
} from '@interiorly/design-system/components/ui/sheet';
/**
* Extends the Dialog component to display content that complements the ma... | interiorly | apps/storybook/stories/sheet.stories.tsx | TypeScript | 5d106a100b285c0423d727cfb575ca9505736f3b51e9c4bf6d657fd2deca0b30 | 0 | 359 |
import type { Meta, StoryObj } from '@storybook/react';
import {
AudioWaveform,
BadgeCheck,
Bell,
BookOpen,
Bot,
ChevronRight,
ChevronsUpDown,
Command,
CreditCard,
Folder,
Forward,
Frame,
GalleryVerticalEnd,
LogOut,
// biome-ignore lint/suspicious/noShadowRestrictedNames: "icon name"
Map... | interiorly | apps/storybook/stories/sidebar.stories.tsx | TypeScript | 6dc52e56c3023f0c49249916c383c5965ba7c8b84f915973e8a488e233a6d572 | 0 | 896 |
> {
const [activeTeam, setActiveTeam] = useState(data.teams[0]);
return (
<SidebarProvider>
<Sidebar collapsible="icon">
<SidebarHeader>
<SidebarMenu>
<SidebarMenuItem>
<DropdownMenu>
<DropdownMenuTrigger asChild>
... | interiorly | apps/storybook/stories/sidebar.stories.tsx | TypeScript | a7c766bee524567e0d003c4a9b114157578cac0da920d7a43a77d874185b428e | 1 | 896 |
<DropdownMenuTrigger asChild>
<SidebarMenuAction showOnHover>
<MoreHorizontal />
<span className="sr-only">More</span>
</SidebarMenuAction>
</DropdownMenuTrigger>
<DropdownMenu... | interiorly | apps/storybook/stories/sidebar.stories.tsx | TypeScript | 0b5a406a92ac10ebf17f09059fbb2dc0e02bcd1e70e8bb698388ca1031dd00e1 | 2 | 896 |
<SidebarTrigger className="-ml-1" />
<Separator orientation="vertical" className="mr-2 h-4" />
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem className="hidden md:block">
<BreadcrumbLink href="#">
Building Your Applic... | interiorly | apps/storybook/stories/sidebar.stories.tsx | TypeScript | 86999ed2726a8eb6ee98b11437ba503b76562c3269d3413ced937bc51ae714f0 | 3 | 275 |
import type { Meta, StoryObj } from '@storybook/react';
import { Skeleton } from '@interiorly/design-system/components/ui/skeleton';
/**
* Use to show a placeholder while content is loading.
*/
const meta = {
title: 'ui/Skeleton',
component: Skeleton,
tags: ['autodocs'],
argTypes: {},
parameters: {
la... | interiorly | apps/storybook/stories/skeleton.stories.tsx | TypeScript | 2cebc31b1e6892ca4f961db79778c76e9525a1794f736422804e65132ab0133f | 0 | 249 |
import type { Meta, StoryObj } from '@storybook/react';
import { Slider } from '@interiorly/design-system/components/ui/slider';
/**
* An input where the user selects a value from within a given range.
*/
const meta = {
title: 'ui/Slider',
component: Slider,
tags: ['autodocs'],
argTypes: {},
args: {
d... | interiorly | apps/storybook/stories/slider.stories.tsx | TypeScript | 0964906b45c5c3e25e45dd58093e3542bf41bad0ab97b61b5ce14c783c8cf06d | 0 | 221 |
import { action } from '@storybook/addon-actions';
import type { Meta, StoryObj } from '@storybook/react';
import { toast } from 'sonner';
import { Toaster } from '@interiorly/design-system/components/ui/sonner';
/**
* An opinionated toast component for React.
*/
const meta: Meta<typeof Toaster> = {
title: 'ui/So... | interiorly | apps/storybook/stories/sonner.stories.tsx | TypeScript | 901befaa0cd51c4f20ecce65728b021f2fe84654d845893427d3305e761c54b8 | 0 | 287 |
import type { Meta, StoryObj } from '@storybook/react';
import { Switch } from '@interiorly/design-system/components/ui/switch';
/**
* A control that allows the user to toggle between checked and not checked.
*/
const meta = {
title: 'ui/Switch',
component: Switch,
tags: ['autodocs'],
argTypes: {},
parame... | interiorly | apps/storybook/stories/switch.stories.tsx | TypeScript | 53500f73b361b2df7d8bdffc9ecbfffbd82ec41f39ad3fbaa248b48c9bf33a10 | 0 | 263 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Table,
TableBody,
TableCaption,
TableCell,
TableHead,
TableHeader,
TableRow,
} from '@interiorly/design-system/components/ui/table';
const invoices = [
{
invoice: 'INV001',
paymentStatus: 'Paid',
totalAmount: '$250.00',
p... | interiorly | apps/storybook/stories/table.stories.tsx | TypeScript | 2639da1b9e74eb5d040388a0ff331633b289be0910cf7784dc54fc3fd53b33ee | 0 | 453 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Tabs,
TabsContent,
TabsList,
TabsTrigger,
} from '@interiorly/design-system/components/ui/tabs';
/**
* A set of layered sections of content—known as tab panels—that are displayed
* one at a time.
*/
const meta = {
title: 'ui/Tabs',
compon... | interiorly | apps/storybook/stories/tabs.stories.tsx | TypeScript | 53daf8ed9685e12b44b6c799662f0dac645ee5a1118b07e3b627eccfc64813e7 | 0 | 274 |
import type { Meta, StoryObj } from '@storybook/react';
import { Textarea } from '@interiorly/design-system/components/ui/textarea';
/**
* Displays a form textarea or a component that looks like a textarea.
*/
const meta = {
title: 'ui/Textarea',
component: Textarea,
tags: ['autodocs'],
argTypes: {},
args... | interiorly | apps/storybook/stories/textarea.stories.tsx | TypeScript | 763d4ec92045d24760e9f3ad7b5afb75284dd25b5b52a8848f9c849d2c84e8f4 | 0 | 508 |
import type { Meta, StoryObj } from '@storybook/react';
import {
Toast,
ToastAction,
type ToastActionElement,
type ToastProps,
} from '@interiorly/design-system/components/ui/toast';
import { Toaster } from '@interiorly/design-system/components/ui/toaster';
import { useToast } from '@interiorly/design-system/h... | interiorly | apps/storybook/stories/toast.stories.tsx | TypeScript | 23ae908f83d0a88a6ada8b61d53fdadcfae5edeb2ffd748af5988bf85e303719 | 0 | 525 |
import type { Meta, StoryObj } from '@storybook/react';
import { Bold, Italic, Underline } from 'lucide-react';
import {
ToggleGroup,
ToggleGroupItem,
} from '@interiorly/design-system/components/ui/toggle-group';
/**
* A set of two-state buttons that can be toggled on or off.
*/
const meta = {
title: 'ui/Tog... | interiorly | apps/storybook/stories/toggle-group.stories.tsx | TypeScript | 5f02f351d9c870b09eed19d3c27c6dded64bfd4552f8ac5079b2f3e125e3df7e | 0 | 576 |
import type { Meta, StoryObj } from '@storybook/react';
import { Bold, Italic } from 'lucide-react';
import { Toggle } from '@interiorly/design-system/components/ui/toggle';
/**
* A two-state button that can be either on or off.
*/
const meta: Meta<typeof Toggle> = {
title: 'ui/Toggle',
component: Toggle,
tag... | interiorly | apps/storybook/stories/toggle.stories.tsx | TypeScript | b83a335d24c4d20118d9c3a09ac08b9a881807daf772bdf1edd0a37c5a9ae2fd | 0 | 483 |
import type { Meta, StoryObj } from '@storybook/react';
import { Plus } from 'lucide-react';
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from '@interiorly/design-system/components/ui/tooltip';
/**
* A popup that displays information related to an element when the element
* receives ... | interiorly | apps/storybook/stories/tooltip.stories.tsx | TypeScript | 1b69f49c06614e0d24aca850d5bd776798982fac1066b87a6a7875d780b49aa0 | 0 | 433 |
node_modules
# Keep environment variables out of version control
.env
| interiorly | apps/studio/.gitignore | Git Ignore | 4b90f5240a92237f4cd8969c847bea3b3db7928cbb25db320640a4d2c5cf1f73 | 0 | 11 |
{
"name": "studio",
"version": "0.0.0",
"scripts": {
"dev": "prisma studio --schema ../../packages/database/prisma/schema.prisma --port 3005",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"devDependencies": {
"prisma": "6... | interiorly | apps/studio/package.json | JSON | 6e3e3b960eaf93df602d26a84f497e5dcca47abe186b614aa58ad79b4e9d9463 | 0 | 104 |
import { keys as cms } from '@interiorly/cms/keys';
import { keys as email } from '@interiorly/email/keys';
import { keys as flags } from '@interiorly/feature-flags/keys';
import { keys as core } from '@interiorly/next-config/keys';
import { keys as observability } from '@interiorly/observability/keys';
import { keys a... | interiorly | apps/web/env.ts | TypeScript | fd87fabfc99ca35f369ba086dd551b4b10a50d2f224792e487f953504058d0b9 | 0 | 192 |
import { env } from '@/env';
import { authMiddleware } from '@interiorly/auth/middleware';
import { parseError } from '@interiorly/observability/error';
import { secure } from '@interiorly/security';
import {
noseconeMiddleware,
noseconeOptions,
noseconeOptionsWithToolbar,
} from '@interiorly/security/middleware'... | interiorly | apps/web/middleware.ts | TypeScript | ac41cbd3cbf772adeec8ac67689e972ce7c25f9cead96f4b62a8223f6a89b5c7 | 0 | 237 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.