├── .env.example ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public └── favicon.ico ├── resources ├── demo.mp4 └── instant-perms.json ├── src ├── __dev.tsx ├── components │ ├── InstantAuth.tsx │ └── UI.tsx ├── config.tsx ├── instant.perms.ts ├── instant.schema.ts ├── lib │ ├── clientDB.tsx │ ├── useInstantPresence.tsx │ └── useInstantStore.tsx ├── mutators.ts ├── pages │ ├── _app.tsx │ ├── drawings │ │ └── [id].tsx │ └── index.tsx ├── styles │ └── globals.css └── types.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_INSTANT_APP_ID= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /resources/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/resources/demo.mp4 -------------------------------------------------------------------------------- /resources/instant-perms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/resources/instant-perms.json -------------------------------------------------------------------------------- /src/__dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/__dev.tsx -------------------------------------------------------------------------------- /src/components/InstantAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/components/InstantAuth.tsx -------------------------------------------------------------------------------- /src/components/UI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/components/UI.tsx -------------------------------------------------------------------------------- /src/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/config.tsx -------------------------------------------------------------------------------- /src/instant.perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/instant.perms.ts -------------------------------------------------------------------------------- /src/instant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/instant.schema.ts -------------------------------------------------------------------------------- /src/lib/clientDB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/lib/clientDB.tsx -------------------------------------------------------------------------------- /src/lib/useInstantPresence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/lib/useInstantPresence.tsx -------------------------------------------------------------------------------- /src/lib/useInstantStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/lib/useInstantStore.tsx -------------------------------------------------------------------------------- /src/mutators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/mutators.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/drawings/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/pages/drawings/[id].tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsventures/instldraw/HEAD/tsconfig.json --------------------------------------------------------------------------------