@bbki.ng/site 5.4.20 → 5.4.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.4.21
4
+
5
+ ### Patch Changes
6
+
7
+ - 625ea77: remove mdx articles
8
+ - Updated dependencies [625ea77]
9
+ - @bbki.ng/components@5.2.12
10
+
3
11
  ## 5.4.20
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.4.20",
3
+ "version": "5.4.21",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  "react-router-dom": "6",
19
19
  "sonner": "1.4.0",
20
20
  "swr": "^2.2.5",
21
- "@bbki.ng/components": "5.2.11"
21
+ "@bbki.ng/components": "5.2.12"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@eslint/compat": "^1.0.0",
@@ -60,8 +60,8 @@
60
60
  "vite-plugin-mdx": "^3.5.8",
61
61
  "vite-plugin-pwa": "0.19",
62
62
  "workbox-window": "^6.3.0",
63
- "@bbki.ng/config": "1.0.3",
64
- "@bbki.ng/stylebase": "3.1.4"
63
+ "@bbki.ng/config": "1.0.4",
64
+ "@bbki.ng/stylebase": "3.1.5"
65
65
  },
66
66
  "author": "bbbottle",
67
67
  "license": "MIT",
package/src/blog/app.tsx CHANGED
@@ -5,8 +5,6 @@ import { HotKeyNav } from './components';
5
5
  import { Cover, Streaming } from './pages';
6
6
 
7
7
  import ArticlePage from '@/pages/extensions/txt/article';
8
- import Tags from '@/pages/tags';
9
- import TagsResult from '@/pages/tags/tag_result';
10
8
  import Txt from '@/pages/extensions/txt';
11
9
 
12
10
  import { usePaths } from '@/hooks';
@@ -69,9 +67,6 @@ export const App = () => {
69
67
  <Route path=":title" element={<ArticlePage />} />
70
68
  </Route>
71
69
 
72
- <Route path="tags" element={<Tags />} />
73
- <Route path="tags/:tag" element={<TagsResult />} />
74
-
75
70
  <Route path="bot" element={<BotRedirect />} />
76
71
  <Route path="login" element={<Login />} />
77
72
  <Route path="now" element={<Streaming />} />
@@ -1,32 +1,28 @@
1
- import React from "react";
2
- import { LinkList } from "@bbki.ng/components";
3
- import { BlurCover } from "@bbki.ng/components";
1
+ import React from 'react';
2
+ import { LinkList } from '@bbki.ng/components';
3
+ import { BlurCover } from '@bbki.ng/components';
4
4
 
5
- export { ImgList } from "./img_list";
5
+ export { withArticleWrapper } from './with_wrapper';
6
6
 
7
- export { withArticleWrapper } from "./with_wrapper";
7
+ export { HotKeyNav } from './hotkey_nav';
8
8
 
9
- export { HotKeyNav } from "./hotkey_nav";
9
+ export { VideoPlayer } from './video_player';
10
10
 
11
- export { VideoPlayer } from "./video_player";
11
+ export { ProgressBar } from './progress_bar';
12
12
 
13
- export { ProgressBar } from "./progress_bar";
13
+ export { BlurCover } from './blur_cover';
14
14
 
15
- export { BlurCover } from "./blur_cover";
15
+ export { ReloadPrompt } from './reload_prompt';
16
16
 
17
- export { ReloadPrompt } from "./reload_prompt";
17
+ export { Tags } from './tags';
18
18
 
19
- export { Stickers } from "./stickers";
20
-
21
- export { Tags } from "./tags";
22
-
23
- export { MySuspense } from "./my_suspense";
19
+ export { MySuspense } from './my_suspense';
24
20
 
25
21
  export const CenterLinkList = (props: any) => {
26
22
  return (
27
23
  <div className="flex justify-center relative p-16 h-full">
28
24
  <LinkList {...props} />
29
- <BlurCover status={props.loading ? "show" : "silent"} />
25
+ <BlurCover status={props.loading ? 'show' : 'silent'} />
30
26
  </div>
31
27
  );
32
28
  };
@@ -1,31 +1,15 @@
1
- import React, { ReactElement, useContext, useEffect } from "react";
2
- import { MdxArticleList } from "@/articles";
3
- import { withArticleWrapper } from "@/components";
4
- import { MdxArticle } from "@/types/articles";
5
- import { NotFound, DropZone } from "@bbki.ng/components";
6
- import { useLocation, useParams } from "react-router-dom";
7
- import { usePosts } from "@/hooks/use_posts";
8
- import { ArticlePage } from "@/components/article";
9
- import { GlobalLoadingContext } from "@/context/global_loading_state_provider";
10
- import { useFile2Post } from "@/hooks/use_file_to_post";
11
- import { useAuthed } from "@/hooks/use_authed";
12
- import { ArticleCtxMenu } from "@/components/article_ctx_menu";
13
- import { useBlogScrollReset } from "@/hooks/use_blog_scroll_pos_restoration";
14
-
15
- type TArticleMap = {
16
- [key: string]: ReactElement;
17
- };
18
-
19
- const ArticleMap: TArticleMap = {};
20
-
21
- MdxArticleList.forEach((article: unknown) => {
22
- const { meta, default: component } = article as MdxArticle;
23
- const dateStr = meta.created_at
24
- ? meta.created_at.toISOString().split("T")[0]
25
- : "";
26
- const Article = withArticleWrapper(component);
27
- ArticleMap[meta.title] = <Article {...meta} date={dateStr} />;
28
- });
1
+ import React, { ReactElement, useContext, useEffect } from 'react';
2
+ import { withArticleWrapper } from '@/components';
3
+ import { MdxArticle } from '@/types/articles';
4
+ import { NotFound, DropZone } from '@bbki.ng/components';
5
+ import { useLocation, useParams } from 'react-router-dom';
6
+ import { usePosts } from '@/hooks/use_posts';
7
+ import { ArticlePage } from '@/components/article';
8
+ import { GlobalLoadingContext } from '@/context/global_loading_state_provider';
9
+ import { useFile2Post } from '@/hooks/use_file_to_post';
10
+ import { useAuthed } from '@/hooks/use_authed';
11
+ import { ArticleCtxMenu } from '@/components/article_ctx_menu';
12
+ import { useBlogScrollReset } from '@/hooks/use_blog_scroll_pos_restoration';
29
13
 
30
14
  export default () => {
31
15
  const { title } = useParams();
@@ -41,10 +25,6 @@ export default () => {
41
25
  return <NotFound />;
42
26
  }
43
27
 
44
- if (ArticleMap[title]) {
45
- return ArticleMap[title];
46
- }
47
-
48
28
  if (isError) {
49
29
  return <NotFound />;
50
30
  }
@@ -53,7 +33,7 @@ export default () => {
53
33
  return null;
54
34
  }
55
35
 
56
- const date = posts.created_at ? posts.created_at.split("T")[0] : "";
36
+ const date = posts.created_at ? posts.created_at.split('T')[0] : '';
57
37
 
58
38
  return (
59
39
  <DropZone onDrop={reader} disabled={!isKing}>
@@ -1,16 +1,12 @@
1
- import React from "react";
2
- import { ArticleList } from "./consts";
3
- import { LinkProps, DropZone, Button } from "@bbki.ng/components";
4
- import { usePosts } from "@/hooks/use_posts";
5
- import { CenterLinkList } from "@/components";
6
- import { useAuthed } from "@/hooks/use_authed";
7
- import { useFile2Post } from "@/hooks/use_file_to_post";
8
- import { useClipboardToPost } from "@/hooks/use_clipboard_to_post";
9
- import { useLocation } from "react-router-dom";
10
- import {
11
- useBlogScroll,
12
- useBlogScrollRestoration,
13
- } from "@/hooks/use_blog_scroll_pos_restoration";
1
+ import React from 'react';
2
+ import { LinkProps, DropZone, Button } from '@bbki.ng/components';
3
+ import { usePosts } from '@/hooks/use_posts';
4
+ import { CenterLinkList } from '@/components';
5
+ import { useAuthed } from '@/hooks/use_authed';
6
+ import { useFile2Post } from '@/hooks/use_file_to_post';
7
+ import { useClipboardToPost } from '@/hooks/use_clipboard_to_post';
8
+ import { useLocation } from 'react-router-dom';
9
+ import { useBlogScroll, useBlogScrollRestoration } from '@/hooks/use_blog_scroll_pos_restoration';
14
10
 
15
11
  type TxtProps = {
16
12
  title?: string;
@@ -29,10 +25,10 @@ const Posts = (props: TxtProps) => {
29
25
  }
30
26
 
31
27
  if (isError) {
32
- return <CenterLinkList links={props.articleList || ArticleList} />;
28
+ return <CenterLinkList links={props.articleList} />;
33
29
  }
34
30
 
35
- const links = [...titleList, ...ArticleList];
31
+ const links = [...titleList];
36
32
 
37
33
  return (
38
34
  <CenterLinkList
@@ -1,46 +0,0 @@
1
- import * as 回暖 from "./warming-up.mdx";
2
- import * as 离开 from "./travel.mdx";
3
- import * as 降温 from "./cooldown.mdx";
4
- import * as 大雪 from "./fall.mdx";
5
- import * as 大寒 from "./major-cold.mdx";
6
- import * as 春雨 from "./spring-rain.mdx";
7
- import * as 春寒 from "./spring-cooldown.mdx";
8
- import * as 入夏 from "./web-burnning.mdx";
9
- import * as 六月 from "./black-river.mdx";
10
- import * as 立秋 from "./liqiu.mdx";
11
- import * as 照片 from "./photos.mdx";
12
- // import * as 小乌鸦 from "./xwy.mdx";
13
- import * as 我要看雪 from "./xwy-and-snowing.mdx";
14
- import * as 做饭 from "./cooking.mdx";
15
- import * as 堂兄 from "./cousin.mdx";
16
- import * as 红色的枪 from "./red-gun.mdx";
17
- import * as 圆粉 from "./rice-noodle.mdx";
18
- import * as 树叶 from "./leaves.mdx";
19
- import * as 惊醒 from "./woke-up.mdx";
20
- import * as 口蘑 from "./marshroom.mdx";
21
- import * as 站一下 from "./moment.mdx";
22
- import * as 干衣服 from "./cloth.mdx";
23
-
24
- export const MdxArticleList = [
25
- 离开,
26
- 降温,
27
- 大雪,
28
- 大寒,
29
- 回暖,
30
- 春雨,
31
- 春寒,
32
- 入夏,
33
- 六月,
34
- 立秋,
35
- 照片,
36
- // 小乌鸦,
37
- 做饭,
38
- 堂兄,
39
- 红色的枪,
40
- 圆粉,
41
- 树叶,
42
- 惊醒,
43
- 口蘑,
44
- 站一下,
45
- 干衣服,
46
- ];
@@ -1,43 +0,0 @@
1
- import React, { FunctionComponent, ReactElement, ReactNode } from "react";
2
- import classnames from "classnames";
3
- import { Photo } from "@/types/photo";
4
- import { Article, Img } from "@bbki.ng/components";
5
-
6
- interface imgListProps {
7
- className: string;
8
- imgList: Photo[];
9
- description?: any;
10
- beforeListRenderer?: () => ReactNode;
11
- }
12
-
13
- const BaseImgList: FunctionComponent<imgListProps> = (props: imgListProps) => {
14
- const { imgList, className, beforeListRenderer } = props;
15
-
16
- return (
17
- <div className={classnames("max-h-full no-scrollbar overflow-auto", className)}>
18
- {beforeListRenderer && <>{beforeListRenderer()}</>}
19
- {imgList.map((img, index) => {
20
- const isLast = index === imgList.length - 1;
21
- return (
22
- <div key={img.src}>
23
- <Img {...img} className={classnames({ "mb-256": !isLast })} />
24
- </div>
25
- );
26
- })}
27
- </div>
28
- );
29
- };
30
-
31
- interface TitledImageListProps extends imgListProps {
32
- title: string | ReactElement;
33
- }
34
-
35
- export const ImgList = (props: TitledImageListProps) => {
36
- const { title, description, ...rest } = props;
37
-
38
- return (
39
- <Article title={title} description={description}>
40
- <BaseImgList {...rest} />
41
- </Article>
42
- );
43
- };
@@ -1,46 +0,0 @@
1
- import React from "react";
2
- import { Img } from "@bbki.ng/components";
3
- import { NavLink, useLocation } from "react-router-dom";
4
-
5
- export const Stickers = () => {
6
- const { pathname } = useLocation();
7
-
8
- if (pathname !== "/") {
9
- return null;
10
- }
11
-
12
- return (
13
- <div className="fixed bottom-128 md:bottom-256 right-16 z-10 md:right-64">
14
- <NavLink to="projects">
15
- <Img
16
- size="large"
17
- src="https://zjh-im-res.oss-cn-shenzhen.aliyuncs.com/image/stickers/sticker-water-delivery.jpg"
18
- className="-rotate-[32.95deg] relative top-0 md:-top-64 left-64 md:left-[unset]"
19
- width={126}
20
- height={59}
21
- renderedWidth={126}
22
- />
23
- </NavLink>
24
- <NavLink to="404">
25
- <Img
26
- size="large"
27
- src="https://zjh-im-res.oss-cn-shenzhen.aliyuncs.com/image/stickers/sticker-lock.jpg"
28
- className="rotate-[10.77deg] relative left-64 md:left-[unset]"
29
- width={93}
30
- height={50}
31
- renderedWidth={93}
32
- />
33
- </NavLink>
34
- <NavLink to="blog">
35
- <Img
36
- size="large"
37
- src="https://zjh-im-res.oss-cn-shenzhen.aliyuncs.com/image/stickers/bar-code.jpg"
38
- className="-rotate-[13.37deg] relative top-64 left-64 md:left-[unset] md:right-256 md:top-128"
39
- width={176}
40
- height={60}
41
- renderedWidth={176}
42
- />
43
- </NavLink>
44
- </div>
45
- );
46
- };
@@ -1,40 +0,0 @@
1
- import { Skeleton, SkeletonColor, Table } from "@bbki.ng/components";
2
- import React from "react";
3
-
4
- const CELL_STYLE = {
5
- width: 100,
6
- maxWidth: 100,
7
- };
8
-
9
- export const TableSkeleton = (props: {
10
- headers?: string[];
11
- cellStyle?: { width: number; maxWidth: number };
12
- }) => {
13
- const { headers, cellStyle = CELL_STYLE } = props;
14
- const [name = "名字", status = "状态"] = headers || [];
15
- const renderHeader = () => {
16
- return (
17
- <>
18
- <Table.HCell style={cellStyle}>{name}</Table.HCell>
19
- <Table.HCell style={cellStyle}>{status}</Table.HCell>
20
- </>
21
- );
22
- };
23
-
24
- const renderRow = () => {
25
- return (
26
- <>
27
- <Table.Cell style={cellStyle}>
28
- <Skeleton width={84} height={16} bgColor={SkeletonColor.BLUE} />
29
- </Table.Cell>
30
- <Table.Cell style={cellStyle}>
31
- <Skeleton width={32} height={16} bgColor={SkeletonColor.GRAY} />
32
- </Table.Cell>
33
- </>
34
- );
35
- };
36
-
37
- return (
38
- <Table rowCount={3} rowRenderer={renderRow} headerRenderer={renderHeader} />
39
- );
40
- };
@@ -1,8 +0,0 @@
1
- import { MdxArticleList } from "@/articles";
2
-
3
- export const ArticleList = MdxArticleList.map(({ meta }) => {
4
- return {
5
- to: meta.title,
6
- name: meta.title,
7
- };
8
- });
@@ -1,28 +0,0 @@
1
- import React from "react";
2
- import { getAllTags } from "@/utils/tags";
3
- import { MdxArticleList } from "@/articles";
4
- import { Tags } from "@/components";
5
- import { ROUTES } from "@/constants";
6
-
7
- type tag =
8
- | {
9
- path: string;
10
- name: string;
11
- }
12
- | string;
13
-
14
- export default (props: {
15
- inline?: boolean;
16
- className?: string;
17
- withAll?: boolean;
18
- }) => {
19
- const tags = [...getAllTags(MdxArticleList)] as tag[];
20
-
21
- if (props.withAll) {
22
- tags.unshift({
23
- path: ROUTES.CONTENT,
24
- name: "全部",
25
- });
26
- }
27
- return <Tags tags={tags} {...props} />;
28
- };
@@ -1,19 +0,0 @@
1
- import React from "react";
2
- import Txt from "@/pages/extensions/txt";
3
- import { getArticleListByTag } from "@/utils/tags";
4
- import { MdxArticleList } from "@/articles";
5
- import { useParams } from "react-router-dom";
6
- import { Error as ErrorPanel } from "@bbki.ng/components";
7
-
8
- export default () => {
9
- const { tag } = useParams();
10
- if (!tag) {
11
- return <ErrorPanel error={new Error("missing tagName")} />;
12
- }
13
- return (
14
- <Txt
15
- title={`#${tag}`}
16
- articleList={getArticleListByTag(MdxArticleList, tag)}
17
- />
18
- );
19
- };