Compare commits

...

6 Commits

Author SHA1 Message Date
CrescentLeaf
a85ea56bb7 feat(wip): MessagesManager 2025-09-14 14:33:16 +08:00
CrescentLeaf
ee670f86b6 refactor: 解耦側邊列表 2025-09-14 14:33:04 +08:00
CrescentLeaf
85b48475de chore: remove useless code 2025-09-14 14:32:37 +08:00
CrescentLeaf
0af3e7a449 feat(wip): 實現 ChatPrivate 2025-09-14 14:32:24 +08:00
CrescentLeaf
2b54a7a13a chore: 統一 可選成員 寫法 2025-09-14 14:31:53 +08:00
CrescentLeaf
4cc4866db1 CHORE: FIX DENO LANGUAGE SERVER OUT OF MEMORY CAUSED BY COMPILED FRONTEND 2025-09-14 13:55:25 +08:00
13 changed files with 173 additions and 108 deletions

6
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"deno.enable": true,
"deno.disablePaths": [
"./thewhitesilk_data"
]
}

View File

@@ -1,6 +1,6 @@
export default class RecentChat {
declare id: string
declare title: string
declare avatar: string | null
declare avatar?: string
declare content: string
}

View File

@@ -1,8 +1,6 @@
import Client from "../api/Client.ts"
import data from "../Data.ts"
import ChatFragment from "./chat/ChatFragment.tsx"
import ContactsListItem from "./main/ContactsListItem.jsx"
import RecentsListItem from "./main/RecentsListItem.jsx"
import useEventListener from './useEventListener.ts'
import User from "../api/client_data/User.ts"
import RecentChat from "../api/client_data/RecentChat.ts"
@@ -17,6 +15,8 @@ import { checkApiSuccessOrSncakbar } from "./snackbar.ts"
import RegisterDialog from "./dialog/RegisterDialog.tsx"
import LoginDialog from "./dialog/LoginDialog.tsx"
import UserProfileDialog from "./dialog/UserProfileDialog.tsx"
import ContactsList from "./main/ContactsList.tsx";
import RecentsList from "./main/RecentsList.tsx";
declare global {
namespace React {
@@ -143,47 +143,15 @@ export default function App() {
<div id="SideBar">
{
// 最近聊天
<mdui-list style={{
overflowY: 'auto',
paddingRight: '10px',
display: navigationItemSelected == "Recents" ? undefined : 'none'
}}>
{
recentsList.map((v) =>
<RecentsListItem
key={v.id}
nickName={v.title}
avatar={v.avatar}
content={v.content} />
)
}
</mdui-list>
<RecentsList
display={navigationItemSelected == "Recents"}
recentsList={recentsList} />
}
{
// 联系人列表
<mdui-list style={{
overflowY: 'auto',
paddingRight: '10px',
display: navigationItemSelected == "Contacts" ? undefined : 'none'
}}>
<mdui-collapse accordion value={Object.keys(contactsMap)[0]}>
{
Object.keys(contactsMap).map((v) =>
<mdui-collapse-item key={v} value={v}>
<mdui-list-subheader slot="header">{v}</mdui-list-subheader>
{
contactsMap[v].map((v2) =>
<ContactsListItem
key={v2.id}
nickName={v2.nickname}
avatar={v2.avatar} />
)
}
</mdui-collapse-item>
)
}
</mdui-collapse>
</mdui-list>
<ContactsList
display={navigationItemSelected == "Contacts"}
contactsMap={contactsMap} />
}
</div>
{

View File

@@ -1,12 +1,8 @@
import Client from "../api/Client.ts"
import data from "../Data.ts"
import ChatFragment from "./chat/ChatFragment.tsx"
import ContactsListItem from "./main/ContactsListItem.jsx"
import RecentsListItem from "./main/RecentsListItem.jsx"
import useEventListener from './useEventListener.ts'
import User from "../api/client_data/User.ts"
import RecentChat from "../api/client_data/RecentChat.ts"
import Avatar from "./Avatar.tsx"
import * as React from 'react'
import { Dialog, NavigationBar, TextField } from "mdui"
@@ -16,6 +12,8 @@ import { checkApiSuccessOrSncakbar } from "./snackbar.ts"
import RegisterDialog from "./dialog/RegisterDialog.tsx"
import LoginDialog from "./dialog/LoginDialog.tsx"
import UserProfileDialog from "./dialog/UserProfileDialog.tsx"
import ContactsList from "./main/ContactsList.tsx"
import RecentsList from "./main/RecentsList.tsx"
declare global {
namespace React {
@@ -132,51 +130,15 @@ export default function AppMobile() {
}} id="SideBar">
{
// 最近聊天
<mdui-list style={{
overflowY: 'auto',
marginLeft: '10px',
marginRight: '10px',
width: '100%',
display: navigationItemSelected == "Recents" ? undefined : 'none'
}}>
{
recentsList.map((v) =>
<RecentsListItem
key={v.id}
nickName={v.title}
avatar={v.avatar}
content={v.content} />
)
}
</mdui-list>
<RecentsList
display={navigationItemSelected == "Recents"}
recentsList={recentsList} />
}
{
// 联系人列表
<mdui-list style={{
overflowY: 'auto',
marginLeft: '10px',
marginRight: '10px',
width: '100%',
display: navigationItemSelected == "Contacts" ? undefined : 'none'
}}>
<mdui-collapse accordion value={Object.keys(contactsMap)[0]}>
{
Object.keys(contactsMap).map((v) =>
<mdui-collapse-item key={v} value={v}>
<mdui-list-subheader slot="header">{v}</mdui-list-subheader>
{
contactsMap[v].map((v2) =>
<ContactsListItem
key={v2.id}
nickName={v2.nickname}
avatar={v2.avatar} />
)
}
</mdui-collapse-item>
)
}
</mdui-collapse>
</mdui-list>
<ContactsList
display={navigationItemSelected == "Contacts"}
contactsMap={contactsMap} />
}
</div>
</div>

View File

@@ -0,0 +1,40 @@
import User from "../../api/client_data/User.ts"
import ContactsListItem from "./ContactsListItem.jsx"
interface Args extends React.HTMLAttributes<HTMLElement> {
contactsMap: { [key: string]: User[] }
display: boolean
}
export default function ContactsList({
contactsMap,
display,
...props
}: Args) {
return <mdui-list style={{
overflowY: 'auto',
marginLeft: '10px',
marginRight: '10px',
width: '100%',
display: display ? undefined : 'none'
}} {...props}>
<mdui-collapse accordion value={Object.keys(contactsMap)[0]}>
{
Object.keys(contactsMap).map((v) =>
<mdui-collapse-item key={v} value={v}>
<mdui-list-subheader slot="header">{v}</mdui-list-subheader>
{
contactsMap[v].map((v2) =>
<ContactsListItem
key={v2.id}
nickName={v2.nickname}
avatar={v2.avatar} />
)
}
</mdui-collapse-item>
)
}
</mdui-collapse>
</mdui-list>
}

View File

@@ -0,0 +1,31 @@
import RecentChat from "../../api/client_data/RecentChat.ts"
import User from "../../api/client_data/User.ts"
import ContactsListItem from "./ContactsListItem.jsx"
import RecentsListItem from "./RecentsListItem.jsx"
interface Args extends React.HTMLAttributes<HTMLElement> {
recentsList: RecentChat[]
display: boolean
}
export default function RecentsList({
recentsList,
display,
...props
}: Args) {
return <mdui-list style={{
overflowY: 'auto',
paddingRight: '10px',
display: display ? undefined : 'none'
}}>
{
recentsList.map((v) =>
<RecentsListItem
key={v.id}
nickName={v.title}
avatar={v.avatar}
content={v.content} />
)
}
</mdui-list>
}

View File

@@ -21,6 +21,7 @@ export default class Chat {
db.exec(`
CREATE TABLE IF NOT EXISTS ${Chat.table_name} (
/* 序号 */ count INTEGER PRIMARY KEY AUTOINCREMENT,
/* 類型 */ type TEXT NOT NULL,
/* Chat ID */ id TEXT NOT NULL,
/* 標題 (群組) */ title TEXT,
/* 頭像 (群組) */ avatar BLOB,
@@ -32,7 +33,7 @@ export default class Chat {
return db
}
private static findAllBeansByCondition(condition: string, ...args: SQLInputValue[]): ChatBean[] {
protected static findAllBeansByCondition(condition: string, ...args: SQLInputValue[]): ChatBean[] {
return this.database.prepare(`SELECT * FROM ${Chat.table_name} WHERE ${condition}`).all(...args) as unknown as ChatBean[]
}
@@ -45,15 +46,25 @@ export default class Chat {
return new Chat(beans[0])
}
static create(chatId: string) {
static create(chatId: string, type: 'private' | 'group') {
const chat = new Chat(
Chat.findAllBeansByCondition(
'count = ?',
Chat.database.prepare(`INSERT INTO ${Chat.table_name} (
type,
id,
settings
title,
avatar,
user_a_id,
user_b_id,
settings,
) VALUES (?, ?);`).run(
type,
chatId,
null,
null,
null,
null,
"{}"
).lastInsertRowid
)[0]
@@ -61,10 +72,6 @@ export default class Chat {
return chat
}
static createFromTwoUsers(userA: User, userB: User) {
return this.create([userA.bean.id, userB.bean.id].sort().join('-'))
}
declare bean: ChatBean
constructor(bean: ChatBean) {
this.bean = bean

View File

@@ -1,5 +1,10 @@
export default class ChatBean {
declare type: "paivate" | "group"
declare id: string
declare title?: string
declare avatar_file_hash?: string
declare user_a_id?: string
declare user_b_id?: string
declare settings: string
[key: string]: unknown

View File

@@ -0,0 +1,26 @@
import Chat from "./Chat.ts"
import User from "./User.ts";
export default class ChatPrivate extends Chat {
static getChatIdByUsersId(userIdA: string, userIdB: string) {
return [userIdA, userIdB].sort().join('-')
}
static createForPrivate(userA: User, userB: User) {
return this.create(this.getChatIdByUsersId(userA.bean.id, userB.bean.id), 'private')
}
static findForPrivate() {
}
getTitleForPrivate(user: User, targetUser: User) {
const chat = Chat.findById(ChatPrivate.getChatIdByUsersId(user.bean.id, targetUser.bean.id))
if (chat?.bean.user_a_id == user.bean.id)
return targetUser.getNickName()
if (chat?.bean.user_b_id == user.bean.id)
return user.getNickName()
return "未知對話"
}
}

View File

@@ -0,0 +1,26 @@
import { DatabaseSync, SQLInputValue } from "node:sqlite"
import { Buffer } from "node:buffer"
import path from 'node:path'
import chalk from "chalk"
import config from "../config.ts"
import Chat from "./Chat.ts"
export default class MessagesManager {
static table_name: string = "Messages"
static database: DatabaseSync = this.init()
private static init(): DatabaseSync {
const db: DatabaseSync = new DatabaseSync(path.join(config.data_path, this.table_name + '.db'))
return db
}
static getInstance(chat: Chat) {
return new MessagesManager(chat)
}
declare chat: Chat
constructor(chat: Chat) {
this.chat = chat
}
}

View File

@@ -106,7 +106,7 @@ export default class User {
User.database.prepare(`UPDATE ${User.table_name} SET ${key} = ? WHERE count = ?`).run(value, this.bean.count)
this.bean[key] = value
}
getUserName(): string | null {
getUserName() {
return this.bean.username
}
setUserName(userName: string) {

View File

@@ -2,10 +2,10 @@ export default class UserBean {
declare count: number
declare id: string
declare password: string
declare username: string | null
declare username?: string
declare registered_time: number
declare nickname: string
declare avatar_file_hash: string | null
declare avatar_file_hash?: string
declare settings: string
[key: string]: unknown

View File

@@ -14,12 +14,6 @@ import FileManager from "./data/FileManager.ts"
import path from "node:path"
const app = express()
app.use((req, res, next) => {
const url = req.originalUrl || req.url
if (/\.m?(j|t)sx?$/.test(url))
res.setHeader('Content-Type', 'application/javascript')
next()
})
app.use('/', express.static(config.data_path + '/page_compiled'))
app.use('/uploaded_files/:hash', (req, res) => {
const hash = req.params.hash as string