HashtagView View
File: src/views/HashtagView.vue
Overview
Functions
loadPosts()
No description available.
Parameters: None
Returns: Unknown
const loadPosts = async () =>loadMorePosts()
No description available.
Parameters: None
Returns: Unknown
const loadMorePosts = async () =>goBack()
No description available.
Parameters: None
Returns: Unknown
const goBack = () =>handleReply(post: TimelinePost)
No description available.
Parameters:
post: TimelinePost
Returns: Unknown
const handleReply = (post: TimelinePost) =>handleFavorite(postId: string)
No description available.
Parameters:
postId: string
Returns: Unknown
const handleFavorite = async (postId: string) =>handleReblog(postId: string)
No description available.
Parameters:
postId: string
Returns: Unknown
const handleReblog = async (postId: string) =>handleBookmark(postId: string)
No description available.
Parameters:
postId: string
Returns: Unknown
const handleBookmark = async (postId: string) =>handleDelete(postId: string)
No description available.
Parameters:
postId: string
Returns: Unknown
const handleDelete = async (postId: string) =>handleUserClick(user: any)
No description available.
Parameters:
user: any
Returns: Unknown
const handleUserClick = (user: any) =>handleHashtagClick(tag: string)
No description available.
Parameters:
tag: string
Returns: Unknown
const handleHashtagClick = (tag: string) =>handleShowConversation(postId: string)
No description available.
Parameters:
postId: string
Returns: Unknown
const handleShowConversation = (postId: string) =>Interfaces
Props
No description available.
interface Props {
hashtag: string
currentView?: string
viewType?: string
}Vue Component
This is a Vue component file.
Source Code Insights
File Size: 7367 characters Lines of Code: 319 Imports: 9
Usage Example
import { HashtagView } from '@/views/HashtagView'
// Example usage
loadPosts()This documentation was automatically generated from the source code.
