mirror of
https://github.com/usememos/memos.git
synced 2025-11-11 09:55:15 +08:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import api from "../helpers/api";
|
|
import Only from "./common/OnlyWhen";
|
|
import { showDialog } from "./Dialog";
|
|
import "../less/about-site-dialog.less";
|
|
|
|
interface Props extends DialogProps {}
|
|
|
|
const AboutSiteDialog: React.FC<Props> = ({ destroy }: Props) => {
|
|
const [profile, setProfile] = useState<Profile>();
|
|
|
|
useEffect(() => {
|
|
try {
|
|
api.getSystemStatus().then(({ profile }) => {
|
|
setProfile(profile);
|
|
});
|
|
} catch (error) {
|
|
setProfile({
|
|
mode: "dev",
|
|
version: "0.0.0",
|
|
});
|
|
}
|
|
}, []);
|
|
|
|
const handleCloseBtnClick = () => {
|
|
destroy();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="dialog-header-container">
|
|
<p className="title-text">
|
|
<span className="icon-text">🤠</span>About <b>Memos</b>
|
|
</p>
|
|
<button className="btn close-btn" onClick={handleCloseBtnClick}>
|
|
<img className="icon-img" src="/icons/close.svg" />
|
|
</button>
|
|
</div>
|
|
<div className="dialog-content-container">
|
|
<p>
|
|
Memos is an open source, quickly self-hosted alternative to <a href="https://flomoapp.com">flomo</a>.
|
|
</p>
|
|
<br />
|
|
<p>
|
|
<a href="https://github.com/justmemos/memos">🏗 Source code</a>, and built by <a href="https://github.com/boojack">Steven 🐯</a>.
|
|
</p>
|
|
<Only when={profile !== undefined}>
|
|
<p className="updated-time-text">
|
|
version: <span className="pre-text">{profile?.version}</span> 🎉
|
|
</p>
|
|
</Only>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default function showAboutSiteDialog(): void {
|
|
showDialog(
|
|
{
|
|
className: "about-site-dialog",
|
|
},
|
|
AboutSiteDialog
|
|
);
|
|
}
|