├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── index.jsx └── src │ ├── App.css │ ├── App.jsx │ └── index.css ├── embedded.html ├── index.html ├── jest.config.js ├── package.json ├── src ├── index.tsx ├── reply.tsx ├── styles │ └── index.css ├── thread.tsx ├── types │ ├── light-bolt11-decoder.d.ts │ └── nano-markdown.d.ts └── util │ ├── batched-function.ts │ ├── db.ts │ ├── models.ts │ ├── nest.test.ts │ ├── nest.ts │ ├── stores.ts │ ├── ui.test.ts │ └── ui.ts ├── tsconfig.json ├── vite-app.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/README.md -------------------------------------------------------------------------------- /app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/app/index.jsx -------------------------------------------------------------------------------- /app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/app/src/App.css -------------------------------------------------------------------------------- /app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/app/src/App.jsx -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/app/src/index.css -------------------------------------------------------------------------------- /embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/embedded.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/reply.tsx -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/thread.tsx -------------------------------------------------------------------------------- /src/types/light-bolt11-decoder.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'light-bolt11-decoder'; -------------------------------------------------------------------------------- /src/types/nano-markdown.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'nano-markdown'; -------------------------------------------------------------------------------- /src/util/batched-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/batched-function.ts -------------------------------------------------------------------------------- /src/util/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/db.ts -------------------------------------------------------------------------------- /src/util/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/models.ts -------------------------------------------------------------------------------- /src/util/nest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/nest.test.ts -------------------------------------------------------------------------------- /src/util/nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/nest.ts -------------------------------------------------------------------------------- /src/util/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/stores.ts -------------------------------------------------------------------------------- /src/util/ui.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/ui.test.ts -------------------------------------------------------------------------------- /src/util/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/src/util/ui.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite-app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/vite-app.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzaps/zapthreads/HEAD/vite.config.js --------------------------------------------------------------------------------