Compare commits
21 Commits
feat/lang-
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58c41719bc | ||
|
|
60e4cbc4ed | ||
|
|
8a4e72603c | ||
|
|
92e51b63be | ||
|
|
226b309df1 | ||
|
|
366013f44d | ||
|
|
335c418c54 | ||
|
|
7dc3edb5fd | ||
|
|
69208e06c1 | ||
|
|
0ee58ed085 | ||
|
|
86e380a5f6 | ||
|
|
791fa3e469 | ||
|
|
24025642f4 | ||
|
|
0d7cd64eef | ||
|
|
5b2ca9bd19 | ||
|
|
b31aea56e4 | ||
|
|
6bf06ab651 | ||
|
|
8936a95ef9 | ||
|
|
60c15956b8 | ||
|
|
542b0fbde9 | ||
|
|
fb40855a9a |
45
.github/workflows/pages.yml
vendored
Normal file
45
.github/workflows/pages.yml
vendored
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
name: Deploy to GitHub Pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: 'pages'
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: lts/*
|
||||||
|
cache: 'npm'
|
||||||
|
- name: Install dependencies
|
||||||
|
run: yarn install --frozen-lockfile
|
||||||
|
- name: Build
|
||||||
|
run: yarn build
|
||||||
|
env:
|
||||||
|
#VITE_BYTEBIN_URL: "https://your-bytebin.example.com/"
|
||||||
|
VITE_USE_QUERY_ROUTING: "true" # required for github pages
|
||||||
|
- name: Setup Pages
|
||||||
|
uses: actions/configure-pages@v5
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v3
|
||||||
|
with:
|
||||||
|
# Upload dist folder
|
||||||
|
path: './dist'
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v4
|
||||||
39
.gitignore
vendored
39
.gitignore
vendored
@@ -1,25 +1,24 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# Logs
|
||||||
|
logs
|
||||||
# dependencies
|
*.log
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
|
|
||||||
# testing
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
# production
|
|
||||||
/build
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
.env.local
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
.idea
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
|||||||
@@ -5,5 +5,6 @@
|
|||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "es5",
|
"trailingComma": "es5",
|
||||||
"arrowParens": "avoid",
|
"arrowParens": "avoid",
|
||||||
"quoteProps": "consistent"
|
"quoteProps": "consistent",
|
||||||
|
"plugins": ["prettier-plugin-organize-imports"]
|
||||||
}
|
}
|
||||||
42
API.md
Normal file
42
API.md
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<p align="center">
|
||||||
|
<img src=".github/banner.svg">
|
||||||
|
</p>
|
||||||
|
|
||||||
|
# API
|
||||||
|
paste has a simple HTTP API which can be used to read and write pastes programmatically.
|
||||||
|
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> If you are using the official instance of paste (https://pastes.dev), please note the following:
|
||||||
|
>
|
||||||
|
> * You must **provide a `User-Agent` header** to uniquely identify your application in all requests. This should include the application name and contact information, e.g. `ExampleApp (github.com/ExampleUser/ExampleApp)` or `MyExampleScript (github.com/ExampleUser)`.
|
||||||
|
> * You must **only upload content when prompted by a user action**, e.g. a button click or command line input. Automated or scheduled uploads are not allowed.
|
||||||
|
> * An additional **terms of service** applies. In summary:
|
||||||
|
> * No Illegal Use *(no illegal, harmful or unlawful content)*
|
||||||
|
> * No Malicious Content *(no malware, phishing, personal data without consent, etc.)*
|
||||||
|
> * Content Responsibility *(you are responsible for what you post)*
|
||||||
|
> * Moderation *(we reserve the right to remove content or block access)*
|
||||||
|
> * No Liability *(the service is provided "as is" without warranties)*
|
||||||
|
>
|
||||||
|
> Otherwise, please enjoy using the service! :)
|
||||||
|
|
||||||
|
### Base URL
|
||||||
|
The base URL for the 'official' paste instance is: `https://api.pastes.dev/`.
|
||||||
|
|
||||||
|
If you are self-hosting, use the base URL of your own instance. With the default Docker Compose setup, this will be `http://localhost:8080/data/`.
|
||||||
|
|
||||||
|
## Upload: `POST {BASE URL}/post`
|
||||||
|
|
||||||
|
To upload content, send an HTTP `POST` request to `{BASE URL}/post`.
|
||||||
|
|
||||||
|
* Include the content in the request body.
|
||||||
|
* Specify the language with the `Content-Type: text/<language>` header
|
||||||
|
* If using the official instance, please remember to provide a suitable `User-Agent` header as well. (see above for more details)
|
||||||
|
* The paste "key" is returned in the `Location` header, and in the response body as a JSON object in the format `{"key": "<key>"}`.**
|
||||||
|
|
||||||
|
## Read: `GET {BASE URL}/{key}`
|
||||||
|
|
||||||
|
To read content, send an HTTP `GET` request to `{BASE URL}/{key}`.
|
||||||
|
|
||||||
|
* Replace `{key}` with the id of the paste.
|
||||||
|
* The content is returned in the response body.
|
||||||
|
* The `Content-Type` header is `text/<language>`, where language is the id of the language the paste was saved with.
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
# Build stage
|
# Build stage
|
||||||
FROM node:lts as build
|
FROM node:lts AS build
|
||||||
|
|
||||||
ARG BYTEBIN_URL="data/"
|
ARG BYTEBIN_URL="data/"
|
||||||
ENV REACT_APP_BYTEBIN_URL="${BYTEBIN_URL}"
|
ENV VITE_BYTEBIN_URL="${BYTEBIN_URL}"
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY package.json yarn.lock ./
|
COPY package.json yarn.lock ./
|
||||||
@@ -13,6 +13,6 @@ RUN yarn build
|
|||||||
# Run stage
|
# Run stage
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
COPY --from=build /app/build /usr/share/nginx/html
|
COPY --from=build /app/dist /usr/share/nginx/html
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
EXPOSE 80/tcp
|
EXPOSE 80/tcp
|
||||||
59
README.md
59
README.md
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
**paste is a simple web app for writing & sharing code.** It's my own take on conventional pastebin sites like _pastebin.com_ or _hastebin_.
|
**paste is a simple web app for writing & sharing code.** It's my own take on conventional pastebin sites like _pastebin.com_ or _hastebin_.
|
||||||
|
|
||||||
Anyone can use paste! The official/public instance can be accessed using the endpoints listed below, but you can also [host your own](#host-your-own) if you like!
|
Anyone can use paste! The official/public instance can be accessed using the endpoints listed below, but you can also [host your own](#self-hosting) if you like!
|
||||||
|
|
||||||
##### 1) In a Web Browser
|
##### 1) In a Web Browser
|
||||||
Just go to https://pastes.dev!
|
Just go to https://pastes.dev!
|
||||||
@@ -23,18 +23,6 @@ You can submit content most easily using [curl](https://curl.se/docs/manpage.htm
|
|||||||
> echo "Hello world" | curl -T - https://api.pastes.dev/post
|
> echo "Hello world" | curl -T - https://api.pastes.dev/post
|
||||||
```
|
```
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>If curl isn't installed on your system, you can also post using <b>netcat</b>.</summary>
|
|
||||||
|
|
||||||
```shell
|
|
||||||
# Pipe in some output from any command
|
|
||||||
> echo "Hello world" | nc nc.pastes.dev 1337
|
|
||||||
|
|
||||||
# Upload the contents of a file
|
|
||||||
> cat example.txt | nc nc.pastes.dev 1337
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>If you don't want to do so much typing, you can create a shorter <b>alias</b>.</summary>
|
<summary>If you don't want to do so much typing, you can create a shorter <b>alias</b>.</summary>
|
||||||
|
|
||||||
@@ -56,8 +44,8 @@ You can submit content most easily using [curl](https://curl.se/docs/manpage.htm
|
|||||||
```
|
```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
##### 3) From Code
|
##### 3) From Code / Scripts
|
||||||
Send GET/POST/PUT requests to `https://api.pastes.dev/`. More info [below](#pastesdev-api).
|
Please see the [API Documentation](/API.md). :)
|
||||||
|
|
||||||
___
|
___
|
||||||
|
|
||||||
@@ -66,52 +54,15 @@ The frontend _(this repository)_ is written using the React framework. The backe
|
|||||||
|
|
||||||
The user-interface is based on the [Monaco Editor](https://microsoft.github.io/monaco-editor/), the engine behind the popular Visual Studio Code text editor. It's quite simple; it supports syntax highlighting, automatic indentation, many supported languages, themes, zooming in/out, linking to specific lines or sections, and more!
|
The user-interface is based on the [Monaco Editor](https://microsoft.github.io/monaco-editor/), the engine behind the popular Visual Studio Code text editor. It's quite simple; it supports syntax highlighting, automatic indentation, many supported languages, themes, zooming in/out, linking to specific lines or sections, and more!
|
||||||
|
|
||||||
### pastes.dev
|
|
||||||
|
|
||||||
I host a public instance at https://pastes.dev. Please feel free to use it to share code/configs/whatever!
|
|
||||||
|
|
||||||
Please note that the following (very-non-legally worded) [terms of service](https://github.com/lucko/bytebin#public-instances) apply.
|
|
||||||
If you come across any content which is illegal or infringes on copyright, please [get in touch](https://lucko.me/contact) and let me know so I can remove it.
|
|
||||||
|
|
||||||
Uploaded content is retained for 90 days then deleted.
|
|
||||||
|
|
||||||
### pastes.dev API
|
|
||||||
|
|
||||||
* To **read** content, send a HTTP `GET` request to `https://api.pastes.dev/<key>`.
|
|
||||||
* Replace `<key>` with the id of the paste.
|
|
||||||
* The content is returned in the response body.
|
|
||||||
* The `Content-Type` header is `text/<language>`, where language is the id of the language the paste was saved with.
|
|
||||||
* To **upload** content, send a HTTP `POST` request to `https://api.pastes.dev/post`.
|
|
||||||
* Include the content in the request body.
|
|
||||||
* Specify the language with the `Content-Type: text/<language>` header, and please provide a `User-Agent` header too.
|
|
||||||
* The paste "key" is returned in the `Location` header, or in the response body as a JSON object in the format `{"key": "<key>"}`.
|
|
||||||
|
|
||||||
The API is powered by the [bytebin](https://github.com/lucko/bytebin) service, so more information about how it works can be found there.
|
|
||||||
|
|
||||||
___
|
___
|
||||||
|
|
||||||
### Host your own
|
### Self-hosting
|
||||||
|
|
||||||
It's quite simple to host your own version.
|
The easiest way to self-host is using Docker (& Docker Compose). You can run the following commands to get started:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/lucko/paste
|
git clone https://github.com/lucko/paste
|
||||||
cd paste
|
cd paste
|
||||||
yarn install
|
|
||||||
|
|
||||||
# Outputs html/css/js files to /build
|
|
||||||
yarn build
|
|
||||||
|
|
||||||
# Start a webserver for testing/development
|
|
||||||
yarn start
|
|
||||||
```
|
|
||||||
|
|
||||||
You can then follow the [create-react-app deployment documentation](https://create-react-app.dev/docs/deployment/) for how to host the build output. I personally recommend deploying to the cloud using a service like Netlify instead of hosting on your own webserver.
|
|
||||||
|
|
||||||
If you really want to self-host (including the bytebin data storage part), I suggest using Docker:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/lucko/paste
|
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
|
# frontend service
|
||||||
paste:
|
paste:
|
||||||
image: ghcr.io/lucko/paste
|
image: ghcr.io/lucko/paste
|
||||||
|
|
||||||
|
# backend service
|
||||||
bytebin:
|
bytebin:
|
||||||
image: ghcr.io/lucko/bytebin
|
image: ghcr.io/lucko/bytebin
|
||||||
volumes:
|
volumes:
|
||||||
@@ -11,6 +12,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
BYTEBIN_MISC_KEYLENGTH: 5
|
BYTEBIN_MISC_KEYLENGTH: 5
|
||||||
|
|
||||||
|
# reverse proxy
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx:alpine
|
image: nginx:alpine
|
||||||
command: ['nginx', '-g', 'daemon off;']
|
command: ['nginx', '-g', 'daemon off;']
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
# nginx reverse proxy configuration for paste+bytebin
|
# nginx reverse proxy configuration for paste frontend & bytebin backend
|
||||||
server {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
|
|
||||||
# paste app
|
# proxy / path to paste frontend
|
||||||
location / {
|
location / {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
@@ -17,7 +17,7 @@ server {
|
|||||||
return 404;
|
return 404;
|
||||||
}
|
}
|
||||||
|
|
||||||
# proxy /data endpoint to bytebin
|
# proxy /data path to bytebin backend
|
||||||
location /data/ {
|
location /data/ {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|||||||
28
eslint.config.js
Normal file
28
eslint.config.js
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import js from '@eslint/js'
|
||||||
|
import globals from 'globals'
|
||||||
|
import reactHooks from 'eslint-plugin-react-hooks'
|
||||||
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
||||||
|
import tseslint from 'typescript-eslint'
|
||||||
|
|
||||||
|
export default tseslint.config(
|
||||||
|
{ ignores: ['dist'] },
|
||||||
|
{
|
||||||
|
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
||||||
|
files: ['**/*.{ts,tsx}'],
|
||||||
|
languageOptions: {
|
||||||
|
ecmaVersion: 2020,
|
||||||
|
globals: globals.browser,
|
||||||
|
},
|
||||||
|
plugins: {
|
||||||
|
'react-hooks': reactHooks,
|
||||||
|
'react-refresh': reactRefresh,
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
...reactHooks.configs.recommended.rules,
|
||||||
|
'react-refresh/only-export-components': [
|
||||||
|
'warn',
|
||||||
|
{ allowConstantExport: true },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
@@ -11,20 +11,21 @@
|
|||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta name="twitter:title" content="pastes" />
|
<meta name="twitter:title" content="pastes" />
|
||||||
<meta name="twitter:description" content="a simple pastebin." />
|
<meta name="twitter:description" content="a simple pastebin." />
|
||||||
<meta name="twitter:image" content="%PUBLIC_URL%/assets/logo256.png" />
|
<meta name="twitter:image" content="https://pastes.dev/assets/logo256.png" />
|
||||||
|
|
||||||
<meta property="og:title" content="pastes" />
|
<meta property="og:title" content="pastes" />
|
||||||
<meta property="og:description" content="a simple pastebin." />
|
<meta property="og:description" content="a simple pastebin." />
|
||||||
<meta property="og:type" content="product" />
|
<meta property="og:type" content="product" />
|
||||||
<meta property="og:image" content="%PUBLIC_URL%/assets/logo256.png" />
|
<meta property="og:image" content="https://pastes.dev/assets/logo256.png" />
|
||||||
<meta property="og:url" content="%PUBLIC_URL%" />
|
<meta property="og:url" content="https://pastes.dev" />
|
||||||
|
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
<link href="%PUBLIC_URL%/assets/logo512.png" rel="shortcut icon" sizes="512x512" type="image/png">
|
<link rel="shortcut icon" href="/assets/logo512.png" sizes="512x512" type="image/png">
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/assets/logo256.png" />
|
<link rel="apple-touch-icon" href="/assets/logo256.png" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
75
package.json
75
package.json
@@ -2,59 +2,44 @@
|
|||||||
"name": "paste",
|
"name": "paste",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "tsc -b && vite build",
|
||||||
|
"lint": "eslint .",
|
||||||
|
"preview": "vite preview",
|
||||||
|
"format": "prettier --write '**/*.ts' '**/*.tsx' '**/*.css'"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@monaco-editor/react": "^4.6.0",
|
"@catppuccin/palette": "^1.7.1",
|
||||||
|
"@monaco-editor/react": "^4.8.0-rc.3",
|
||||||
"copy-to-clipboard": "^3.3.3",
|
"copy-to-clipboard": "^3.3.3",
|
||||||
"history": "^5.3.0",
|
"history": "^5.3.0",
|
||||||
"local-storage": "^2.0.0",
|
"monaco-editor": "^0.55.1",
|
||||||
"monaco-themes": "^0.4.4",
|
"monaco-themes": "^0.4.8",
|
||||||
"pako": "^2.1.0",
|
"pako": "^2.1.0",
|
||||||
"react": "^18.2.0",
|
"react": "^19.2.4",
|
||||||
"react-device-detect": "^2.2.3",
|
"react-device-detect": "^2.2.3",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^19.2.4",
|
||||||
"react-scripts": "^5.0.1",
|
"styled-components": "^6.3.11",
|
||||||
"styled-components": "^6.1.1",
|
|
||||||
"typescript": "^4.4.2",
|
|
||||||
"whatwg-mimetype": "^3.0.0"
|
"whatwg-mimetype": "^3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@testing-library/jest-dom": "^5.14.1",
|
"@eslint/js": "^10.0.1",
|
||||||
"@testing-library/react": "^13.0.0",
|
"@types/node": "^25.3.0",
|
||||||
"@testing-library/user-event": "^13.2.1",
|
"@types/pako": "^2.0.4",
|
||||||
"@types/jest": "^27.0.1",
|
"@types/react": "^19.2.14",
|
||||||
"@types/node": "^18.11.9",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@types/pako": "^2.0.3",
|
|
||||||
"@types/react": "^18.2.0",
|
|
||||||
"@types/react-dom": "^18.2.0",
|
|
||||||
"@types/whatwg-mimetype": "^3.0.2",
|
"@types/whatwg-mimetype": "^3.0.2",
|
||||||
"monaco-editor": "^0.44.0",
|
"@vitejs/plugin-react-swc": "^4.2.3",
|
||||||
"prettier": "^3.1.0",
|
"eslint": "^10.0.1",
|
||||||
"prettier-plugin-organize-imports": "^3.2.4"
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
},
|
"eslint-plugin-react-refresh": "^0.5.2",
|
||||||
"scripts": {
|
"globals": "^17.3.0",
|
||||||
"start": "react-scripts start",
|
"prettier": "^3.8.1",
|
||||||
"build": "react-scripts build",
|
"prettier-plugin-organize-imports": "^4.3.0",
|
||||||
"test": "react-scripts test",
|
"typescript": "~5.9.3",
|
||||||
"eject": "react-scripts eject",
|
"typescript-eslint": "^8.56.1",
|
||||||
"format": "prettier --write '**/*.ts' '**/*.tsx' '**/*.css'",
|
"vite": "^7.3.1"
|
||||||
"compile": "tsc"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
|
||||||
"extends": [
|
|
||||||
"react-app",
|
|
||||||
"react-app/jest"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"browserslist": {
|
|
||||||
"production": [
|
|
||||||
">0.2%",
|
|
||||||
"not dead",
|
|
||||||
"not op_mini all"
|
|
||||||
],
|
|
||||||
"development": [
|
|
||||||
"last 1 chrome version",
|
|
||||||
"last 1 firefox version",
|
|
||||||
"last 1 safari version"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
40
src/App.tsx
40
src/App.tsx
@@ -1,8 +1,11 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
|
import { ThemeProvider } from 'styled-components';
|
||||||
|
import About from './components/About.tsx';
|
||||||
import Editor from './components/Editor';
|
import Editor from './components/Editor';
|
||||||
|
import usePreference from './hooks/usePreference.ts';
|
||||||
|
import themes, { Themes } from './style/themes.ts';
|
||||||
|
import { useQueryRouting } from './util/constants';
|
||||||
import { loadFromBytebin } from './util/storage';
|
import { loadFromBytebin } from './util/storage';
|
||||||
import { Language } from './util/language';
|
|
||||||
import { detectLanguage } from './util/detect-language';
|
|
||||||
|
|
||||||
const INITIAL = Symbol();
|
const INITIAL = Symbol();
|
||||||
const LOADING = Symbol();
|
const LOADING = Symbol();
|
||||||
@@ -15,7 +18,13 @@ export default function App() {
|
|||||||
const [state, setState] = useState<LoadingState>(INITIAL);
|
const [state, setState] = useState<LoadingState>(INITIAL);
|
||||||
const [forcedContent, setForcedContent] = useState<string>('');
|
const [forcedContent, setForcedContent] = useState<string>('');
|
||||||
const [actualContent, setActualContent] = useState<string>('');
|
const [actualContent, setActualContent] = useState<string>('');
|
||||||
const [contentType, setContentType] = useState<Language>();
|
const [contentType, setContentType] = useState<string>();
|
||||||
|
const [theme, setTheme] = usePreference<keyof Themes>(
|
||||||
|
'theme',
|
||||||
|
'dark',
|
||||||
|
pref => !!themes[pref]
|
||||||
|
);
|
||||||
|
const [showAbout, setShowAbout] = useState<boolean>(false);
|
||||||
|
|
||||||
function setContent(content: string) {
|
function setContent(content: string) {
|
||||||
setActualContent(content);
|
setActualContent(content);
|
||||||
@@ -24,20 +33,15 @@ export default function App() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (pasteId && state === INITIAL) {
|
if (pasteId && state === INITIAL) {
|
||||||
|
// eslint-disable-next-line react-hooks/set-state-in-effect
|
||||||
setState(LOADING);
|
setState(LOADING);
|
||||||
setContent('Loading...');
|
setContent('Loading...');
|
||||||
|
|
||||||
loadFromBytebin(pasteId).then(({ ok, content, type }) => {
|
loadFromBytebin(pasteId).then(({ ok, content, type }) => {
|
||||||
if (ok) {
|
if (ok) {
|
||||||
setContent(content);
|
setContent(content);
|
||||||
if (type !== 'plain') {
|
if (type) {
|
||||||
setContentType(type);
|
setContentType(type);
|
||||||
} else {
|
|
||||||
detectLanguage(pasteId).then(detectedLanguage => {
|
|
||||||
if (detectedLanguage) {
|
|
||||||
setContentType(detectedLanguage);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setContent(get404Message(pasteId));
|
setContent(get404Message(pasteId));
|
||||||
@@ -48,13 +52,19 @@ export default function App() {
|
|||||||
}, [pasteId, state]);
|
}, [pasteId, state]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<ThemeProvider theme={themes[theme]}>
|
||||||
<Editor
|
<Editor
|
||||||
forcedContent={forcedContent}
|
forcedContent={forcedContent}
|
||||||
actualContent={actualContent}
|
actualContent={actualContent}
|
||||||
setActualContent={setActualContent}
|
setActualContent={setActualContent}
|
||||||
contentType={contentType}
|
contentType={contentType}
|
||||||
pasteId={pasteId}
|
pasteId={pasteId}
|
||||||
|
theme={theme}
|
||||||
|
setTheme={setTheme}
|
||||||
|
setShowAbout={setShowAbout}
|
||||||
/>
|
/>
|
||||||
|
{showAbout && <About setVisible={setShowAbout} />}
|
||||||
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -73,10 +83,10 @@ function get404Message(pasteId: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getPasteIdFromUrl() {
|
function getPasteIdFromUrl() {
|
||||||
const path = window.location.pathname;
|
if (useQueryRouting) {
|
||||||
if (path && /^\/[a-zA-Z0-9]+$/.test(path)) {
|
return new URLSearchParams(window.location.search).get('id') ?? undefined;
|
||||||
return path.substring(1);
|
|
||||||
} else {
|
|
||||||
return undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const path = window.location.pathname;
|
||||||
|
return /^\/[a-zA-Z0-9]+$/.test(path) ? path.substring(1) : undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
202
src/components/About.tsx
Normal file
202
src/components/About.tsx
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
import { useCallback, useState } from 'react';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import Button from './Button.tsx';
|
||||||
|
|
||||||
|
const CloseButton = ({
|
||||||
|
setVisible,
|
||||||
|
}: {
|
||||||
|
setVisible: (show: boolean) => void;
|
||||||
|
}) => {
|
||||||
|
const close = useCallback(() => {
|
||||||
|
setVisible(false);
|
||||||
|
}, [setVisible]);
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
position: 'absolute',
|
||||||
|
top: '5px',
|
||||||
|
right: '5px',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Button style={{ padding: '5px' }} onClick={close}>
|
||||||
|
[X]
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function About({
|
||||||
|
setVisible,
|
||||||
|
}: {
|
||||||
|
setVisible: (show: boolean) => void;
|
||||||
|
}) {
|
||||||
|
const official = window.location.hostname === 'pastes.dev';
|
||||||
|
const [showTos, setShowTos] = useState<boolean>(false);
|
||||||
|
|
||||||
|
if (showTos) {
|
||||||
|
return <Tos setVisible={setShowTos} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AboutPanel>
|
||||||
|
<CloseButton setVisible={setVisible} />
|
||||||
|
<BannerContainer>
|
||||||
|
<Banner>{'{paste}'}</Banner>
|
||||||
|
</BannerContainer>
|
||||||
|
<p>
|
||||||
|
<b>paste is a simple web app for writing & sharing code</b>. It's a
|
||||||
|
different take on conventional pastebin sites like pastebin.com or
|
||||||
|
hastebin.
|
||||||
|
</p>
|
||||||
|
{official && (
|
||||||
|
<>
|
||||||
|
<p>
|
||||||
|
<b>pastes.dev</b> is the official, publicly accessible paste
|
||||||
|
instance, and can be used by anyone, subject to the{' '}
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
onClick={e => {
|
||||||
|
setShowTos(true);
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Terms of Service
|
||||||
|
</a>
|
||||||
|
.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
To access pastes.dev programmatically, please use the{' '}
|
||||||
|
<a
|
||||||
|
href="https://github.com/lucko/paste/blob/master/API.md"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
API
|
||||||
|
</a>
|
||||||
|
. :)
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Please{' '}
|
||||||
|
<b>
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
onClick={e => {
|
||||||
|
setShowTos(true);
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
report
|
||||||
|
</a>
|
||||||
|
</b>{' '}
|
||||||
|
illegal, malicious, or abusive content so it can be removed.
|
||||||
|
</p>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
<p style={{ textAlign: 'center' }}>
|
||||||
|
<a href="https://github.com/lucko/paste" target="_blank">
|
||||||
|
paste
|
||||||
|
</a>{' '}
|
||||||
|
is free & open source on GitHub.
|
||||||
|
<br />
|
||||||
|
Copyright © 2021-{new Date().getFullYear()}{' '}
|
||||||
|
<a href="https://github.com/lucko" target="_blank">
|
||||||
|
lucko
|
||||||
|
</a>{' '}
|
||||||
|
& other paste{' '}
|
||||||
|
<a
|
||||||
|
href="https://github.com/lucko/paste/graphs/contributors"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
contributors
|
||||||
|
</a>
|
||||||
|
.
|
||||||
|
</p>
|
||||||
|
</AboutPanel>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const Tos = ({ setVisible }: { setVisible: (show: boolean) => void }) => {
|
||||||
|
return (
|
||||||
|
<AboutPanel>
|
||||||
|
<CloseButton setVisible={setVisible} />
|
||||||
|
<h1>Terms of Service</h1>
|
||||||
|
<p>
|
||||||
|
Welcome to pastes.dev. By using this service, you agree to the following
|
||||||
|
terms:
|
||||||
|
</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<b>No Illegal Use:</b> You may not use pastes.dev to share, store, or
|
||||||
|
distribute any content that is illegal, harmful, or violates any laws
|
||||||
|
or regulations.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>No Malicious Content:</b> Do not upload or share content intended
|
||||||
|
to harm others, including but not limited to malware, phishing links,
|
||||||
|
or personal data without consent.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>Content Responsibility:</b> You are solely responsible for the
|
||||||
|
content you post. We do not review content and are not liable for what
|
||||||
|
users choose to share.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>Moderation:</b> We reserve the right to remove any content at our
|
||||||
|
discretion, and to restrict or terminate access to the service for
|
||||||
|
abuse or violations of these terms.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>No Liability:</b> This service is provided "as is" with no
|
||||||
|
warranties. We do not guarantee uptime, data retention, or
|
||||||
|
availability.
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<p>
|
||||||
|
By using pastes.dev, you accept these terms. If you do not agree, please
|
||||||
|
do not use the service.
|
||||||
|
</p>
|
||||||
|
<h2>Reporting Abuse</h2>
|
||||||
|
<p>
|
||||||
|
If you encounter illegal or malicious content, please report it by email
|
||||||
|
to <span>report-abuse@pastes.dev</span>.
|
||||||
|
</p>
|
||||||
|
</AboutPanel>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const AboutPanel = styled.div`
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
z-index: 99;
|
||||||
|
padding: 10px;
|
||||||
|
max-width: 650px;
|
||||||
|
max-height: 100vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
color: ${props => props.theme.primary};
|
||||||
|
background-color: ${props => props.theme.secondary};
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: ${props => props.theme.logo};
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: ${props => props.theme.logo};
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const BannerContainer = styled.div`
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Banner = styled.div`
|
||||||
|
background-color: ${props => props.theme.background};
|
||||||
|
color: ${props => props.theme.logo};
|
||||||
|
border-radius: 20px;
|
||||||
|
font-size: 70px;
|
||||||
|
letter-spacing: -5px;
|
||||||
|
padding: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
`;
|
||||||
@@ -1,20 +1,21 @@
|
|||||||
import { useEffect, useRef, useState } from 'react';
|
import { useEffect, useRef, useState } from 'react';
|
||||||
import { isMobile } from 'react-device-detect';
|
import { isMobile } from 'react-device-detect';
|
||||||
import { ThemeProvider } from 'styled-components';
|
|
||||||
|
|
||||||
import usePreference from '../hooks/usePreference';
|
import usePreference from '../hooks/usePreference';
|
||||||
import themes, { Themes } from '../style/themes';
|
import { Themes } from '../style/themes.ts';
|
||||||
import EditorControls from './EditorControls';
|
import EditorControls from './EditorControls';
|
||||||
import EditorGlobalStyle from './EditorGlobalStyle';
|
import EditorGlobalStyle from './EditorGlobalStyle';
|
||||||
import EditorTextArea from './EditorTextArea';
|
import EditorTextArea from './EditorTextArea';
|
||||||
import { Language } from '../util/language';
|
|
||||||
|
|
||||||
export interface EditorProps {
|
export interface EditorProps {
|
||||||
forcedContent: string;
|
forcedContent: string;
|
||||||
actualContent: string;
|
actualContent: string;
|
||||||
setActualContent: (value: string) => void;
|
setActualContent: (value: string) => void;
|
||||||
contentType?: Language;
|
contentType?: string;
|
||||||
pasteId?: string;
|
pasteId?: string;
|
||||||
|
theme: keyof Themes;
|
||||||
|
setTheme: (value: keyof Themes) => void;
|
||||||
|
setShowAbout: (value: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ResetFunction = () => void;
|
export type ResetFunction = () => void;
|
||||||
@@ -25,24 +26,29 @@ export default function Editor({
|
|||||||
setActualContent,
|
setActualContent,
|
||||||
contentType,
|
contentType,
|
||||||
pasteId,
|
pasteId,
|
||||||
|
theme,
|
||||||
|
setTheme,
|
||||||
|
setShowAbout,
|
||||||
}: EditorProps) {
|
}: EditorProps) {
|
||||||
const [language, setLanguage] = useState<string>('plain');
|
const [language, setLanguage] = useState<string>('plain');
|
||||||
const [readOnly, setReadOnly] = useState<boolean>(isMobile && !!pasteId);
|
const [readOnly, setReadOnly] = useState<boolean>(isMobile && !!pasteId);
|
||||||
const resetFunction = useRef<ResetFunction>();
|
const resetFunction = useRef<ResetFunction>(null);
|
||||||
|
|
||||||
const [theme, setTheme] = usePreference<keyof Themes>(
|
|
||||||
'theme',
|
|
||||||
'dark',
|
|
||||||
pref => !!themes[pref]
|
|
||||||
);
|
|
||||||
const [fontSize, setFontSize, fontSizeCheck] = usePreference<number>(
|
const [fontSize, setFontSize, fontSizeCheck] = usePreference<number>(
|
||||||
'fontsize',
|
'fontsize',
|
||||||
16,
|
16,
|
||||||
pref => pref >= 10 && pref <= 22
|
pref => pref >= 10 && pref <= 22
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const [wordWrap, setWordWrap] = usePreference<boolean>(
|
||||||
|
'wordwrap',
|
||||||
|
true,
|
||||||
|
() => true
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (contentType) {
|
if (contentType) {
|
||||||
|
// eslint-disable-next-line react-hooks/set-state-in-effect
|
||||||
setLanguage(contentType);
|
setLanguage(contentType);
|
||||||
}
|
}
|
||||||
}, [contentType]);
|
}, [contentType]);
|
||||||
@@ -56,7 +62,6 @@ export default function Editor({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ThemeProvider theme={themes[theme]}>
|
|
||||||
<EditorGlobalStyle />
|
<EditorGlobalStyle />
|
||||||
<EditorControls
|
<EditorControls
|
||||||
actualContent={actualContent}
|
actualContent={actualContent}
|
||||||
@@ -67,19 +72,21 @@ export default function Editor({
|
|||||||
setReadOnly={setReadOnly}
|
setReadOnly={setReadOnly}
|
||||||
theme={theme}
|
theme={theme}
|
||||||
setTheme={setTheme}
|
setTheme={setTheme}
|
||||||
|
wordWrap={wordWrap}
|
||||||
|
setWordWrap={setWordWrap}
|
||||||
zoom={zoom}
|
zoom={zoom}
|
||||||
|
setShowAbout={setShowAbout}
|
||||||
/>
|
/>
|
||||||
<EditorTextArea
|
<EditorTextArea
|
||||||
forcedContent={forcedContent}
|
forcedContent={forcedContent}
|
||||||
actualContent={actualContent}
|
actualContent={actualContent}
|
||||||
setActualContent={setActualContent}
|
setActualContent={setActualContent}
|
||||||
theme={themes[theme]}
|
|
||||||
language={language}
|
language={language}
|
||||||
fontSize={fontSize}
|
fontSize={fontSize}
|
||||||
readOnly={readOnly}
|
readOnly={readOnly}
|
||||||
resetFunction={resetFunction}
|
wordWrap={wordWrap}
|
||||||
|
resetFunctionRef={resetFunction}
|
||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
import copy from 'copy-to-clipboard';
|
import copy from 'copy-to-clipboard';
|
||||||
import history from 'history/browser';
|
import history from 'history/browser';
|
||||||
import { MutableRefObject, useCallback, useEffect, useState } from 'react';
|
import { RefObject, useCallback, useEffect, useState } from 'react';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
import themes, { Themes } from '../style/themes';
|
import themes, { Themes } from '../style/themes';
|
||||||
import { languages, unknownLanguage } from '../util/language';
|
import { useQueryRouting } from '../util/constants';
|
||||||
|
import { languages } from '../util/highlighting';
|
||||||
import { saveToBytebin } from '../util/storage';
|
import { saveToBytebin } from '../util/storage';
|
||||||
import Button from './Button';
|
import Button from './Button';
|
||||||
import { ResetFunction } from './Editor';
|
import { ResetFunction } from './Editor';
|
||||||
@@ -12,14 +13,17 @@ import MenuButton from './MenuButton';
|
|||||||
|
|
||||||
export interface EditorControlsProps {
|
export interface EditorControlsProps {
|
||||||
actualContent: string;
|
actualContent: string;
|
||||||
resetFunction: MutableRefObject<ResetFunction | undefined>;
|
resetFunction: RefObject<ResetFunction | null>;
|
||||||
language: string;
|
language: string;
|
||||||
setLanguage: (value: string) => void;
|
setLanguage: (value: string) => void;
|
||||||
readOnly: boolean;
|
readOnly: boolean;
|
||||||
setReadOnly: (value: boolean) => void;
|
setReadOnly: (value: boolean) => void;
|
||||||
theme: keyof Themes;
|
theme: keyof Themes;
|
||||||
setTheme: (value: keyof Themes) => void;
|
setTheme: (value: keyof Themes) => void;
|
||||||
|
wordWrap: boolean;
|
||||||
|
setWordWrap: (value: boolean) => void;
|
||||||
zoom: (delta: number) => void;
|
zoom: (delta: number) => void;
|
||||||
|
setShowAbout: (value: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function EditorControls({
|
export default function EditorControls({
|
||||||
@@ -31,15 +35,23 @@ export default function EditorControls({
|
|||||||
setReadOnly,
|
setReadOnly,
|
||||||
theme,
|
theme,
|
||||||
setTheme,
|
setTheme,
|
||||||
|
wordWrap,
|
||||||
|
setWordWrap,
|
||||||
zoom,
|
zoom,
|
||||||
|
setShowAbout,
|
||||||
}: EditorControlsProps) {
|
}: EditorControlsProps) {
|
||||||
const [saving, setSaving] = useState<boolean>(false);
|
const [saving, setSaving] = useState<boolean>(false);
|
||||||
const [recentlySaved, setRecentlySaved] = useState<boolean>(false);
|
const [recentlySaved, setRecentlySaved] = useState<boolean>(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
// eslint-disable-next-line react-hooks/set-state-in-effect
|
||||||
setRecentlySaved(false);
|
setRecentlySaved(false);
|
||||||
}, [actualContent, language]);
|
}, [actualContent, language]);
|
||||||
|
|
||||||
|
const showAbout = useCallback(() => {
|
||||||
|
setShowAbout(true);
|
||||||
|
}, [setShowAbout]);
|
||||||
|
|
||||||
const save = useCallback(() => {
|
const save = useCallback(() => {
|
||||||
if (!actualContent || recentlySaved) {
|
if (!actualContent || recentlySaved) {
|
||||||
return;
|
return;
|
||||||
@@ -49,9 +61,15 @@ export default function EditorControls({
|
|||||||
setSaving(false);
|
setSaving(false);
|
||||||
setRecentlySaved(true);
|
setRecentlySaved(true);
|
||||||
if (pasteId) {
|
if (pasteId) {
|
||||||
|
if (useQueryRouting) {
|
||||||
|
history.replace({
|
||||||
|
search: `?id=${pasteId}`,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
history.replace({
|
history.replace({
|
||||||
pathname: pasteId,
|
pathname: pasteId,
|
||||||
});
|
});
|
||||||
|
}
|
||||||
copy(window.location.href);
|
copy(window.location.href);
|
||||||
document.title = 'paste | ' + pasteId;
|
document.title = 'paste | ' + pasteId;
|
||||||
}
|
}
|
||||||
@@ -104,30 +122,25 @@ export default function EditorControls({
|
|||||||
</Button>
|
</Button>
|
||||||
<MenuButton
|
<MenuButton
|
||||||
label="language"
|
label="language"
|
||||||
value={language === unknownLanguage ? '?' : language}
|
value={language}
|
||||||
setValue={setLanguage}
|
setValue={setLanguage}
|
||||||
ids={languages as unknown as Record<string, string[]>}
|
ids={languages}
|
||||||
/>
|
/>
|
||||||
{readOnly && <Button onClick={unsetReadOnly}>[edit]</Button>}
|
{readOnly && <Button onClick={unsetReadOnly}>[edit]</Button>}
|
||||||
</Section>
|
</Section>
|
||||||
<Section>
|
<Section>
|
||||||
<Button onClick={() => zoom(1)}>[+ </Button>
|
<Button onClick={() => zoom(1)}>[+ </Button>
|
||||||
<Button onClick={() => zoom(-1)}> -]</Button>
|
<Button onClick={() => zoom(-1)}> -]</Button>
|
||||||
|
<Button onClick={() => setWordWrap(!wordWrap)}>
|
||||||
|
[wrap:{wordWrap ? 'on' : 'off'}]
|
||||||
|
</Button>
|
||||||
<MenuButton
|
<MenuButton
|
||||||
label="theme"
|
label="theme"
|
||||||
value={theme}
|
value={theme}
|
||||||
setValue={setTheme}
|
setValue={setTheme}
|
||||||
ids={Object.keys(themes) as (keyof Themes)[]}
|
ids={Object.keys(themes) as (keyof Themes)[]}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button onClick={showAbout}>[about]</Button>
|
||||||
className="optional"
|
|
||||||
as="a"
|
|
||||||
href="https://github.com/lucko/paste#readme"
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
>
|
|
||||||
[about]
|
|
||||||
</Button>
|
|
||||||
</Section>
|
</Section>
|
||||||
</Header>
|
</Header>
|
||||||
);
|
);
|
||||||
@@ -136,7 +149,7 @@ export default function EditorControls({
|
|||||||
const Header = styled.header`
|
const Header = styled.header`
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 2;
|
z-index: 10;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 2em;
|
height: 2em;
|
||||||
color: ${props => props.theme.primary};
|
color: ${props => props.theme.primary};
|
||||||
@@ -144,13 +157,15 @@ const Header = styled.header`
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
overflow-x: auto;
|
||||||
|
white-space: nowrap;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Section = styled.div`
|
const Section = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
@media (max-width: 470px) {
|
@media (max-width: 850px) {
|
||||||
.optional {
|
.optional {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,45 +5,74 @@ import Editor, {
|
|||||||
OnMount,
|
OnMount,
|
||||||
} from '@monaco-editor/react';
|
} from '@monaco-editor/react';
|
||||||
import history from 'history/browser';
|
import history from 'history/browser';
|
||||||
import React, {
|
import { RefObject, useCallback, useEffect, useRef, useState } from 'react';
|
||||||
MutableRefObject,
|
import styled, { useTheme } from 'styled-components';
|
||||||
useCallback,
|
|
||||||
useEffect,
|
|
||||||
useRef,
|
|
||||||
useState,
|
|
||||||
} from 'react';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import themes, { Theme } from '../style/themes';
|
import themes, { Theme } from '../style/themes';
|
||||||
|
|
||||||
import type { editor } from 'monaco-editor';
|
import type { editor } from 'monaco-editor';
|
||||||
|
import { diffLanguage } from '../util/languages/diff';
|
||||||
|
import { logLanguage } from '../util/languages/log';
|
||||||
import { ResetFunction } from './Editor';
|
import { ResetFunction } from './Editor';
|
||||||
import { logLanguage } from '../util/log-language';
|
|
||||||
|
import { loader } from '@monaco-editor/react';
|
||||||
|
import * as monaco from 'monaco-editor';
|
||||||
|
|
||||||
|
import editorWorker from 'monaco-editor/esm/vs/editor/editor.worker?worker';
|
||||||
|
import cssWorker from 'monaco-editor/esm/vs/language/css/css.worker?worker';
|
||||||
|
import htmlWorker from 'monaco-editor/esm/vs/language/html/html.worker?worker';
|
||||||
|
import jsonWorker from 'monaco-editor/esm/vs/language/json/json.worker?worker';
|
||||||
|
import tsWorker from 'monaco-editor/esm/vs/language/typescript/ts.worker?worker';
|
||||||
|
|
||||||
|
self.MonacoEnvironment = {
|
||||||
|
getWorker(_: string, label: string): Promise<Worker> | Worker {
|
||||||
|
switch (label) {
|
||||||
|
case 'json':
|
||||||
|
return new jsonWorker();
|
||||||
|
case 'css':
|
||||||
|
case 'scss':
|
||||||
|
case 'less':
|
||||||
|
return new cssWorker();
|
||||||
|
case 'html':
|
||||||
|
case 'handlebars':
|
||||||
|
case 'razor':
|
||||||
|
return new htmlWorker();
|
||||||
|
case 'typescript':
|
||||||
|
case 'javascript':
|
||||||
|
return new tsWorker();
|
||||||
|
default:
|
||||||
|
return new editorWorker();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
loader.config({ monaco });
|
||||||
|
|
||||||
export interface EditorTextAreaProps {
|
export interface EditorTextAreaProps {
|
||||||
forcedContent: string;
|
forcedContent: string;
|
||||||
actualContent: string;
|
actualContent: string;
|
||||||
setActualContent: (value: string) => void;
|
setActualContent: (value: string) => void;
|
||||||
theme: Theme;
|
|
||||||
language: string;
|
language: string;
|
||||||
fontSize: number;
|
fontSize: number;
|
||||||
readOnly: boolean;
|
readOnly: boolean;
|
||||||
resetFunction: MutableRefObject<ResetFunction | undefined>;
|
wordWrap: boolean;
|
||||||
|
resetFunctionRef: RefObject<ResetFunction | null>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function EditorTextArea({
|
export default function EditorTextArea({
|
||||||
forcedContent,
|
forcedContent,
|
||||||
actualContent,
|
actualContent,
|
||||||
setActualContent,
|
setActualContent,
|
||||||
theme,
|
|
||||||
language,
|
language,
|
||||||
fontSize,
|
fontSize,
|
||||||
readOnly,
|
readOnly,
|
||||||
resetFunction,
|
wordWrap,
|
||||||
|
resetFunctionRef,
|
||||||
}: EditorTextAreaProps) {
|
}: EditorTextAreaProps) {
|
||||||
const [editor, setEditor] = useState<editor.IStandaloneCodeEditor>();
|
const [editor, setEditor] = useState<editor.IStandaloneCodeEditor>();
|
||||||
const [monaco, setMonaco] = useState<Monaco>();
|
const [monaco, setMonaco] = useState<Monaco>();
|
||||||
const [selected, toggleSelected] = useSelectedLine();
|
const [selected, toggleSelected] = useSelectedLine();
|
||||||
const editorAreaRef = useRef<HTMLDivElement>(null);
|
const editorAreaRef = useRef<HTMLDivElement>(null);
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
useLineNumberMagic(
|
useLineNumberMagic(
|
||||||
editorAreaRef,
|
editorAreaRef,
|
||||||
@@ -63,6 +92,8 @@ export default function EditorTextArea({
|
|||||||
|
|
||||||
monaco.languages.register({ id: 'log' });
|
monaco.languages.register({ id: 'log' });
|
||||||
monaco.languages.setMonarchTokensProvider('log', logLanguage);
|
monaco.languages.setMonarchTokensProvider('log', logLanguage);
|
||||||
|
monaco.languages.register({ id: 'diff' });
|
||||||
|
monaco.languages.setMonarchTokensProvider('diff', diffLanguage);
|
||||||
|
|
||||||
monaco.languages.typescript.typescriptDefaults.setDiagnosticsOptions({
|
monaco.languages.typescript.typescriptDefaults.setDiagnosticsOptions({
|
||||||
noSemanticValidation: true,
|
noSemanticValidation: true,
|
||||||
@@ -91,12 +122,16 @@ export default function EditorTextArea({
|
|||||||
setEditor(editor);
|
setEditor(editor);
|
||||||
setMonaco(monaco);
|
setMonaco(monaco);
|
||||||
|
|
||||||
resetFunction.current = () => {
|
resetFunctionRef.current = () => {
|
||||||
editor.setValue('');
|
editor.setValue('');
|
||||||
|
if (!readOnly) {
|
||||||
editor.focus();
|
editor.focus();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (!readOnly) {
|
||||||
editor.focus();
|
editor.focus();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onChange: OnChange = useCallback(
|
const onChange: OnChange = useCallback(
|
||||||
@@ -129,7 +164,7 @@ export default function EditorTextArea({
|
|||||||
fontFamily: 'JetBrains Mono',
|
fontFamily: 'JetBrains Mono',
|
||||||
fontSize: fontSize,
|
fontSize: fontSize,
|
||||||
fontLigatures: true,
|
fontLigatures: true,
|
||||||
wordWrap: 'on',
|
wordWrap: wordWrap ? 'on' : 'off',
|
||||||
renderLineHighlight: 'none',
|
renderLineHighlight: 'none',
|
||||||
renderValidationDecorations: 'off',
|
renderValidationDecorations: 'off',
|
||||||
readOnly,
|
readOnly,
|
||||||
@@ -246,7 +281,7 @@ function useSelectedLine(): [SelectedLine, ToggleSelectedFunction] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function useLineNumberMagic(
|
function useLineNumberMagic(
|
||||||
editorAreaRef: React.RefObject<HTMLDivElement>,
|
editorAreaRef: RefObject<HTMLDivElement | null>,
|
||||||
selected: SelectedLine,
|
selected: SelectedLine,
|
||||||
toggleSelected: ToggleSelectedFunction,
|
toggleSelected: ToggleSelectedFunction,
|
||||||
forcedContent: string,
|
forcedContent: string,
|
||||||
@@ -261,13 +296,13 @@ function useLineNumberMagic(
|
|||||||
}
|
}
|
||||||
|
|
||||||
const handler = (click: MouseEvent) => {
|
const handler = (click: MouseEvent) => {
|
||||||
const target = click?.target as HTMLElement;
|
const element = document.elementFromPoint(click.x, click.y);
|
||||||
if (
|
if (
|
||||||
target &&
|
element &&
|
||||||
target.classList.contains('line-numbers') &&
|
element.classList.contains('line-numbers') &&
|
||||||
target.textContent
|
element.textContent
|
||||||
) {
|
) {
|
||||||
toggleSelected(parseInt(target.textContent), click);
|
toggleSelected(parseInt(element.textContent), click);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useRef, useState } from 'react';
|
||||||
|
import { createPortal } from 'react-dom';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import Button from './Button';
|
import Button from './Button';
|
||||||
|
|
||||||
@@ -16,16 +17,31 @@ export default function MenuButton<T extends string>({
|
|||||||
setValue,
|
setValue,
|
||||||
}: MenuButtonProps<T>) {
|
}: MenuButtonProps<T>) {
|
||||||
const [open, setOpen] = useState<boolean>(false);
|
const [open, setOpen] = useState<boolean>(false);
|
||||||
|
const [menuPosition, setMenuPosition] = useState<{
|
||||||
|
top: number;
|
||||||
|
left: number;
|
||||||
|
}>({ top: 0, left: 0 });
|
||||||
|
const buttonRef = useRef<HTMLDivElement | null>(null);
|
||||||
|
|
||||||
// close the menu when a click is made elsewhere
|
// close the menu when a click is made elsewhere
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const listener = (e: MouseEvent) => setOpen(false);
|
const listener = () => setOpen(false);
|
||||||
window.addEventListener('click', listener);
|
window.addEventListener('click', listener);
|
||||||
return () => window.removeEventListener('click', listener);
|
return () => window.removeEventListener('click', listener);
|
||||||
}, [setOpen]);
|
}, [setOpen]);
|
||||||
|
|
||||||
function toggleOpen(e: React.MouseEvent) {
|
function toggleOpen(e: React.MouseEvent) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
if (!buttonRef.current) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!open) {
|
||||||
|
const rect = buttonRef.current.getBoundingClientRect();
|
||||||
|
setMenuPosition({
|
||||||
|
top: rect.bottom + window.scrollY,
|
||||||
|
left: rect.left + window.scrollX,
|
||||||
|
});
|
||||||
|
}
|
||||||
setOpen(!open);
|
setOpen(!open);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,22 +79,35 @@ export default function MenuButton<T extends string>({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button onClick={toggleOpen}>
|
<>
|
||||||
|
<Button onClick={toggleOpen} ref={buttonRef}>
|
||||||
[<span>{label}: </span>
|
[<span>{label}: </span>
|
||||||
{value}]{open && <Menu>{items}</Menu>}
|
{value}]
|
||||||
</Button>
|
</Button>
|
||||||
|
{open &&
|
||||||
|
createPortal(
|
||||||
|
<Menu style={{ top: menuPosition.top, left: menuPosition.left }}>
|
||||||
|
{items}
|
||||||
|
</Menu>,
|
||||||
|
document.body
|
||||||
|
)}
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const Menu = styled.ul`
|
const Menu = styled.ul`
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 2em;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
background-color: ${props => props.theme.highlight};
|
background-color: ${props => props.theme.highlight};
|
||||||
max-height: calc(100vh - 2em);
|
max-height: calc(100vh - 2em);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
z-index: 20;
|
||||||
|
|
||||||
|
> li {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
> li.title {
|
> li.title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -103,6 +132,7 @@ const Menu = styled.ul`
|
|||||||
|
|
||||||
> li {
|
> li {
|
||||||
padding: 0em 1em 0.05em 1em;
|
padding: 0em 1em 0.05em 1em;
|
||||||
|
color: ${props => props.theme.primary};
|
||||||
}
|
}
|
||||||
|
|
||||||
> li:hover {
|
> li:hover {
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { get as lsGet, remove as lsRemove, set as lsSet } from 'local-storage';
|
|
||||||
import { Dispatch, SetStateAction, useEffect, useState } from 'react';
|
import { Dispatch, SetStateAction, useEffect, useState } from 'react';
|
||||||
|
|
||||||
// hook used to load "preference" settings from local storage, or fall back to a default value.
|
// hook used to load "preference" settings from local storage, or fall back to a default value.
|
||||||
@@ -8,8 +7,9 @@ export default function usePreference<T>(
|
|||||||
valid: (value: T) => boolean
|
valid: (value: T) => boolean
|
||||||
): [T, Dispatch<SetStateAction<T>>, (value: T) => boolean] {
|
): [T, Dispatch<SetStateAction<T>>, (value: T) => boolean] {
|
||||||
const [value, setValue] = useState<T>(() => {
|
const [value, setValue] = useState<T>(() => {
|
||||||
const pref = lsGet(id) as T;
|
const prefRaw = localStorage.getItem(id);
|
||||||
if (pref && valid(pref)) {
|
const pref = prefRaw !== null ? (JSON.parse(prefRaw) as T) : undefined;
|
||||||
|
if (pref !== null && pref !== undefined && valid(pref)) {
|
||||||
return pref;
|
return pref;
|
||||||
} else {
|
} else {
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
@@ -18,9 +18,9 @@ export default function usePreference<T>(
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (value === defaultValue) {
|
if (value === defaultValue) {
|
||||||
lsRemove(id);
|
localStorage.removeItem(id);
|
||||||
} else {
|
} else {
|
||||||
lsSet(id, value);
|
localStorage.setItem(id, JSON.stringify(value));
|
||||||
}
|
}
|
||||||
}, [value, id, defaultValue]);
|
}, [value, id, defaultValue]);
|
||||||
|
|
||||||
|
|||||||
1
src/style/styled.d.ts
vendored
1
src/style/styled.d.ts
vendored
@@ -2,5 +2,6 @@ import 'styled-components';
|
|||||||
import { Theme } from './themes';
|
import { Theme } from './themes';
|
||||||
|
|
||||||
declare module 'styled-components' {
|
declare module 'styled-components' {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
||||||
export interface DefaultTheme extends Theme {}
|
export interface DefaultTheme extends Theme {}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,18 @@
|
|||||||
import type { editor } from 'monaco-editor';
|
import type { editor } from 'monaco-editor';
|
||||||
|
|
||||||
|
import { CatppuccinFlavor, ColorFormat, flavors } from '@catppuccin/palette';
|
||||||
|
|
||||||
|
// @ts-expect-error Alias import added in vite.config.ts
|
||||||
import dracula from 'monaco-themes/themes/Dracula.json';
|
import dracula from 'monaco-themes/themes/Dracula.json';
|
||||||
|
// @ts-expect-error Alias import added in vite.config.ts
|
||||||
import monokai from 'monaco-themes/themes/Monokai.json';
|
import monokai from 'monaco-themes/themes/Monokai.json';
|
||||||
|
// @ts-expect-error Alias import added in vite.config.ts
|
||||||
import solarizedDark from 'monaco-themes/themes/Solarized-dark.json';
|
import solarizedDark from 'monaco-themes/themes/Solarized-dark.json';
|
||||||
|
// @ts-expect-error Alias import added in vite.config.ts
|
||||||
import solarizedLight from 'monaco-themes/themes/Solarized-light.json';
|
import solarizedLight from 'monaco-themes/themes/Solarized-light.json';
|
||||||
|
|
||||||
type Color = `#${string}`;
|
type Color = `#${string}`;
|
||||||
|
type ColorRecord = Record<string, Color>;
|
||||||
|
|
||||||
export interface Theme {
|
export interface Theme {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -13,6 +20,7 @@ export interface Theme {
|
|||||||
secondary: Color;
|
secondary: Color;
|
||||||
highlight: Color;
|
highlight: Color;
|
||||||
background: Color;
|
background: Color;
|
||||||
|
logo: Color;
|
||||||
lightOrDark: 'light' | 'dark';
|
lightOrDark: 'light' | 'dark';
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
color: Color;
|
color: Color;
|
||||||
@@ -28,6 +36,10 @@ export interface Themes {
|
|||||||
'monokai': Theme;
|
'monokai': Theme;
|
||||||
'solarized': Theme;
|
'solarized': Theme;
|
||||||
'solarized-light': Theme;
|
'solarized-light': Theme;
|
||||||
|
'latte': Theme;
|
||||||
|
'frappe': Theme;
|
||||||
|
'macchiato': Theme;
|
||||||
|
'mocha': Theme;
|
||||||
}
|
}
|
||||||
|
|
||||||
const themes: Themes = {
|
const themes: Themes = {
|
||||||
@@ -37,6 +49,7 @@ const themes: Themes = {
|
|||||||
secondary: '#010409', // canvas.inset
|
secondary: '#010409', // canvas.inset
|
||||||
highlight: '#161b22', // canvas.overlay
|
highlight: '#161b22', // canvas.overlay
|
||||||
background: '#0d1117', // canvas.default
|
background: '#0d1117', // canvas.default
|
||||||
|
logo: '#d2a8ff',
|
||||||
lightOrDark: 'dark',
|
lightOrDark: 'dark',
|
||||||
|
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
@@ -44,7 +57,8 @@ const themes: Themes = {
|
|||||||
backgroundColor: '#161b22', // canvas.overlay
|
backgroundColor: '#161b22', // canvas.overlay
|
||||||
},
|
},
|
||||||
|
|
||||||
editor: makeMonacoTheme({
|
editor: makeMonacoTheme(
|
||||||
|
{
|
||||||
base: 'vs-dark',
|
base: 'vs-dark',
|
||||||
colors: {
|
colors: {
|
||||||
primary: '#c9d1d9', // fg.default
|
primary: '#c9d1d9', // fg.default
|
||||||
@@ -64,8 +78,13 @@ const themes: Themes = {
|
|||||||
logWarning: '#d29922', // yellow.3
|
logWarning: '#d29922', // yellow.3
|
||||||
logDate: '#33B3AE', // teal.3
|
logDate: '#33B3AE', // teal.3
|
||||||
logException: '#f8e3a1', // yellow.0
|
logException: '#f8e3a1', // yellow.0
|
||||||
|
diffMeta: '#33B3AE', // teal.3
|
||||||
|
diffAddition: '#3fb950', // green.3
|
||||||
|
diffDeletion: '#f85149', // red.4
|
||||||
},
|
},
|
||||||
}),
|
},
|
||||||
|
{}
|
||||||
|
),
|
||||||
},
|
},
|
||||||
'light': {
|
'light': {
|
||||||
id: 'light',
|
id: 'light',
|
||||||
@@ -73,6 +92,7 @@ const themes: Themes = {
|
|||||||
secondary: '#022550',
|
secondary: '#022550',
|
||||||
highlight: '#36368c',
|
highlight: '#36368c',
|
||||||
background: '#ffffff',
|
background: '#ffffff',
|
||||||
|
logo: '#00a2ff',
|
||||||
lightOrDark: 'light',
|
lightOrDark: 'light',
|
||||||
|
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
@@ -80,7 +100,8 @@ const themes: Themes = {
|
|||||||
backgroundColor: '#e0f6ff',
|
backgroundColor: '#e0f6ff',
|
||||||
},
|
},
|
||||||
|
|
||||||
editor: makeMonacoTheme({
|
editor: makeMonacoTheme(
|
||||||
|
{
|
||||||
base: 'vs',
|
base: 'vs',
|
||||||
colors: {
|
colors: {
|
||||||
primary: '#000000',
|
primary: '#000000',
|
||||||
@@ -100,8 +121,13 @@ const themes: Themes = {
|
|||||||
logWarning: '#d4a72c', // yellow.3
|
logWarning: '#d4a72c', // yellow.3
|
||||||
logDate: '#136061', // teal.6
|
logDate: '#136061', // teal.6
|
||||||
logException: '#7d4e00', // yellow.6
|
logException: '#7d4e00', // yellow.6
|
||||||
|
diffMeta: '#136061', // teal.6
|
||||||
|
diffAddition: '#2da44e', // green.4
|
||||||
|
diffDeletion: '#cf222e', // red.5
|
||||||
},
|
},
|
||||||
}),
|
},
|
||||||
|
{}
|
||||||
|
),
|
||||||
},
|
},
|
||||||
'dracula': {
|
'dracula': {
|
||||||
id: 'dracula',
|
id: 'dracula',
|
||||||
@@ -109,17 +135,21 @@ const themes: Themes = {
|
|||||||
secondary: '#383a59',
|
secondary: '#383a59',
|
||||||
highlight: '#44475a',
|
highlight: '#44475a',
|
||||||
background: '#282a36',
|
background: '#282a36',
|
||||||
|
logo: '#BD93F9', // purple
|
||||||
lightOrDark: 'dark',
|
lightOrDark: 'dark',
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
color: '#586e75',
|
color: '#586e75',
|
||||||
backgroundColor: '#44475a',
|
backgroundColor: '#44475a',
|
||||||
},
|
},
|
||||||
editor: addLogColors(dracula as editor.IStandaloneThemeData, {
|
editor: addExtraColors(dracula as editor.IStandaloneThemeData, {
|
||||||
info: '#50FA7B', // green
|
logInfo: '#50FA7B', // green
|
||||||
error: '#FF5555', // red
|
logError: '#FF5555', // red
|
||||||
warning: '#FFB86C', // orange
|
logWarning: '#FFB86C', // orange
|
||||||
date: '#BD93F9', // purple
|
logDate: '#BD93F9', // purple
|
||||||
exception: '#F1FA8C', // yellow
|
logException: '#F1FA8C', // yellow
|
||||||
|
diffMeta: '#BD93F9', // purple
|
||||||
|
diffAddition: '#50FA7B', // green
|
||||||
|
diffDeletion: '#FF5555', // red
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
'monokai': {
|
'monokai': {
|
||||||
@@ -128,17 +158,21 @@ const themes: Themes = {
|
|||||||
secondary: '#222218',
|
secondary: '#222218',
|
||||||
highlight: '#49483E',
|
highlight: '#49483E',
|
||||||
background: '#272822',
|
background: '#272822',
|
||||||
|
logo: '#f92672', // red
|
||||||
lightOrDark: 'dark',
|
lightOrDark: 'dark',
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
color: '#49483E',
|
color: '#49483E',
|
||||||
backgroundColor: '#3E3D32',
|
backgroundColor: '#3E3D32',
|
||||||
},
|
},
|
||||||
editor: addLogColors(monokai as editor.IStandaloneThemeData, {
|
editor: addExtraColors(monokai as editor.IStandaloneThemeData, {
|
||||||
info: '#a6e22e', // green
|
logInfo: '#a6e22e', // green
|
||||||
error: '#f92672', // red
|
logError: '#f92672', // red
|
||||||
warning: '#fd971f', // orange
|
logWarning: '#fd971f', // orange
|
||||||
date: '#AB9DF2', // purple
|
logDate: '#AB9DF2', // purple
|
||||||
exception: '#F1FA8C', // yellow
|
logException: '#F1FA8C', // yellow
|
||||||
|
diffMeta: '#AB9DF2', // purple
|
||||||
|
diffAddition: '#a6e22e', // green
|
||||||
|
diffDeletion: '#f92672', // red
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
'solarized': {
|
'solarized': {
|
||||||
@@ -147,17 +181,21 @@ const themes: Themes = {
|
|||||||
secondary: '#073642', // base02
|
secondary: '#073642', // base02
|
||||||
highlight: '#002b36', // base03
|
highlight: '#002b36', // base03
|
||||||
background: '#002B36', // base03
|
background: '#002B36', // base03
|
||||||
|
logo: '#dc322f', // red
|
||||||
lightOrDark: 'dark',
|
lightOrDark: 'dark',
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
color: '#93a1a1', // base1
|
color: '#93a1a1', // base1
|
||||||
backgroundColor: '#073642', // base02
|
backgroundColor: '#073642', // base02
|
||||||
},
|
},
|
||||||
editor: addLogColors(solarizedDark as editor.IStandaloneThemeData, {
|
editor: addExtraColors(solarizedDark as editor.IStandaloneThemeData, {
|
||||||
info: '#268bd2', // blue
|
logInfo: '#268bd2', // blue
|
||||||
error: '#dc322f', // red
|
logError: '#dc322f', // red
|
||||||
warning: '#b58900', // yellow
|
logWarning: '#b58900', // yellow
|
||||||
date: '#2aa198', // cyan
|
logDate: '#2aa198', // cyan
|
||||||
exception: '#859900', // green
|
logException: '#859900', // green
|
||||||
|
diffMeta: '#2aa198', // cyan
|
||||||
|
diffAddition: '#859900', // green
|
||||||
|
diffDeletion: '#dc322f', // red
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
'solarized-light': {
|
'solarized-light': {
|
||||||
@@ -166,23 +204,42 @@ const themes: Themes = {
|
|||||||
secondary: '#eee8d5', // base2
|
secondary: '#eee8d5', // base2
|
||||||
highlight: '#FDF6E3', // base3
|
highlight: '#FDF6E3', // base3
|
||||||
background: '#FDF6E3', // base3
|
background: '#FDF6E3', // base3
|
||||||
|
logo: '#dc322f', // red
|
||||||
lightOrDark: 'light',
|
lightOrDark: 'light',
|
||||||
highlightedLine: {
|
highlightedLine: {
|
||||||
color: '#586e75', // base01
|
color: '#586e75', // base01
|
||||||
backgroundColor: '#eee8d5', // base2
|
backgroundColor: '#eee8d5', // base2
|
||||||
},
|
},
|
||||||
editor: addLogColors(solarizedLight as editor.IStandaloneThemeData, {
|
editor: addExtraColors(solarizedLight as editor.IStandaloneThemeData, {
|
||||||
info: '#268bd2', // blue
|
logInfo: '#268bd2', // blue
|
||||||
error: '#dc322f', // red
|
logError: '#dc322f', // red
|
||||||
warning: '#b58900', // yellow
|
logWarning: '#b58900', // yellow
|
||||||
date: '#2aa198', // cyan
|
logDate: '#2aa198', // cyan
|
||||||
exception: '#859900', // green
|
logException: '#859900', // green
|
||||||
|
diffMeta: '#2aa198', // cyan
|
||||||
|
diffAddition: '#859900', // green
|
||||||
|
diffDeletion: '#dc322f', // red
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
'latte': createCatppuccinTheme(flavors.latte),
|
||||||
|
'frappe': createCatppuccinTheme(flavors.frappe),
|
||||||
|
'macchiato': createCatppuccinTheme(flavors.macchiato),
|
||||||
|
'mocha': createCatppuccinTheme(flavors.mocha),
|
||||||
};
|
};
|
||||||
|
|
||||||
export default themes;
|
export default themes;
|
||||||
|
|
||||||
|
interface ExtraColors {
|
||||||
|
logInfo: Color;
|
||||||
|
logError: Color;
|
||||||
|
logWarning: Color;
|
||||||
|
logDate: Color;
|
||||||
|
logException: Color;
|
||||||
|
diffMeta: Color;
|
||||||
|
diffAddition: Color;
|
||||||
|
diffDeletion: Color;
|
||||||
|
}
|
||||||
|
|
||||||
interface MonacoThemeProps {
|
interface MonacoThemeProps {
|
||||||
base: 'vs' | 'vs-dark';
|
base: 'vs' | 'vs-dark';
|
||||||
colors: {
|
colors: {
|
||||||
@@ -198,16 +255,12 @@ interface MonacoThemeProps {
|
|||||||
keyword: Color;
|
keyword: Color;
|
||||||
type: Color;
|
type: Color;
|
||||||
variable: Color;
|
variable: Color;
|
||||||
logInfo: Color;
|
} & ExtraColors;
|
||||||
logError: Color;
|
|
||||||
logWarning: Color;
|
|
||||||
logDate: Color;
|
|
||||||
logException: Color;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function makeMonacoTheme(
|
export function makeMonacoTheme(
|
||||||
props: MonacoThemeProps
|
props: MonacoThemeProps,
|
||||||
|
extraColors: ColorRecord
|
||||||
): editor.IStandaloneThemeData {
|
): editor.IStandaloneThemeData {
|
||||||
const colors = Object.fromEntries(
|
const colors = Object.fromEntries(
|
||||||
Object.entries(props.colors).map(([key, color]) => [
|
Object.entries(props.colors).map(([key, color]) => [
|
||||||
@@ -216,6 +269,11 @@ export function makeMonacoTheme(
|
|||||||
])
|
])
|
||||||
) as Record<keyof MonacoThemeProps['colors'], string>;
|
) as Record<keyof MonacoThemeProps['colors'], string>;
|
||||||
|
|
||||||
|
const editorColors: ColorRecord = {
|
||||||
|
'editor.background': `#${colors.background}`,
|
||||||
|
'editor.foreground': `#${colors.primary}`,
|
||||||
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
base: props.base,
|
base: props.base,
|
||||||
inherit: true,
|
inherit: true,
|
||||||
@@ -246,37 +304,95 @@ export function makeMonacoTheme(
|
|||||||
{ token: 'warning.log', foreground: colors.logWarning },
|
{ token: 'warning.log', foreground: colors.logWarning },
|
||||||
{ token: 'date.log', foreground: colors.logDate },
|
{ token: 'date.log', foreground: colors.logDate },
|
||||||
{ token: 'exception.log', foreground: colors.logException },
|
{ token: 'exception.log', foreground: colors.logException },
|
||||||
|
{ token: 'meta.diff', foreground: colors.diffMeta },
|
||||||
|
{ token: 'addition.diff', foreground: colors.diffAddition },
|
||||||
|
{ token: 'deletion.diff', foreground: colors.diffDeletion },
|
||||||
],
|
],
|
||||||
colors: {
|
colors: { ...editorColors, ...extraColors },
|
||||||
'editor.background': `#${colors.background}`,
|
|
||||||
'editor.foreground': `#${colors.primary}`,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
interface LogColors {
|
export function addExtraColors(
|
||||||
info: Color;
|
|
||||||
error: Color;
|
|
||||||
warning: Color;
|
|
||||||
date: Color;
|
|
||||||
exception: Color;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function addLogColors(
|
|
||||||
theme: editor.IStandaloneThemeData,
|
theme: editor.IStandaloneThemeData,
|
||||||
logColors: LogColors
|
extraColors: ExtraColors
|
||||||
): editor.IStandaloneThemeData {
|
): editor.IStandaloneThemeData {
|
||||||
const colors = Object.fromEntries(
|
const colors = Object.fromEntries(
|
||||||
Object.entries(logColors).map(([key, color]) => [key, color.substring(1)])
|
Object.entries(extraColors).map(([key, color]) => [key, color.substring(1)])
|
||||||
) as Record<keyof LogColors, string>;
|
) as Record<keyof ExtraColors, string>;
|
||||||
theme.rules.push(
|
theme.rules.push(
|
||||||
...[
|
...[
|
||||||
{ token: 'info.log', foreground: colors.info },
|
{ token: 'info.log', foreground: colors.logInfo },
|
||||||
{ token: 'error.log', foreground: colors.error, fontStyle: 'bold' },
|
{ token: 'error.log', foreground: colors.logError, fontStyle: 'bold' },
|
||||||
{ token: 'warning.log', foreground: colors.warning },
|
{ token: 'warning.log', foreground: colors.logWarning },
|
||||||
{ token: 'date.log', foreground: colors.date },
|
{ token: 'date.log', foreground: colors.logDate },
|
||||||
{ token: 'exception.log', foreground: colors.exception },
|
{ token: 'exception.log', foreground: colors.logException },
|
||||||
|
{ token: 'meta.diff', foreground: colors.diffMeta },
|
||||||
|
{ token: 'addition.diff', foreground: colors.diffAddition },
|
||||||
|
{ token: 'deletion.diff', foreground: colors.diffDeletion },
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
return theme;
|
return theme;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function createCatppuccinTheme(flavor: CatppuccinFlavor): Theme {
|
||||||
|
const color = (color: ColorFormat) => color.hex as Color;
|
||||||
|
const nameToId: Record<string, string> = {
|
||||||
|
[flavors.latte.name]: 'latte',
|
||||||
|
[flavors.frappe.name]: 'frappe',
|
||||||
|
[flavors.macchiato.name]: 'macchiato',
|
||||||
|
[flavors.mocha.name]: 'mocha',
|
||||||
|
};
|
||||||
|
|
||||||
|
const editorTheme = makeMonacoTheme(
|
||||||
|
{
|
||||||
|
base: flavor.dark ? 'vs-dark' : 'vs',
|
||||||
|
colors: {
|
||||||
|
// Monaco
|
||||||
|
primary: color(flavor.colors.text),
|
||||||
|
background: color(flavor.colors.mantle),
|
||||||
|
string: color(flavor.colors.green),
|
||||||
|
comment: color(flavor.colors.overlay2),
|
||||||
|
delimiter: color(flavor.colors.overlay2),
|
||||||
|
annotation: color(flavor.colors.yellow),
|
||||||
|
constant: color(flavor.colors.peach),
|
||||||
|
number: color(flavor.colors.peach),
|
||||||
|
operator: color(flavor.colors.sky),
|
||||||
|
keyword: color(flavor.colors.mauve),
|
||||||
|
type: color(flavor.colors.yellow),
|
||||||
|
variable: color(flavor.colors.text),
|
||||||
|
|
||||||
|
// Log Files
|
||||||
|
logDate: color(flavor.colors.mauve),
|
||||||
|
logInfo: color(flavor.colors.green),
|
||||||
|
logWarning: color(flavor.colors.yellow),
|
||||||
|
logError: color(flavor.colors.red),
|
||||||
|
logException: color(flavor.colors.yellow),
|
||||||
|
|
||||||
|
// Diff Files
|
||||||
|
diffMeta: color(flavor.colors.sky),
|
||||||
|
diffAddition: color(flavor.colors.green),
|
||||||
|
diffDeletion: color(flavor.colors.red),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'editorBracketHighlight.foreground1': color(flavor.colors.overlay2),
|
||||||
|
'editorBracketHighlight.foreground2': color(flavor.colors.overlay2),
|
||||||
|
'editorBracketHighlight.foreground3': color(flavor.colors.overlay2),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: nameToId[flavor.name],
|
||||||
|
lightOrDark: flavor.dark ? 'dark' : 'light',
|
||||||
|
primary: color(flavor.colors.text),
|
||||||
|
secondary: color(flavor.colors.base),
|
||||||
|
highlight: color(flavor.colors.surface0),
|
||||||
|
background: color(flavor.colors.mantle),
|
||||||
|
highlightedLine: {
|
||||||
|
color: color(flavor.colors.rosewater),
|
||||||
|
backgroundColor: color(flavor.colors.surface2),
|
||||||
|
},
|
||||||
|
logo: color(flavor.colors.mauve),
|
||||||
|
editor: editorTheme,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
export const bytebinUrl =
|
export const bytebinUrl =
|
||||||
process.env.REACT_APP_BYTEBIN_URL || 'https://bytebin.lucko.me/';
|
import.meta.env.VITE_BYTEBIN_URL || 'https://api.pastes.dev/';
|
||||||
|
|
||||||
export const postUrl = bytebinUrl + 'post';
|
export const postUrl = bytebinUrl + 'post';
|
||||||
|
export const useQueryRouting =
|
||||||
export const languageDetectionUrl =
|
import.meta.env.VITE_USE_QUERY_ROUTING === 'true';
|
||||||
process.env.REACT_APP_LANG_DETECT_URL ||
|
|
||||||
'https://language-detection-service.pastes.dev/';
|
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
import { languageDetectionUrl } from './constants';
|
|
||||||
import { Language } from './language';
|
|
||||||
|
|
||||||
interface DetectedLanguage {
|
|
||||||
languageId: string;
|
|
||||||
confidence: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function detectLanguage(id: string): Promise<Language | null> {
|
|
||||||
try {
|
|
||||||
const resp = await fetch(languageDetectionUrl + id);
|
|
||||||
if (resp.ok) {
|
|
||||||
const results = (await resp.json()) as DetectedLanguage[];
|
|
||||||
for (const { languageId, confidence } of results) {
|
|
||||||
if (confidence > 0.5 && lookup[languageId]) {
|
|
||||||
return lookup[languageId];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (e) {}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const lookup: Record<string, Language> = {
|
|
||||||
ini: 'log', // the model seems to confidently guess log files as ini - log is the more likely option
|
|
||||||
yaml: 'yaml',
|
|
||||||
md: 'markdown',
|
|
||||||
rb: 'ruby',
|
|
||||||
kt: 'kotlin',
|
|
||||||
xml: 'xml',
|
|
||||||
js: 'javascript',
|
|
||||||
html: 'html',
|
|
||||||
ts: 'typescript',
|
|
||||||
json: 'json',
|
|
||||||
php: 'php',
|
|
||||||
py: 'python',
|
|
||||||
rs: 'rust',
|
|
||||||
sql: 'sql',
|
|
||||||
sh: 'shell',
|
|
||||||
cpp: 'cpp',
|
|
||||||
go: 'go',
|
|
||||||
scala: 'scala',
|
|
||||||
dockerfile: 'dockerfile',
|
|
||||||
java: 'java',
|
|
||||||
cs: 'csharp',
|
|
||||||
css: 'css',
|
|
||||||
groovy: 'java',
|
|
||||||
};
|
|
||||||
// missing: csv, ml, ex, pas, bat, lua, groovy, v, jl, pm, prolog, matlab, clj, f90, c, tex, coffee, ps1, hs, mm, cmake, erl, dm, dart, asm, makefile, r, swift, lisp, vba, toml, cbl
|
|
||||||
26
src/util/highlighting.ts
Normal file
26
src/util/highlighting.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
export const languages = {
|
||||||
|
text: ['plain', 'log'],
|
||||||
|
config: ['yaml', 'json', 'xml', 'ini'],
|
||||||
|
code: [
|
||||||
|
'java',
|
||||||
|
'javascript',
|
||||||
|
'typescript',
|
||||||
|
'python',
|
||||||
|
'kotlin',
|
||||||
|
'scala',
|
||||||
|
'cpp',
|
||||||
|
'csharp',
|
||||||
|
'shell',
|
||||||
|
'ruby',
|
||||||
|
'rust',
|
||||||
|
'sql',
|
||||||
|
'go',
|
||||||
|
'lua',
|
||||||
|
'swift',
|
||||||
|
'c',
|
||||||
|
],
|
||||||
|
web: ['html', 'css', 'scss', 'php', 'graphql'],
|
||||||
|
misc: ['diff', 'dockerfile', 'markdown', 'proto'],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const languageIds = Object.values(languages).flat(1);
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
export type Language =
|
|
||||||
| 'plain'
|
|
||||||
| 'plaintext'
|
|
||||||
| 'log'
|
|
||||||
| 'yaml'
|
|
||||||
| 'json'
|
|
||||||
| 'xml'
|
|
||||||
| 'ini'
|
|
||||||
| 'java'
|
|
||||||
| 'javascript'
|
|
||||||
| 'typescript'
|
|
||||||
| 'python'
|
|
||||||
| 'kotlin'
|
|
||||||
| 'scala'
|
|
||||||
| 'cpp'
|
|
||||||
| 'csharp'
|
|
||||||
| 'shell'
|
|
||||||
| 'ruby'
|
|
||||||
| 'rust'
|
|
||||||
| 'sql'
|
|
||||||
| 'go'
|
|
||||||
| 'html'
|
|
||||||
| 'css'
|
|
||||||
| 'scss'
|
|
||||||
| 'php'
|
|
||||||
| 'graphql'
|
|
||||||
| 'dockerfile'
|
|
||||||
| 'markdown'
|
|
||||||
| 'proto';
|
|
||||||
|
|
||||||
export const unknownLanguage: Language & 'plain' = 'plain';
|
|
||||||
|
|
||||||
export interface Languages {
|
|
||||||
text: Language[];
|
|
||||||
config: Language[];
|
|
||||||
code: Language[];
|
|
||||||
web: Language[];
|
|
||||||
misc: Language[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export const languages: Languages = {
|
|
||||||
text: ['plaintext', 'log'],
|
|
||||||
config: ['yaml', 'json', 'xml', 'ini'],
|
|
||||||
code: [
|
|
||||||
'java',
|
|
||||||
'javascript',
|
|
||||||
'typescript',
|
|
||||||
'python',
|
|
||||||
'kotlin',
|
|
||||||
'scala',
|
|
||||||
'cpp',
|
|
||||||
'csharp',
|
|
||||||
'shell',
|
|
||||||
'ruby',
|
|
||||||
'rust',
|
|
||||||
'sql',
|
|
||||||
'go',
|
|
||||||
],
|
|
||||||
web: ['html', 'css', 'scss', 'php', 'graphql'],
|
|
||||||
misc: ['dockerfile', 'markdown', 'proto'],
|
|
||||||
};
|
|
||||||
|
|
||||||
export const languageIds: Language[] = [
|
|
||||||
...Object.values(languages).flat(1),
|
|
||||||
unknownLanguage,
|
|
||||||
];
|
|
||||||
|
|
||||||
export function isLanguage(lang: string): lang is Language {
|
|
||||||
return languageIds.includes(lang as Language);
|
|
||||||
}
|
|
||||||
30
src/util/languages/diff.ts
Normal file
30
src/util/languages/diff.ts
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import { languages } from 'monaco-editor';
|
||||||
|
|
||||||
|
export const diffLanguage: languages.IMonarchLanguage = {
|
||||||
|
defaultToken: '',
|
||||||
|
tokenizer: {
|
||||||
|
root: [
|
||||||
|
// Meta lines (e.g., @@ -1,2 +3,4 @@)
|
||||||
|
[/@@@ +-\d+,\d+ +\+\d+,\d+ +@@@/, 'meta'],
|
||||||
|
[/^\*\*\* +\d+,\d+ +\*\*\*\*$/, 'meta'],
|
||||||
|
[/^--- +\d+,\d+ +----$/, 'meta'],
|
||||||
|
|
||||||
|
// Comments
|
||||||
|
[/Index: .*/, 'comment'],
|
||||||
|
[/^index.*/, 'comment'],
|
||||||
|
[/={3,}/, 'comment'],
|
||||||
|
[/^-{3}.*/, 'comment'],
|
||||||
|
[/^\*{3} .*/, 'comment'],
|
||||||
|
[/^\+{3}.*/, 'comment'],
|
||||||
|
[/^diff --git.*/, 'comment'],
|
||||||
|
[/^\*{15}$/, 'comment'],
|
||||||
|
|
||||||
|
// Additions
|
||||||
|
[/^\+.*/, 'addition'],
|
||||||
|
[/^!.*/, 'addition'],
|
||||||
|
|
||||||
|
// Deletions
|
||||||
|
[/^-.*/, 'deletion'],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
import { gzip } from 'pako';
|
import { gzip } from 'pako';
|
||||||
import MIMEType from 'whatwg-mimetype';
|
import MIMEType from 'whatwg-mimetype';
|
||||||
import { bytebinUrl, postUrl } from './constants';
|
import { bytebinUrl, postUrl } from './constants';
|
||||||
import { isLanguage, Language } from './language';
|
import { languageIds } from './highlighting';
|
||||||
|
|
||||||
interface LoadResultSuccess {
|
interface LoadResultSuccess {
|
||||||
ok: true;
|
ok: true;
|
||||||
content: string;
|
content: string;
|
||||||
type?: Language;
|
type?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface LoadResultFail {
|
interface LoadResultFail {
|
||||||
@@ -32,6 +32,7 @@ export async function loadFromBytebin(id: string): Promise<LoadResult> {
|
|||||||
return { ok: false };
|
return { ok: false };
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
return { ok: false };
|
return { ok: false };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -59,26 +60,18 @@ export async function saveToBytebin(
|
|||||||
return json.key;
|
return json.key;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.error(e);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function contentTypeToLanguage(
|
export function contentTypeToLanguage(contentType: string) {
|
||||||
contentType: string
|
|
||||||
): Language | undefined {
|
|
||||||
const { type, subtype: subType } = new MIMEType(contentType);
|
const { type, subtype: subType } = new MIMEType(contentType);
|
||||||
if (type === 'application' && subType === 'json') {
|
if (type === 'application' && subType === 'json') {
|
||||||
return 'json';
|
return 'json';
|
||||||
}
|
}
|
||||||
|
if (type === 'text' && languageIds.includes(subType.toLowerCase())) {
|
||||||
let subTypeLower = subType.toLowerCase();
|
return subType.toLowerCase();
|
||||||
if (subTypeLower.startsWith('x-')) {
|
|
||||||
subTypeLower = subTypeLower.substring(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (type === 'text' && isLanguage(subTypeLower)) {
|
|
||||||
return subTypeLower;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
10
src/vite-env.d.ts
vendored
Normal file
10
src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/// <reference types="vite/client" />
|
||||||
|
|
||||||
|
interface ImportMetaEnv {
|
||||||
|
readonly VITE_BYTEBIN_URL?: string;
|
||||||
|
readonly VITE_USE_QUERY_ROUTING?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ImportMeta {
|
||||||
|
readonly env: ImportMetaEnv;
|
||||||
|
}
|
||||||
26
tsconfig.app.json
Normal file
26
tsconfig.app.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||||||
|
"target": "ES2020",
|
||||||
|
"useDefineForClassFields": true,
|
||||||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||||
|
"module": "ESNext",
|
||||||
|
"skipLibCheck": true,
|
||||||
|
|
||||||
|
/* Bundler mode */
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"moduleDetection": "force",
|
||||||
|
"noEmit": true,
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
|
||||||
|
/* Linting */
|
||||||
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noUncheckedSideEffectImports": true
|
||||||
|
},
|
||||||
|
"include": ["src"]
|
||||||
|
}
|
||||||
@@ -1,27 +1,7 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"files": [],
|
||||||
"target": "es5",
|
"references": [
|
||||||
"lib": [
|
{ "path": "./tsconfig.app.json" },
|
||||||
"dom",
|
{ "path": "./tsconfig.node.json" }
|
||||||
"dom.iterable",
|
|
||||||
"esnext"
|
|
||||||
],
|
|
||||||
"allowJs": false,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"strict": true,
|
|
||||||
"forceConsistentCasingInFileNames": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"module": "esnext",
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"isolatedModules": true,
|
|
||||||
"noEmit": true,
|
|
||||||
"jsx": "react-jsx"
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"src/*.ts",
|
|
||||||
"src/*.tsx"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
24
tsconfig.node.json
Normal file
24
tsconfig.node.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
||||||
|
"target": "ES2022",
|
||||||
|
"lib": ["ES2023"],
|
||||||
|
"module": "ESNext",
|
||||||
|
"skipLibCheck": true,
|
||||||
|
|
||||||
|
/* Bundler mode */
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"moduleDetection": "force",
|
||||||
|
"noEmit": true,
|
||||||
|
|
||||||
|
/* Linting */
|
||||||
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noUncheckedSideEffectImports": true
|
||||||
|
},
|
||||||
|
"include": ["vite.config.ts"]
|
||||||
|
}
|
||||||
15
vite.config.ts
Normal file
15
vite.config.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import react from '@vitejs/plugin-react-swc';
|
||||||
|
import { fileURLToPath } from 'node:url';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
|
// https://vite.dev/config/
|
||||||
|
export default defineConfig({
|
||||||
|
plugins: [react()],
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'monaco-themes/themes': fileURLToPath(
|
||||||
|
new URL('./node_modules/monaco-themes/themes', import.meta.url)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user