From a8bbaa06c7266c73f6a71b5e9223c11c96995947 Mon Sep 17 00:00:00 2001 From: Ansh Date: Tue, 27 Jun 2023 08:11:05 -0700 Subject: [APP-705] Metrics revamp pt2 (#896) * export track function from analytics.tsx * fix create account tracking * fix tracking sign in * add custom feed events * fix type errors * refactor create post event * add profile follow & unfollow events * refactor PostsFeedSliceModel into its own file * refactor PostThreadItemModel into its own file * reorganize code a lil bit * refactor post-thread-item to use post-feed-item model under the hood * add post events * add post reply tracking * track custom feed load more * track list subscribe and unsubscribe --- src/view/com/post-thread/PostThread.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/view/com/post-thread/PostThread.tsx') diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 610b96507..51f63dbb3 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -9,10 +9,8 @@ import { } from 'react-native' import {AppBskyFeedDefs} from '@atproto/api' import {CenteredView, FlatList} from '../util/Views' -import { - PostThreadModel, - PostThreadItemModel, -} from 'state/models/content/post-thread' +import {PostThreadModel} from 'state/models/content/post-thread' +import {PostThreadItemModel} from 'state/models/content/post-thread-item' import { FontAwesomeIcon, FontAwesomeIconStyle, -- cgit 1.4.1