temp fix channel list

This commit is contained in:
Ren Amamiya 2023-04-24 19:57:40 +07:00
parent 8b80a08a59
commit c88d540b88
2 changed files with 12 additions and 5 deletions

View File

@ -1,12 +1,20 @@
import { ChannelListItem } from '@components/channels/channelListItem';
import { CreateChannelModal } from '@components/channels/createChannelModal';
import { channelsAtom } from '@stores/channel';
import { channelsAtom, defaultChannelsAtom } from '@stores/channel';
import { useAtomValue } from 'jotai';
export default function ChannelList() {
const list = useAtomValue(channelsAtom);
let atom;
if (typeof window !== 'undefined') {
atom = channelsAtom;
} else {
atom = defaultChannelsAtom;
}
const list: any = useAtomValue(atom);
return (
<div className="flex flex-col gap-px">

View File

@ -1,13 +1,12 @@
import ActiveLink from '@components/activeLink';
import ChannelList from '@components/channels/channelList';
import ChatList from '@components/chats/chatList';
import { Disclosure } from '@headlessui/react';
import { Bonfire, NavArrowUp, PeopleTag } from 'iconoir-react';
import { Suspense, lazy } from 'react';
import { Suspense } from 'react';
import Skeleton from 'react-loading-skeleton';
const ChannelList = lazy(() => import('@components/channels/channelList'));
export default function Navigation() {
return (
<div className="relative flex h-full flex-col gap-1 overflow-hidden pt-3">