Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kitsukey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Kio!
Kitsukey
Commits
8cf95522
Commit
8cf95522
authored
8 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
Fix #204
parent
c338c1b8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/web/app/desktop/tags/post-detail-sub.tag
+19
-8
19 additions, 8 deletions
src/web/app/desktop/tags/post-detail-sub.tag
src/web/app/mobile/tags/post-detail.tag
+5
-3
5 additions, 3 deletions
src/web/app/mobile/tags/post-detail.tag
with
24 additions
and
11 deletions
src/web/app/desktop/tags/post-detail-sub.tag
+
19
−
8
View file @
8cf95522
<mk-post-detail-sub title={ title }><a class="avatar-anchor" href={ CONFIG.url + '/' + post.user.username }><img class="avatar" src={ post.user.avatar_url + '?thumbnail&size=64' } alt="avatar" data-user-preview={ post.user_id }/></a>
<mk-post-detail-sub title={ title }>
<a class="avatar-anchor" href={ CONFIG.url + '/' + post.user.username }>
<img class="avatar" src={ post.user.avatar_url + '?thumbnail&size=64' } alt="avatar" data-user-preview={ post.user_id }/>
</a>
<div class="main">
<header>
<div class="left"><a class="name" href={ CONFIG.url + '/' + post.user.username } data-user-preview={ post.user_id }>{ post.user.name }</a><span class="username">@{ post.user.username }</span></div>
<div class="right"><a class="time" href={ url }>
<mk-time time={ post.created_at }></mk-time></a></div>
<div class="left">
<a class="name" href={ CONFIG.url + '/' + post.user.username } data-user-preview={ post.user_id }>{ post.user.name }</a>
<span class="username">@{ post.user.username }</span>
</div>
<div class="right">
<a class="time" href={ url }>
<mk-time time={ post.created_at }></mk-time>
</a>
</div>
</header>
<div class="body">
<div class="text" ref="text"></div>
<div class="media" if={ post.media }>
<virtual each={ file in post.media }><img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/></virtual>
<virtual each={ file in post.media }>
<img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/>
</virtual>
</div>
</div>
</div>
...
...
@@ -115,10 +126,10 @@
this.title = this.dateStringify(this.post.created_at);
this.on('mount', () => {
if (this.p.text) {
const tokens = this.analyze(this.p.text);
if (this.p
ost
.text) {
const tokens = this.analyze(this.p
ost
.text);
this.refs.text.innerHTML =
this.refs.text.innerHTML.replace('<p class="dummy"></p>',
this.compile(tokens)
)
;
this.refs.text.innerHTML = this.compile(tokens);
this.refs.text.children.forEach(e => {
if (e.tagName == 'MK-URL') riot.mount(e);
...
...
This diff is collapsed.
Click to expand it.
src/web/app/mobile/tags/post-detail.tag
+
5
−
3
View file @
8cf95522
...
...
@@ -41,8 +41,10 @@
<virtual each={ file in p.media }><img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/></virtual>
</div>
<mk-poll if={ p.poll } post={ p }></mk-poll>
</div><a class="time" href={ url }>
<mk-time time={ p.created_at } mode="detail"></mk-time></a>
</div>
<a class="time" href={ url }>
<mk-time time={ p.created_at } mode="detail"></mk-time>
</a>
<footer>
<button onclick={ reply } title="返信"><i class="fa fa-reply"></i>
<p class="count" if={ p.replies_count > 0 }>{ p.replies_count }</p>
...
...
@@ -82,7 +84,7 @@
</article>
<div class="replies">
<virtual each={ post in replies }>
<mk-post-
detail-sub
post={ post }></mk-post-
detail-sub
>
<mk-post-
preview
post={ post }></mk-post-
preview
>
</virtual>
</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