Skip to content

Commit

Permalink
feat(post): set tooltips for post elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Octobug committed Dec 15, 2023
1 parent 92abc96 commit d97a748
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 7 deletions.
42 changes: 39 additions & 3 deletions .vitepress/theme/components/PostElements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
:class="$style.elementList"
hidden
>
<span :class="$style.elementItem">
<span
:class="$style.elementItem"
:tooltip="moment(post.datetime).format('dddd')"
>
{{ moment(post.datetime).format("LL") }}
</span>
<Dot
Expand All @@ -14,14 +17,18 @@
<span
v-if="post.location"
:class="$style.elementItem"
:tooltip="post.community"
>
{{ post.location }}
</span>
<Dot
v-if="post.readingTime"
:class="$style.dot"
/>
<span :class="$style.elementItem">
<span
:class="$style.elementItem"
:tooltip="`${post.words} words`"
>
{{ post.readingTime }}
</span>
</div>
Expand Down Expand Up @@ -67,11 +74,12 @@ onContentUpdated(() => {
.elementList {
border-top: 1px dashed var(--vp-c-divider);
padding-top: 0.5rem;
padding-bottom: 2rem;
margin-top: 0.5rem;
margin-bottom: 2rem;
font-size: 0.88rem;
white-space: nowrap;
overflow-x: scroll;
overflow-y: hidden;
/* Internet Explorer 10+ */
-ms-overflow-style: none;
Expand All @@ -88,6 +96,34 @@ onContentUpdated(() => {
color: var(--vp-c-text-3);
}
span.elementItem {
position: relative;
display: inline-block;
}
span.elementItem[tooltip]:after {
content: attr(tooltip);
position: absolute;
bottom: -80%;
left: 50%;
transform: translateX(-50%);
font-size: 10px;
line-height: 16px;
color: var(--vp-c-text-3);
background-color: var(--vp-c-default-soft);
border: 1px solid var(--vp-c-default-3);
border-radius: 3px;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
padding: 0 4px;
opacity: 0;
transition: 0.25s all;
}
span.elementItem[tooltip]:hover:after {
opacity: 1;
transition-delay: 0.5s;
}
.dot {
color: var(--vp-c-text-2);
margin: 0.5rem;
Expand Down
4 changes: 3 additions & 1 deletion .vitepress/theme/posts.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ export default createContentLoader(extendedConfig.mdfilePatterns, {
includeSrc: true,
transform(rawData) {
return rawData.map(p => {
const rt = readingTime(p.src || "");
p.frontmatter.title = extractTile(p.src || "");
p.frontmatter.datetime = new Date(p.frontmatter.date);
p.frontmatter.readingTime = readingTime(p.src || "").text;
p.frontmatter.readingTime = rt.text;
p.frontmatter.words = rt.words;
p.url = withBaseURL(p.url.replace("/README", ""));
return p;
}).sort((a, b) => {
Expand Down
7 changes: 6 additions & 1 deletion .vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ a.VPSocialLink[aria-label="mastodon"]>svg {
margin-bottom: 12px;
}

/* hack for post elements's margin-bottom */
.main div[name="post-elements"] + * {
margin-top: 0;
}

.main img {
border-radius: 0.5rem;
box-shadow: 0 0.5rem 0.8rem var(--ct-c-shadow);
Expand All @@ -209,7 +214,7 @@ a.VPSocialLink[aria-label="mastodon"]>svg {
box-shadow: none;
}

/* image alt as subtitle */
/* image subtitle */
.main figcaption {
margin-top: -1.3rem;
margin-bottom: 1.5rem;
Expand Down
1 change: 1 addition & 0 deletions posts/an-https-issue-on-adas/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
date: 2019-12-18
location: 深圳 创维半导体设计大厦西座
community: 粤海街道高新区社区
sort: Computer Science
tags:
- Network
Expand Down
3 changes: 2 additions & 1 deletion posts/non-original-content-copyright-issues/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
date: 2023-12-14
location: 深圳 西乡街道财富港大厦
location: 深圳 财富港大厦
community: 西乡街道渔业社区
sort: Law
tags:
- Copyright
Expand Down
3 changes: 2 additions & 1 deletion posts/pilot/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
date: 2019-06-02
location: 深圳 西乡街道财富港大厦
location: 深圳 财富港大厦
community: 西乡街道渔业社区
sort: Miscellaneous
tags:
- Small Talk
Expand Down

0 comments on commit d97a748

Please sign in to comment.