about summary refs log tree commit diff
path: root/src/view/com/search/SearchResults.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/search/SearchResults.tsx')
-rw-r--r--src/view/com/search/SearchResults.tsx150
1 files changed, 0 insertions, 150 deletions
diff --git a/src/view/com/search/SearchResults.tsx b/src/view/com/search/SearchResults.tsx
deleted file mode 100644
index 87378bba7..000000000
--- a/src/view/com/search/SearchResults.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react'
-import {StyleSheet, View} from 'react-native'
-import {observer} from 'mobx-react-lite'
-import {SearchUIModel} from 'state/models/ui/search'
-import {CenteredView, ScrollView} from '../util/Views'
-import {Pager, RenderTabBarFnProps} from 'view/com/pager/Pager'
-import {TabBar} from 'view/com/pager/TabBar'
-import {Post} from 'view/com/post/Post'
-import {ProfileCardWithFollowBtn} from 'view/com/profile/ProfileCard'
-import {
-  PostFeedLoadingPlaceholder,
-  ProfileCardFeedLoadingPlaceholder,
-} from 'view/com/util/LoadingPlaceholder'
-import {Text} from 'view/com/util/text/Text'
-import {usePalette} from 'lib/hooks/usePalette'
-import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {s} from 'lib/styles'
-
-const SECTIONS = ['Posts', 'Users']
-
-export const SearchResults = observer(function SearchResultsImpl({
-  model,
-}: {
-  model: SearchUIModel
-}) {
-  const pal = usePalette('default')
-  const {isMobile} = useWebMediaQueries()
-
-  const renderTabBar = React.useCallback(
-    (props: RenderTabBarFnProps) => {
-      return (
-        <CenteredView style={[pal.border, pal.view, styles.tabBar]}>
-          <TabBar
-            items={SECTIONS}
-            {...props}
-            key={SECTIONS.join()}
-            indicatorColor={pal.colors.link}
-          />
-        </CenteredView>
-      )
-    },
-    [pal],
-  )
-
-  return (
-    <Pager renderTabBar={renderTabBar} tabBarPosition="top" initialPage={0}>
-      <View
-        style={{
-          paddingTop: isMobile ? 42 : 50,
-        }}>
-        <PostResults key="0" model={model} />
-      </View>
-      <View
-        style={{
-          paddingTop: isMobile ? 42 : 50,
-        }}>
-        <Profiles key="1" model={model} />
-      </View>
-    </Pager>
-  )
-})
-
-const PostResults = observer(function PostResultsImpl({
-  model,
-}: {
-  model: SearchUIModel
-}) {
-  const pal = usePalette('default')
-  if (model.isPostsLoading) {
-    return (
-      <CenteredView>
-        <PostFeedLoadingPlaceholder />
-      </CenteredView>
-    )
-  }
-
-  if (model.posts.length === 0) {
-    return (
-      <CenteredView>
-        <Text type="xl" style={[styles.empty, pal.text]}>
-          No posts found for "{model.query}"
-        </Text>
-      </CenteredView>
-    )
-  }
-
-  return (
-    <ScrollView style={[pal.view]}>
-      {model.posts.map(post => (
-        <Post key={post.resolvedUri} view={post} hideError />
-      ))}
-      <View style={s.footerSpacer} />
-      <View style={s.footerSpacer} />
-      <View style={s.footerSpacer} />
-    </ScrollView>
-  )
-})
-
-const Profiles = observer(function ProfilesImpl({
-  model,
-}: {
-  model: SearchUIModel
-}) {
-  const pal = usePalette('default')
-  if (model.isProfilesLoading) {
-    return (
-      <CenteredView>
-        <ProfileCardFeedLoadingPlaceholder />
-      </CenteredView>
-    )
-  }
-
-  if (model.profiles.length === 0) {
-    return (
-      <CenteredView>
-        <Text type="xl" style={[styles.empty, pal.text]}>
-          No users found for "{model.query}"
-        </Text>
-      </CenteredView>
-    )
-  }
-
-  return (
-    <ScrollView style={pal.view}>
-      {model.profiles.map(item => (
-        <ProfileCardWithFollowBtn key={item.did} profile={item} />
-      ))}
-      <View style={s.footerSpacer} />
-      <View style={s.footerSpacer} />
-      <View style={s.footerSpacer} />
-    </ScrollView>
-  )
-})
-
-const styles = StyleSheet.create({
-  tabBar: {
-    borderBottomWidth: 1,
-    position: 'absolute',
-    zIndex: 1,
-    left: 0,
-    right: 0,
-    top: 0,
-    flexDirection: 'column',
-    alignItems: 'center',
-  },
-  empty: {
-    paddingHorizontal: 14,
-    paddingVertical: 16,
-  },
-})