From fc12e0e3fb07da3da8ac15c6aaaaf3ab1b32e2cc Mon Sep 17 00:00:00 2001 From: email Date: Sun, 3 Apr 2022 22:14:43 +0800 Subject: [PATCH] chore: update readme --- README.md | 4 +++ web/src/components/AboutSiteDialog.tsx | 4 --- web/src/components/StarHistoryDialog.tsx | 40 ------------------------ web/src/less/star-history-dialog.less | 11 ------- 4 files changed, 4 insertions(+), 55 deletions(-) delete mode 100644 web/src/components/StarHistoryDialog.tsx delete mode 100644 web/src/less/star-history-dialog.less diff --git a/README.md b/README.md index f5810682..6f7c749d 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ Making sure that you are in charge of your data and more customizations. The default user account is `guest` with password `secret`. +## 🌟 Star history + +[![Star History Chart](https://api.star-history.com/svg?repos=justmemos/memos&type=Date)](https://star-history.com/#justmemos/memos&Date) + --- Just enjoy it. diff --git a/web/src/components/AboutSiteDialog.tsx b/web/src/components/AboutSiteDialog.tsx index b28918b4..b2429634 100644 --- a/web/src/components/AboutSiteDialog.tsx +++ b/web/src/components/AboutSiteDialog.tsx @@ -1,7 +1,6 @@ import { useEffect, useState } from "react"; import utils from "../helpers/utils"; import { showDialog } from "./Dialog"; -import showStarHistoryDialog from "./StarHistoryDialog"; import "../less/about-site-dialog.less"; interface Props extends DialogProps {} @@ -45,9 +44,6 @@ const AboutSiteDialog: React.FC = ({ destroy }: Props) => { issues.


- - Star History -

Last updated on {lastUpdatedAt} 🎉

diff --git a/web/src/components/StarHistoryDialog.tsx b/web/src/components/StarHistoryDialog.tsx deleted file mode 100644 index f4abd908..00000000 --- a/web/src/components/StarHistoryDialog.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { showDialog } from "./Dialog"; -import "../less/star-history-dialog.less"; - -interface Props extends DialogProps {} - -const StarHistoryDialog: React.FC = ({ destroy }: Props) => { - const handleCloseBtnClick = () => { - destroy(); - }; - - return ( - <> -
-

- ⭐️ - Star History -

- -
-
- -
- - ); -}; - -export default function showStarHistoryDialog(): void { - showDialog( - { - className: "star-history-dialog", - }, - StarHistoryDialog - ); -} diff --git a/web/src/less/star-history-dialog.less b/web/src/less/star-history-dialog.less deleted file mode 100644 index 31c25768..00000000 --- a/web/src/less/star-history-dialog.less +++ /dev/null @@ -1,11 +0,0 @@ -@import "./mixin.less"; - -.star-history-dialog { - > .dialog-container { - @apply w-auto; - - > .dialog-content-container { - @apply overflow-x-scroll; - } - } -}