feat(phase5): list channels - todo/in_progress/done columns, CRUD
This commit is contained in:
+1
-1
@@ -135,7 +135,7 @@
|
|||||||
| # | Feature | Status |
|
| # | Feature | Status |
|
||||||
|---|---------|--------|
|
|---|---------|--------|
|
||||||
| 5.1 | Calendar Channels | ✅ Events, RSVPs, month grid |
|
| 5.1 | Calendar Channels | ✅ Events, RSVPs, month grid |
|
||||||
| 5.2 | Docs Channels | Pending |
|
| 5.2 | Docs Channels | ✅ CRUD, wiki sidebar, markdown editor |
|
||||||
| 5.3 | Lists Channels | Pending |
|
| 5.3 | Lists Channels | Pending |
|
||||||
| 5.4 | Scheduling / Availability | Pending |
|
| 5.4 | Scheduling / Availability | Pending |
|
||||||
|
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ func (h *Handler) RegisterRoutes(r chi.Router) {
|
|||||||
h.registerForumRoutes(r)
|
h.registerForumRoutes(r)
|
||||||
h.registerCalendarRoutes(r)
|
h.registerCalendarRoutes(r)
|
||||||
h.registerDocRoutes(r)
|
h.registerDocRoutes(r)
|
||||||
|
h.registerListRoutes(r)
|
||||||
h.registerOverrideRoutes(r)
|
h.registerOverrideRoutes(r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,155 @@
|
|||||||
|
package channel
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"git.dustin.coffee/hobokenchicken/dumpsterChat/internal/middleware"
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
type listItem struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
ChannelID string `json:"channel_id"`
|
||||||
|
CreatorID string `json:"creator_id"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
Position int `json:"position"`
|
||||||
|
CreatedAt string `json:"created_at"`
|
||||||
|
UpdatedAt string `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ponytail: no description, assignee, due_date, parent_id, completed_at, bulk update, or filter.
|
||||||
|
// Add when someone uses lists for more than a checklist.
|
||||||
|
|
||||||
|
func (h *Handler) registerListRoutes(r chi.Router) {
|
||||||
|
r.Get("/{channelID}/items", h.ListItems)
|
||||||
|
r.Post("/{channelID}/items", h.CreateItem)
|
||||||
|
r.Patch("/items/{itemID}", h.UpdateItem)
|
||||||
|
r.Delete("/items/{itemID}", h.DeleteItem)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handler) ListItems(w http.ResponseWriter, r *http.Request) {
|
||||||
|
channelID := chi.URLParam(r, "channelID")
|
||||||
|
userID, _ := middleware.UserIDFromContext(r.Context())
|
||||||
|
if !h.checkAccess(r.Context(), w, channelID, userID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
rows, err := h.db.QueryContext(r.Context(), `
|
||||||
|
SELECT id, channel_id, creator_id, title, status, position, created_at, updated_at
|
||||||
|
FROM list_items WHERE channel_id = $1
|
||||||
|
ORDER BY position, created_at
|
||||||
|
`, channelID)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"server error"}`, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
items := make([]listItem, 0)
|
||||||
|
for rows.Next() {
|
||||||
|
var it listItem
|
||||||
|
if err := rows.Scan(&it.ID, &it.ChannelID, &it.CreatorID, &it.Title, &it.Status, &it.Position, &it.CreatedAt, &it.UpdatedAt); err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
items = append(items, it)
|
||||||
|
}
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
json.NewEncoder(w).Encode(items)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handler) CreateItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
channelID := chi.URLParam(r, "channelID")
|
||||||
|
userID, _ := middleware.UserIDFromContext(r.Context())
|
||||||
|
if !h.checkAccess(r.Context(), w, channelID, userID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var req struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
}
|
||||||
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil || req.Title == "" {
|
||||||
|
http.Error(w, `{"error":"title required"}`, http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var it listItem
|
||||||
|
err := h.db.QueryRowContext(r.Context(), `
|
||||||
|
INSERT INTO list_items (channel_id, creator_id, title)
|
||||||
|
VALUES ($1, $2, $3)
|
||||||
|
RETURNING id, channel_id, creator_id, title, status, position, created_at, updated_at
|
||||||
|
`, channelID, userID, req.Title).Scan(
|
||||||
|
&it.ID, &it.ChannelID, &it.CreatorID, &it.Title, &it.Status, &it.Position, &it.CreatedAt, &it.UpdatedAt,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"failed to create item"}`, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
json.NewEncoder(w).Encode(it)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handler) UpdateItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
itemID := chi.URLParam(r, "itemID")
|
||||||
|
userID, _ := middleware.UserIDFromContext(r.Context())
|
||||||
|
|
||||||
|
var channelID string
|
||||||
|
err := h.db.QueryRowContext(r.Context(), `SELECT channel_id FROM list_items WHERE id = $1`, itemID).Scan(&channelID)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"item not found"}`, http.StatusNotFound)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !h.checkAccess(r.Context(), w, channelID, userID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var req struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
||||||
|
http.Error(w, `{"error":"invalid request"}`, http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var it listItem
|
||||||
|
err = h.db.QueryRowContext(r.Context(), `
|
||||||
|
UPDATE list_items
|
||||||
|
SET title = COALESCE(NULLIF($2, ''), title),
|
||||||
|
status = COALESCE(NULLIF($3, ''), status),
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1
|
||||||
|
RETURNING id, channel_id, creator_id, title, status, position, created_at, updated_at
|
||||||
|
`, itemID, req.Title, req.Status).Scan(
|
||||||
|
&it.ID, &it.ChannelID, &it.CreatorID, &it.Title, &it.Status, &it.Position, &it.CreatedAt, &it.UpdatedAt,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"failed to update item"}`, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
json.NewEncoder(w).Encode(it)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handler) DeleteItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
itemID := chi.URLParam(r, "itemID")
|
||||||
|
userID, _ := middleware.UserIDFromContext(r.Context())
|
||||||
|
|
||||||
|
var channelID string
|
||||||
|
err := h.db.QueryRowContext(r.Context(), `SELECT channel_id FROM list_items WHERE id = $1`, itemID).Scan(&channelID)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"item not found"}`, http.StatusNotFound)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !h.checkAccess(r.Context(), w, channelID, userID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = h.db.ExecContext(r.Context(), `DELETE FROM list_items WHERE id = $1`, itemID)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, `{"error":"failed to delete item"}`, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusNoContent)
|
||||||
|
}
|
||||||
@@ -421,6 +421,20 @@ CREATE TABLE IF NOT EXISTS documents (
|
|||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_documents_channel ON documents(channel_id, updated_at DESC);
|
CREATE INDEX IF NOT EXISTS idx_documents_channel ON documents(channel_id, updated_at DESC);
|
||||||
|
|
||||||
|
-- List items (task lists)
|
||||||
|
CREATE TABLE IF NOT EXISTS list_items (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
channel_id UUID NOT NULL REFERENCES channels(id) ON DELETE CASCADE,
|
||||||
|
creator_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||||
|
title VARCHAR(511) NOT NULL,
|
||||||
|
status VARCHAR(16) NOT NULL DEFAULT 'todo',
|
||||||
|
position INT NOT NULL DEFAULT 0,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_list_items_channel ON list_items(channel_id, position);
|
||||||
|
|
||||||
-- Message full-text search
|
-- Message full-text search
|
||||||
ALTER TABLE messages ADD COLUMN IF NOT EXISTS search_vector tsvector;
|
ALTER TABLE messages ADD COLUMN IF NOT EXISTS search_vector tsvector;
|
||||||
CREATE INDEX IF NOT EXISTS idx_messages_search ON messages USING GIN(search_vector);
|
CREATE INDEX IF NOT EXISTS idx_messages_search ON messages USING GIN(search_vector);
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ export function ChannelList() {
|
|||||||
channel.id === activeChannelId ? 'terminal-active' : 'hover:bg-gb-bg-t text-gb-fg-s'
|
channel.id === activeChannelId ? 'terminal-active' : 'hover:bg-gb-bg-t text-gb-fg-s'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<span className="text-gb-fg-f">{channel.type === 'forum' ? '■' : channel.type === 'calendar' ? '○' : channel.type === 'docs' ? '☰' : '#'}</span>
|
<span className="text-gb-fg-f">{channel.type === 'forum' ? '■' : channel.type === 'calendar' ? '○' : channel.type === 'docs' ? '☰' : channel.type === 'list' ? '☑' : '#'}</span>
|
||||||
<span className="truncate flex-1">{channel.name}</span>
|
<span className="truncate flex-1">{channel.name}</span>
|
||||||
<span
|
<span
|
||||||
onClick={(e) => { e.stopPropagation(); setSettingsChannel({ id: channel.id, name: channel.name }); }}
|
onClick={(e) => { e.stopPropagation(); setSettingsChannel({ id: channel.id, name: channel.name }); }}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import { ThreadPanel } from "./ThreadPanel.tsx";
|
|||||||
import { ForumView } from "./ForumView.tsx";
|
import { ForumView } from "./ForumView.tsx";
|
||||||
import { CalendarView } from "./CalendarView.tsx";
|
import { CalendarView } from "./CalendarView.tsx";
|
||||||
import { DocsView } from "./DocsView.tsx";
|
import { DocsView } from "./DocsView.tsx";
|
||||||
|
import { ListView } from "./ListView.tsx";
|
||||||
import { UserProfileModal } from "./UserProfileModal.tsx";
|
import { UserProfileModal } from "./UserProfileModal.tsx";
|
||||||
import ReactMarkdown from "react-markdown";
|
import ReactMarkdown from "react-markdown";
|
||||||
import remarkGfm from "remark-gfm";
|
import remarkGfm from "remark-gfm";
|
||||||
@@ -251,12 +252,14 @@ export function ChatArea() {
|
|||||||
? `○ ${activeChannel.name}`
|
? `○ ${activeChannel.name}`
|
||||||
: activeChannel.type === 'docs'
|
: activeChannel.type === 'docs'
|
||||||
? `☰ ${activeChannel.name}`
|
? `☰ ${activeChannel.name}`
|
||||||
|
: activeChannel.type === 'list'
|
||||||
|
? `☑ ${activeChannel.name}`
|
||||||
: `# ${activeChannel.name}`
|
: `# ${activeChannel.name}`
|
||||||
: activeChannelId
|
: activeChannelId
|
||||||
? `#${activeChannelId}`
|
? `#${activeChannelId}`
|
||||||
: "[NO CHANNEL SELECTED]"}
|
: "[NO CHANNEL SELECTED]"}
|
||||||
</span>
|
</span>
|
||||||
{activeChannelId && activeChannel?.type !== 'forum' && (
|
{activeChannelId && activeChannel?.type === 'text' && (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<button
|
<button
|
||||||
onClick={() => setShowThreads((prev) => !prev)}
|
onClick={() => setShowThreads((prev) => !prev)}
|
||||||
@@ -331,6 +334,8 @@ export function ChatArea() {
|
|||||||
<CalendarView channelId={activeChannelId} channelName={activeChannel.name} />
|
<CalendarView channelId={activeChannelId} channelName={activeChannel.name} />
|
||||||
) : activeChannel && activeChannel.type === 'docs' && activeChannelId ? (
|
) : activeChannel && activeChannel.type === 'docs' && activeChannelId ? (
|
||||||
<DocsView channelId={activeChannelId} channelName={activeChannel.name} />
|
<DocsView channelId={activeChannelId} channelName={activeChannel.name} />
|
||||||
|
) : activeChannel && activeChannel.type === 'list' && activeChannelId ? (
|
||||||
|
<ListView channelId={activeChannelId} channelName={activeChannel.name} />
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
<div className="flex-1 flex flex-col min-w-0">
|
<div className="flex-1 flex flex-col min-w-0">
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ interface ChannelApiResponse {
|
|||||||
id: string;
|
id: string;
|
||||||
server_id: string;
|
server_id: string;
|
||||||
name: string;
|
name: string;
|
||||||
type: 'text' | 'voice' | 'forum' | 'calendar' | 'docs';
|
type: 'text' | 'voice' | 'forum' | 'calendar' | 'docs' | 'list';
|
||||||
category: string;
|
category: string;
|
||||||
position: number;
|
position: number;
|
||||||
slowmode_seconds: number;
|
slowmode_seconds: number;
|
||||||
@@ -29,7 +29,7 @@ const SLOWMODE_OPTIONS = [
|
|||||||
|
|
||||||
export function CreateChannelModal({ serverId, onClose }: CreateChannelModalProps) {
|
export function CreateChannelModal({ serverId, onClose }: CreateChannelModalProps) {
|
||||||
const [name, setName] = useState('');
|
const [name, setName] = useState('');
|
||||||
const [type, setType] = useState<'text' | 'voice' | 'forum' | 'calendar' | 'docs'>('text');
|
const [type, setType] = useState<'text' | 'voice' | 'forum' | 'calendar' | 'docs' | 'list'>('text');
|
||||||
const [category, setCategory] = useState('general');
|
const [category, setCategory] = useState('general');
|
||||||
const [slowmodeSeconds, setSlowmodeSeconds] = useState(0);
|
const [slowmodeSeconds, setSlowmodeSeconds] = useState(0);
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
@@ -107,7 +107,7 @@ export function CreateChannelModal({ serverId, onClose }: CreateChannelModalProp
|
|||||||
<label className="text-xs text-gb-fg-f block mb-1">TYPE:</label>
|
<label className="text-xs text-gb-fg-f block mb-1">TYPE:</label>
|
||||||
<select
|
<select
|
||||||
value={type}
|
value={type}
|
||||||
onChange={(e) => setType(e.target.value as 'text' | 'voice' | 'forum' | 'calendar' | 'docs')}
|
onChange={(e) => setType(e.target.value as 'text' | 'voice' | 'forum' | 'calendar' | 'docs' | 'list')}
|
||||||
className="terminal-input w-full"
|
className="terminal-input w-full"
|
||||||
>
|
>
|
||||||
<option value="text">text</option>
|
<option value="text">text</option>
|
||||||
@@ -115,6 +115,7 @@ export function CreateChannelModal({ serverId, onClose }: CreateChannelModalProp
|
|||||||
<option value="forum">forum</option>
|
<option value="forum">forum</option>
|
||||||
<option value="calendar">calendar</option>
|
<option value="calendar">calendar</option>
|
||||||
<option value="docs">docs</option>
|
<option value="docs">docs</option>
|
||||||
|
<option value="list">list</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -0,0 +1,97 @@
|
|||||||
|
import { useEffect, useState } from 'react';
|
||||||
|
import { api } from '../lib/api.ts';
|
||||||
|
|
||||||
|
interface ListItem {
|
||||||
|
id: string;
|
||||||
|
channel_id: string;
|
||||||
|
creator_id: string;
|
||||||
|
title: string;
|
||||||
|
status: string;
|
||||||
|
position: number;
|
||||||
|
created_at: string;
|
||||||
|
updated_at: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ListViewProps {
|
||||||
|
channelId: string;
|
||||||
|
channelName: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ListView({ channelId, channelName }: ListViewProps) {
|
||||||
|
const [items, setItems] = useState<ListItem[]>([]);
|
||||||
|
const [newTitle, setNewTitle] = useState('');
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
api.get<ListItem[]>(`/channels/${channelId}/items`)
|
||||||
|
.then((data) => setItems(Array.isArray(data) ? data : []));
|
||||||
|
}, [channelId]);
|
||||||
|
|
||||||
|
const addItem = async () => {
|
||||||
|
if (!newTitle.trim()) return;
|
||||||
|
const it = await api.post<ListItem>(`/channels/${channelId}/items`, { title: newTitle });
|
||||||
|
setItems((prev) => [...prev, it]);
|
||||||
|
setNewTitle('');
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleStatus = async (it: ListItem) => {
|
||||||
|
const next = it.status === 'done' ? 'todo' : it.status === 'in_progress' ? 'done' : 'in_progress';
|
||||||
|
const updated = await api.patch<ListItem>(`/channels/items/${it.id}`, { status: next });
|
||||||
|
setItems((prev) => prev.map((x) => x.id === updated.id ? updated : x));
|
||||||
|
};
|
||||||
|
|
||||||
|
const deleteItem = async (id: string) => {
|
||||||
|
await api.delete(`/channels/items/${id}`);
|
||||||
|
setItems((prev) => prev.filter((x) => x.id !== id));
|
||||||
|
};
|
||||||
|
|
||||||
|
const todo = items.filter((x) => x.status === 'todo');
|
||||||
|
const inProgress = items.filter((x) => x.status === 'in_progress');
|
||||||
|
const done = items.filter((x) => x.status === 'done');
|
||||||
|
|
||||||
|
const col = (list: ListItem[], label: string, color: string) => (
|
||||||
|
<div className="flex-1 min-w-0 flex flex-col">
|
||||||
|
<div className={`text-xs font-bold font-mono p-2 ${color} border-b border-gb-bg-t`}>
|
||||||
|
{label} ({list.length})
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 overflow-y-auto p-1 space-y-1">
|
||||||
|
{list.map((it) => (
|
||||||
|
<div key={it.id} className="bg-gb-bg-t rounded p-2 text-xs font-mono group">
|
||||||
|
<div className="flex items-start gap-2">
|
||||||
|
<button
|
||||||
|
onClick={() => toggleStatus(it)}
|
||||||
|
className={`mt-0.5 shrink-0 w-4 h-4 rounded border ${it.status === 'done' ? 'bg-gb-orange border-gb-orange' : 'border-gb-fg-f'}`}
|
||||||
|
>
|
||||||
|
{it.status === 'done' && <span className="flex items-center justify-center text-gb-bg text-[10px]">✓</span>}
|
||||||
|
</button>
|
||||||
|
<span className={`flex-1 ${it.status === 'done' ? 'line-through text-gb-fg-f' : 'text-gb-fg'}`}>{it.title}</span>
|
||||||
|
<button onClick={() => deleteItem(it.id)} className="text-gb-fg-f hover:text-gb-red opacity-0 group-hover:opacity-100">✕</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full bg-gb-bg">
|
||||||
|
<div className="terminal-border border-t-0 border-x-0 px-3 py-2 text-gb-fg-s flex items-center justify-between">
|
||||||
|
<span>☑ {channelName}</span>
|
||||||
|
</div>
|
||||||
|
<div className="p-3 border-b border-gb-bg-t font-mono text-xs flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
value={newTitle}
|
||||||
|
onChange={(e) => setNewTitle(e.target.value)}
|
||||||
|
onKeyDown={(e) => e.key === 'Enter' && addItem()}
|
||||||
|
placeholder="add item..."
|
||||||
|
className="terminal-input flex-1"
|
||||||
|
/>
|
||||||
|
<button onClick={addItem} disabled={!newTitle.trim()} className="px-2 py-1 bg-gb-orange text-gb-bg disabled:opacity-50">[ADD]</button>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 flex min-h-0">
|
||||||
|
{col(todo, 'TODO', 'text-gb-fg')}
|
||||||
|
{col(inProgress, 'DOING', 'text-gb-blue')}
|
||||||
|
{col(done, 'DONE', 'text-gb-fg-f')}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import { create } from 'zustand';
|
import { create } from 'zustand';
|
||||||
import { api } from '../lib/api.ts';
|
import { api } from '../lib/api.ts';
|
||||||
|
|
||||||
export type ChannelType = 'text' | 'voice' | 'forum' | 'calendar' | 'docs';
|
export type ChannelType = 'text' | 'voice' | 'forum' | 'calendar' | 'docs' | 'list';
|
||||||
|
|
||||||
export interface Channel {
|
export interface Channel {
|
||||||
id: string;
|
id: string;
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"root":["./src/App.tsx","./src/main.tsx","./src/components/BotManager.tsx","./src/components/CalendarView.tsx","./src/components/ChannelList.tsx","./src/components/ChannelSettingsModal.tsx","./src/components/ChatArea.tsx","./src/components/CommandManager.tsx","./src/components/ConversationList.tsx","./src/components/CreateChannelModal.tsx","./src/components/CreateServerModal.tsx","./src/components/DMChat.tsx","./src/components/DocsView.tsx","./src/components/EmojiPicker.tsx","./src/components/ForumView.tsx","./src/components/GiphyPicker.tsx","./src/components/InstallPrompt.tsx","./src/components/InviteModal.tsx","./src/components/JoinServer.tsx","./src/components/JoinServerModal.tsx","./src/components/Layout.tsx","./src/components/LoginForm.tsx","./src/components/MemberContextMenu.tsx","./src/components/MemberList.tsx","./src/components/MemberRoleAssign.tsx","./src/components/MentionDropdown.tsx","./src/components/MentionPopup.tsx","./src/components/MessageSearch.tsx","./src/components/MobileDrawer.tsx","./src/components/MobileNav.tsx","./src/components/NewConversationModal.tsx","./src/components/ReactionBar.tsx","./src/components/ReplyBar.tsx","./src/components/RoleManager.tsx","./src/components/ServerBar.tsx","./src/components/ServerSettingsModal.tsx","./src/components/SlashCommandPopup.tsx","./src/components/ThemeToggle.tsx","./src/components/ThreadListPanel.tsx","./src/components/ThreadPanel.tsx","./src/components/TypingIndicator.tsx","./src/components/UserProfileModal.tsx","./src/components/UserSettings.tsx","./src/components/VoiceChannel.tsx","./src/components/VoiceControls.tsx","./src/components/VoicePanel.tsx","./src/lib/api.ts","./src/lib/usePermissions.ts","./src/stores/auth.ts","./src/stores/bot.ts","./src/stores/channel.ts","./src/stores/conversation.ts","./src/stores/layout.ts","./src/stores/member.ts","./src/stores/message.ts","./src/stores/moderation.ts","./src/stores/permissions.ts","./src/stores/presence.ts","./src/stores/push.ts","./src/stores/role.ts","./src/stores/server.ts","./src/stores/thread.ts","./src/stores/typing.ts","./src/stores/voice.ts","./src/stores/ws.ts"],"version":"5.9.3"}
|
{"root":["./src/App.tsx","./src/main.tsx","./src/components/BotManager.tsx","./src/components/CalendarView.tsx","./src/components/ChannelList.tsx","./src/components/ChannelSettingsModal.tsx","./src/components/ChatArea.tsx","./src/components/CommandManager.tsx","./src/components/ConversationList.tsx","./src/components/CreateChannelModal.tsx","./src/components/CreateServerModal.tsx","./src/components/DMChat.tsx","./src/components/DocsView.tsx","./src/components/EmojiPicker.tsx","./src/components/ForumView.tsx","./src/components/GiphyPicker.tsx","./src/components/InstallPrompt.tsx","./src/components/InviteModal.tsx","./src/components/JoinServer.tsx","./src/components/JoinServerModal.tsx","./src/components/Layout.tsx","./src/components/ListView.tsx","./src/components/LoginForm.tsx","./src/components/MemberContextMenu.tsx","./src/components/MemberList.tsx","./src/components/MemberRoleAssign.tsx","./src/components/MentionDropdown.tsx","./src/components/MentionPopup.tsx","./src/components/MessageSearch.tsx","./src/components/MobileDrawer.tsx","./src/components/MobileNav.tsx","./src/components/NewConversationModal.tsx","./src/components/ReactionBar.tsx","./src/components/ReplyBar.tsx","./src/components/RoleManager.tsx","./src/components/ServerBar.tsx","./src/components/ServerSettingsModal.tsx","./src/components/SlashCommandPopup.tsx","./src/components/ThemeToggle.tsx","./src/components/ThreadListPanel.tsx","./src/components/ThreadPanel.tsx","./src/components/TypingIndicator.tsx","./src/components/UserProfileModal.tsx","./src/components/UserSettings.tsx","./src/components/VoiceChannel.tsx","./src/components/VoiceControls.tsx","./src/components/VoicePanel.tsx","./src/lib/api.ts","./src/lib/usePermissions.ts","./src/stores/auth.ts","./src/stores/bot.ts","./src/stores/channel.ts","./src/stores/conversation.ts","./src/stores/layout.ts","./src/stores/member.ts","./src/stores/message.ts","./src/stores/moderation.ts","./src/stores/permissions.ts","./src/stores/presence.ts","./src/stores/push.ts","./src/stores/role.ts","./src/stores/server.ts","./src/stores/thread.ts","./src/stores/typing.ts","./src/stores/voice.ts","./src/stores/ws.ts"],"version":"5.9.3"}
|
||||||
Reference in New Issue
Block a user