Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions packages/common/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export * from './tan-query/events'

// Explore
export * from './tan-query/collection/useExploreContent'
export * from './tan-query/explore/useBestSelling'

// Lineups
export * from './tan-query/lineups/useFeed'
Expand Down Expand Up @@ -99,12 +98,10 @@ export * from './tan-query/tracks/useTrackFileInfo'
export * from './tan-query/tracks/useUpdateTrack'
export * from './tan-query/tracks/useRemixedTracks'
export * from './tan-query/tracks/useRecommendedTracks'
export * from './tan-query/tracks/useRecentPremiumTracks'
export * from './tan-query/tracks/useSuggestedPlaylistTracks'
export * from './tan-query/tracks/useFeelingLuckyTrack'
export * from './tan-query/tracks/useRecentlyPlayedTracks'
export * from './tan-query/tracks/useRecentlyCommentedTracks'
export * from './tan-query/tracks/useMostSharedTracks'

// Users
export * from './tan-query/users/useUpdateProfile'
Expand Down
99 changes: 0 additions & 99 deletions packages/common/src/api/tan-query/explore/useBestSelling.ts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/common/src/api/tan-query/queryKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const QUERY_KEYS = {
userTracksByHandle: 'userTracksByHandle',
userPlaylists: 'userPlaylists',
userAlbums: 'userAlbums',
bestSellingItems: 'bestSellingItems',
collection: 'collection',
collections: 'collections',
collectionByPermalink: 'collectionByPermalink',
Expand Down Expand Up @@ -70,8 +69,6 @@ export const QUERY_KEYS = {
purchasersCount: 'purchasersCount',
remixedTracks: 'remixedTracks',
recommendedTracks: 'recommendedTracks',
mostSharedTracks: 'mostSharedTracks',
recentPremiumTracks: 'recentPremiumTracks',
mutedUsers: 'mutedUsers',
salesAggregate: 'salesAggregate',
usdcTransactionsCount: 'usdcTransactionsCount',
Expand Down
71 changes: 0 additions & 71 deletions packages/common/src/api/tan-query/tracks/useMostSharedTracks.ts

This file was deleted.

71 changes: 0 additions & 71 deletions packages/common/src/api/tan-query/tracks/useRecentPremiumTracks.ts

This file was deleted.

10 changes: 1 addition & 9 deletions packages/common/src/messages/explore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,15 @@ export const exploreMessages = {
featuredPlaylists: 'Community Playlists',
featuredRemixContests: 'Featured Remix Contests',
forYou: 'For You',
recentlyListedForSale: 'Recently Listed for Sale',
bestSelling: 'Best Selling',
artistSpotlight: 'Artist Spotlight',
labelSpotlight: 'Label Spotlight',
exploreByMood: (category?: string) =>
`Explore${category ? ` ${category}` : ''} by Mood`,
bestOfAudius: 'Best of Audius',
viewAll: 'View All',
layoutOptionsLabel: 'View As',
feelingLucky: 'Feeling Lucky?',
imFeelingLucky: "I'm Feeling Lucky",
recentlyPlayed: 'Recently Played',
activeDiscussions: 'Active Discussions',
mostShared: 'Most Shared Tracks This Week',
undergroundTrending: 'Underground Trending',
trendingPlaylists: 'Trending Playlists',
verified: 'Verified',
quickSearch: 'Quick Search',
downloadsAvailable: 'Downloads Available'
verified: 'Verified'
}
11 changes: 1 addition & 10 deletions packages/mobile/src/screens/explore-screen/collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { ComponentType } from 'react'
import type { ImageSourcePropType } from 'react-native'
import type { SvgProps } from 'react-native-svg'

import { IconCart, IconPlaylists, IconRemix } from '@audius/harmony-native'
import { IconCart, IconPlaylists } from '@audius/harmony-native'
import IconCassette from 'app/assets/images/iconCassette.svg'

export type ExploreCollection = {
Expand Down Expand Up @@ -33,15 +33,6 @@ export const PREMIUM_TRACKS: ExploreCollection = {
icon: IconCart
}

export const DOWNLOADS_AVAILABLE: ExploreCollection = {
title: 'Downloads Available',
description: 'Popular tracks with downloads you can use in your own tracks.',
gradientColors: ['#FF00F5', '#00D1FF'],
gradientAngle: 135,
shadowColor: 'rgba(196,81,193)',
shadowOpacity: 0.25,
icon: IconRemix
}

export const TRENDING_PLAYLISTS: ExploreCollection = {
title: 'Trending Playlists',
Expand Down

This file was deleted.

Loading
Loading