Compare commits

..

No commits in common. "687abb318e2878b819f71a5c37902a1753fcad9c" and "f3138d70f5b632aead921ffe308bb283f8115f57" have entirely different histories.

10 changed files with 1123 additions and 4235 deletions

View file

@ -1,17 +0,0 @@
module.exports = {
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": "warn",
"react/prop-types": 0,
"no-undef": 0,
},
};

5304
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -40,16 +40,12 @@
"unified": "^10.1.2"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.1",
"vite": "^4.3.0"
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"tailwindcss": "^3.1.8",
"vite": "^3.1.0"
}
}

View file

@ -48,15 +48,14 @@ function CodeBlock(props) {
function RenderMarkdown(props) {
return (
<ReactMarkdown
children={props.children}
remarkPlugins={[remarkMath, remarkGfm]}
rehypePlugins={[rehypeMathjax]}
components={{
code: CodeBlock,
pre: Pre,
}}
>
{props.children}
</ReactMarkdown>
/>
);
}

View file

@ -71,6 +71,7 @@ let en = {
Search: "Search",
NoNotesFound: "No notes found",
LocalNote: "Local",
PublicNote: "Public",
Menu: "Menu",
};

View file

@ -73,7 +73,7 @@ let eo = {
Search: "Serĉo",
NoNotesFound: "Neniuj notoj trovitaj",
LocalNote: "Loka",
PublishNote: "Publika",
PublicNote: "Publika",
Menu: "Menuo",
};

View file

@ -73,7 +73,7 @@ let es = {
Search: "Buscar",
NoNotesFound: "No se encontraron notas",
LocalNote: "Local",
PublishNote: "Pública",
PublicNote: "Pública",
Menu: "Menú",
};

View file

@ -73,7 +73,7 @@ let ja = {
Search: "検索",
NoNotesFound: "メモが見つかりません",
LocalNote: "地元",
PublishNote: "公共",
PublicNote: "公共",
Menu: "メニュー",
};

View file

@ -71,7 +71,7 @@ let zh = {
Search: "搜索",
NoNotesFound: "找不到笔记",
LocalNote: "当地的",
PublishNote: "民众",
PublicNote: "民众",
Menu: "菜单",
};

View file

@ -65,6 +65,8 @@ function CreateNote() {
const [text, setText] = useState(localStorage.getItem("NoteText"));
const [name, setName] = useState(localStorage.getItem("NoteName"));
const [date, setDate] = useState(Date.now());
async function previewChange(val) {
let md = await unified()
.use(remarkGfm)
@ -104,7 +106,7 @@ function CreateNote() {
localStorage.setItem("NoteName", data.name);
});
socket.on("roomJoined", () => {
socket.on("roomJoined", (data) => {
nameUpdate(localStorage.getItem("NoteName"), true);
textUpdate(localStorage.getItem("NoteText"), true);
});
@ -122,6 +124,7 @@ function CreateNote() {
id="preview"
onClick={(val) => {
setText(localStorage.getItem("NoteText"));
setDate(Date.now());
setPreview(val.target.checked);
}}
/>