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
10042991
Commit
10042991
authored
3 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Update post page content
parent
0b2b19e3
No related branches found
No related tags found
1 merge request
!504
Lbudginas/#404 part1 create post properties on post page
Pipeline
#112268
failed
2 months ago
Stage: build
Stage: test
Stage: test-report-aggregate
Stage: cleanup
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/post/PostPageContent.tsx
+15
-1
15 additions, 1 deletion
components/post/PostPageContent.tsx
with
15 additions
and
1 deletion
components/post/PostPageContent.tsx
+
15
−
1
View file @
10042991
import
{
useState
}
from
"
react
"
;
import
{
useRouter
}
from
"
next/router
"
;
import
{
useRouter
}
from
"
next/router
"
;
import
Link
from
"
next/link
"
;
import
Link
from
"
next/link
"
;
import
usePostContent
from
"
@/hooks/api/postPage/usePostContent
"
;
import
usePostContent
from
"
@/hooks/api/postPage/usePostContent
"
;
import
PostContentCard
from
"
./PostContentCard
"
;
import
PostContentCard
from
"
./PostContentCard
"
;
import
PostPropertiesTable
from
"
./PostPropertiesTable
"
;
const
HIVE_BLOG_URL
=
"
https://hive.blog
"
;
const
HIVE_BLOG_URL
=
"
https://hive.blog
"
;
const
PEAKD_URL
=
"
https://peakd.com
"
;
const
PEAKD_URL
=
"
https://peakd.com
"
;
...
@@ -17,6 +19,10 @@ const PostPageContent = () => {
...
@@ -17,6 +19,10 @@ const PostPageContent = () => {
const
{
data
}
=
usePostContent
(
accountName
,
permlink
);
const
{
data
}
=
usePostContent
(
accountName
,
permlink
);
const
[
isPropertiesOpen
,
setIsPropertiesOpen
]
=
useState
(
false
);
const
handlePropertiesToggle
=
()
=>
setIsPropertiesOpen
(
!
isPropertiesOpen
);
if
(
!
data
)
return
;
if
(
!
data
)
return
;
const
{
title
,
author
}
=
data
;
const
{
title
,
author
}
=
data
;
...
@@ -55,7 +61,15 @@ const PostPageContent = () => {
...
@@ -55,7 +61,15 @@ const PostPageContent = () => {
</
div
>
</
div
>
</
div
>
</
div
>
<
PostContentCard
data
=
{
data
}
/>
<
PostContentCard
isPropertiesOpen
=
{
isPropertiesOpen
}
handlePropertiesToggle
=
{
handlePropertiesToggle
}
data
=
{
data
}
/>
<
PostPropertiesTable
isPropertiesOpen
=
{
isPropertiesOpen
}
data
=
{
data
}
/>
</
div
>
</
div
>
);
);
};
};
...
...
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