Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Block Explorer UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Block Explorer UI
Commits
8cce4600
Commit
8cce4600
authored
2 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Add new Posts tab to account page
parent
75a815d9
No related branches found
No related tags found
1 merge request
!524
Lbudginas/#424 add new tab on account page
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/account/tabs/AccountOperationViewTabs.tsx
+15
-2
15 additions, 2 deletions
components/account/tabs/AccountOperationViewTabs.tsx
components/account/tabs/posts/PostsTabContent.tsx
+22
-0
22 additions, 0 deletions
components/account/tabs/posts/PostsTabContent.tsx
with
37 additions
and
2 deletions
components/account/tabs/AccountOperationViewTabs.tsx
+
15
−
2
View file @
8cce4600
import
{
Tabs
,
TabsList
,
TabsTrigger
}
from
"
@/components/ui/tabs
"
;
import
OperationTabContent
from
"
./operations/OperationsTabContent
"
;
import
CommentsTabContent
from
"
./comments/CommentsTabContent
"
;
import
PostsTabContent
from
"
./posts/PostsTabContent
"
;
import
{
useTabs
}
from
"
@/contexts/TabsContext
"
;
interface
AccountOperationViewTabs
{
liveDataEnabled
:
boolean
;
...
...
@@ -9,9 +11,14 @@ interface AccountOperationViewTabs {
const
AccountOperationViewTabs
:
React
.
FC
<
AccountOperationViewTabs
>
=
({
liveDataEnabled
,
})
=>
{
const
{
activeTab
,
setActiveTab
}
=
useTabs
();
const
handleTabChange
=
(
value
:
string
)
=>
setActiveTab
(
value
);
return
(
<
Tabs
defaultValue
=
"operations"
value
=
{
activeTab
}
onValueChange
=
{
handleTabChange
}
className
=
"flex-col w-full"
>
<
TabsList
className
=
"flex w-full justify-start"
>
...
...
@@ -22,6 +29,12 @@ const AccountOperationViewTabs: React.FC<AccountOperationViewTabs> = ({
>
Operations
</
TabsTrigger
>
<
TabsTrigger
className
=
"rounded"
value
=
"posts"
>
Posts
</
TabsTrigger
>
<
TabsTrigger
className
=
"rounded"
value
=
"comments"
...
...
@@ -31,9 +44,9 @@ const AccountOperationViewTabs: React.FC<AccountOperationViewTabs> = ({
</
div
>
</
TabsList
>
<
OperationTabContent
liveDataEnabled
=
{
liveDataEnabled
}
/>
<
PostsTabContent
/>
<
CommentsTabContent
/>
</
Tabs
>
);
};
export
default
AccountOperationViewTabs
;
This diff is collapsed.
Click to expand it.
components/account/tabs/posts/PostsTabContent.tsx
0 → 100644
+
22
−
0
View file @
8cce4600
import
CommentsPermlinkSearch
from
"
@/components/home/searches/CommentPermlinkSearch
"
;
import
CommentPermlinkSearchResults
from
"
@/components/home/searches/searchesResults/CommentPermlinkSearchResults
"
;
import
{
Card
,
CardContent
,
CardHeader
,
CardTitle
}
from
"
@/components/ui/card
"
;
import
{
TabsContent
}
from
"
@/components/ui/tabs
"
;
const
PostsTabContent
=
()
=>
{
return
(
<
TabsContent
value
=
"posts"
>
<
Card
className
=
"mb-4"
>
<
CardHeader
>
<
CardTitle
>
Post search
</
CardTitle
>
</
CardHeader
>
<
CardContent
>
<
CommentsPermlinkSearch
/>
</
CardContent
>
</
Card
>
<
CommentPermlinkSearchResults
/>
</
TabsContent
>
);
};
export
default
PostsTabContent
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment