nonebot2/website/src/pages/index.tsx

165 lines
5.7 KiB
TypeScript
Raw Normal View History

2021-12-03 16:21:24 +08:00
import clsx from "clsx";
import React from "react";
import CodeBlock from "@theme/CodeBlock";
import Layout from "@theme/Layout";
2021-12-03 16:21:24 +08:00
import { Hero, HeroFeature } from "../components/Hero";
import type { Feature } from "../components/Hero";
import styles from "../css/index.module.css";
export default function Home() {
2021-12-24 19:02:11 +08:00
const firstFeature: Feature = {
title: "Develop",
tagline: "fast to code",
description: "仅需两步,即可开始编写你的机器人",
2021-12-24 19:02:11 +08:00
} as const;
const secondFeatures = [
2021-12-03 16:21:24 +08:00
{
title: "Plugin",
tagline: "build bot with plugins",
description: "插件化开发,模块化管理",
},
{
title: "Multi-Platform",
tagline: "write once run everywhere",
description: "支持多种平台,以及多样的事件响应方式",
},
2021-12-24 19:02:11 +08:00
] as const;
const thirdFeatures = [
{
title: "Async",
tagline: "asynchronous first",
description: "异步优先式开发,提高运行效率",
},
{
title: "DI",
tagline: "bultin dependency injection system",
description: "简单清晰的依赖注入系统,内置依赖函数减少用户代码",
},
2021-12-03 16:21:24 +08:00
];
return (
<Layout>
<Hero />
2021-12-03 16:21:24 +08:00
<div className="max-w-7xl mx-auto py-16 px-4 text-center md:px-16">
2021-12-24 19:02:11 +08:00
<HeroFeature {...firstFeature}>
2021-12-03 16:21:24 +08:00
<CodeBlock
title="Installation"
className={clsx("inline-block language-bash", styles.homeCodeBlock)}
>
{[
"$ pip install nb-cli",
"$ nb",
// "d8b db .d88b. d8b db d88888b d8888b. .d88b. d888888b",
// "888o 88 .8P Y8. 888o 88 88' 88 `8D .8P Y8. `~~88~~'",
// "88V8o 88 88 88 88V8o 88 88ooooo 88oooY' 88 88 88",
// "88 V8o88 88 88 88 V8o88 88~~~~~ 88~~~b. 88 88 88",
// "88 V888 `8b d8' 88 V888 88. 88 8D `8b d8' 88",
// "VP V8P `Y88P' VP V8P Y88888P Y8888P' `Y88P' YP",
"[?] What do you want to do?",
" Create a New Project",
" Run the Bot in Current Folder",
" Create a New NoneBot Plugin",
" List All Published Plugins",
" ...",
].join("\n")}
</CodeBlock>
</HeroFeature>
</div>
<div className="max-w-7xl mx-auto py-16 px-4 md:grid md:grid-cols-2 md:gap-6 md:px-16">
<div className="pb-16 text-center md:pb-0">
2021-12-24 19:02:11 +08:00
<HeroFeature {...secondFeatures[0]}>
2021-12-03 16:21:24 +08:00
<CodeBlock
title
className={clsx(
"inline-block language-python",
styles.homeCodeBlock
)}
>
{[
"import nonebot",
"# 加载一个插件",
'nonebot.load_plugin("path.to.your.plugin")',
"# 从文件夹加载插件",
'nonebot.load_plugins("plugins")',
"# 从配置文件加载多个插件",
'nonebot.load_from_json("plugins.json")',
'nonebot.load_from_toml("pyproject.toml")',
].join("\n")}
</CodeBlock>
</HeroFeature>
</div>
<div className="text-center">
2021-12-24 19:02:11 +08:00
<HeroFeature {...secondFeatures[1]}>
2021-12-03 16:21:24 +08:00
<CodeBlock
title
className={clsx(
"inline-block language-python",
styles.homeCodeBlock
)}
>
{[
"import nonebot",
"# OneBot",
2021-12-24 19:02:11 +08:00
"from nonebot.adapters.onebot.v11 import Adapter as OneBotAdapter",
2021-12-03 16:21:24 +08:00
"# 钉钉",
2021-12-24 19:02:11 +08:00
"from nonebot.adapters.ding import Adapter as DingAdapter",
2021-12-03 16:21:24 +08:00
"driver = nonebot.get_driver()",
2021-12-24 19:02:11 +08:00
"driver.register_adapter(OneBotAdapter)",
"driver.register_adapter(DingAdapter)",
].join("\n")}
</CodeBlock>
</HeroFeature>
</div>
</div>
<div className="max-w-7xl mx-auto py-16 px-4 md:grid md:grid-cols-2 md:gap-6 md:px-16">
<div className="pb-16 text-center md:pb-0">
<HeroFeature {...thirdFeatures[0]}>
<CodeBlock
title
className={clsx(
"inline-block language-python",
styles.homeCodeBlock
)}
>
{[
"from nonebot import on_message",
"# 注册一个消息响应器",
"matcher = on_message()",
"# 注册一个消息处理器",
"# 并重复收到的消息",
"@matcher.handle()",
"async def handler(event: Event) -> None:",
" await matcher.send(event.get_message())",
].join("\n")}
</CodeBlock>
</HeroFeature>
</div>
<div className="text-center">
<HeroFeature {...thirdFeatures[1]}>
<CodeBlock
title
className={clsx(
"inline-block language-python",
styles.homeCodeBlock
)}
>
{[
"from nonebot import on_command",
"# 注册一个命令响应器",
'matcher = on_command("help", alias={"帮助"})',
"# 注册一个命令处理器",
"# 通过依赖注入获得命令名以及参数",
"@matcher.handle()",
"async def handler(cmd = Command(), arg = CommandArg()) -> None:",
" await matcher.send()",
2021-12-03 16:21:24 +08:00
].join("\n")}
</CodeBlock>
</HeroFeature>
</div>
</div>
</Layout>
);
}