@@ -11,19 +11,23 @@ import { ICON_CMD } from '@/config'
1111import { THREAD } from '@/constant'
1212import { pluggedIn , buildLog } from '@/utils'
1313
14+ import MasonryCards from '@/components/MasonryCards'
1415import FiltersMenu from '@/components/FiltersMenu'
1516// import TagsBar from '@/containers/unit/TagsBar'
1617
1718import Sticky from '@/components/Sticky'
1819import { PublishButton } from '@/components/Buttons'
1920import Maybe from '@/components/Maybe'
20- import PagedContents from '@/components/PagedContents'
21+ // import PagedContents from '@/components/PagedContents'
2122import ContentFilter from '@/components/ContentFilter'
2223
2324import type { TStore } from './store'
2425
26+ import Card from './Card'
2527import PublishNote from './PublishNote'
28+
2629import filtersItems from './fakeFiltersItems'
30+ import fakeJobItems from './fakeJobItems'
2731
2832import {
2933 Wrapper ,
@@ -39,11 +43,11 @@ import {
3943 inAnchor ,
4044 outAnchor ,
4145 onFilterSelect ,
42- onUserSelect ,
43- onPreview ,
46+ // onUserSelect,
47+ // onPreview,
4448 onContentCreate ,
4549 // onTagSelect,
46- onPageChange ,
50+ // onPageChange,
4751} from './logic'
4852
4953/* eslint-disable-next-line */
@@ -58,12 +62,12 @@ const JobsThreadContainer: React.FC<TProps> = ({ jobsThread: store }) => {
5862
5963 const {
6064 pagedJobsData,
61- curView,
65+ // curView,
66+ // activeJob,
67+ // curCommunity,
6268 filtersData,
6369 // activeTagData,
64- activeJob,
6570 accountInfo,
66- curCommunity,
6771 showPublishNote,
6872 showFilterBar,
6973 } = store
@@ -85,8 +89,13 @@ const JobsThreadContainer: React.FC<TProps> = ({ jobsThread: store }) => {
8589 />
8690 </ FilterWrapper >
8791 </ Maybe >
92+ < MasonryCards >
93+ { fakeJobItems . map ( ( item ) => (
94+ < Card key = { item . id } item = { item } />
95+ ) ) }
96+ </ MasonryCards >
8897
89- < PagedContents
98+ { /* <PagedContents
9099 data={pagedJobsData}
91100 community={curCommunity.raw}
92101 thread={THREAD.JOB}
@@ -96,7 +105,7 @@ const JobsThreadContainer: React.FC<TProps> = ({ jobsThread: store }) => {
96105 onPreview={onPreview}
97106 onAuthorSelect={onUserSelect}
98107 onPageChange={onPageChange}
99- />
108+ /> */ }
100109 </ LeftPart >
101110
102111 < RightPart >
0 commit comments