Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
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
Dima Krasner
Sharkey
Commits
08d0c46d
Commit
08d0c46d
authored
7 years ago
by
こぴなたみぽ
Browse files
Options
Downloads
Patches
Plain Diff
wip
parent
aafc5847
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/mobile/views/friends-maker.vue
+126
-0
126 additions, 0 deletions
src/web/app/mobile/views/friends-maker.vue
src/web/app/mobile/views/timeline.vue
+1
-1
1 addition, 1 deletion
src/web/app/mobile/views/timeline.vue
with
127 additions
and
1 deletion
src/web/app/mobile/
tags/init-following.tag
→
src/web/app/mobile/
views/friends-maker.vue
+
126
−
0
View file @
08d0c46d
<mk-init-following>
<
template
>
<div
class=
"mk-friends-maker"
>
<p
class=
"title"
>
気になるユーザーをフォロー:
</p>
<div
class=
"users"
v-if=
"!fetching && users.length > 0"
>
<template
each=
{ users }>
...
...
@@ -9,122 +10,117 @@
<p
class=
"fetching"
v-if=
"fetching"
>
%fa:spinner .pulse .fw%読み込んでいます
<mk-ellipsis/></p>
<a
class=
"refresh"
@
click=
"refresh"
>
もっと見る
</a>
<button
class=
"close"
@
click=
"close"
title=
"閉じる"
>
%fa:times%
</button>
<style lang="stylus" scoped>
:scope
display block
background #fff
border-radius 8px
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
> .title
margin 0
padding 8px 16px
font-size 1em
font-weight bold
color #888
> .users
overflow-x scroll
-webkit-overflow-scrolling touch
white-space nowrap
padding 16px
background #eee
> mk-user-card
&:not(:last-child)
margin-right 16px
> .empty
margin 0
padding 16px
text-align center
color #aaa
> .fetching
margin 0
padding 16px
text-align center
color #aaa
> [data-fa]
margin-right 4px
> .refresh
display block
margin 0
padding 8px 16px
text-align right
font-size 0.9em
color #999
> .close
cursor pointer
display block
position absolute
top 0
right 0
z-index 1
margin 0
padding 0
font-size 1.2em
color #999
border none
outline none
background transparent
&:hover
color #555
&:active
color #222
> [data-fa]
padding 10px
</style>
<script lang="typescript">
this.mixin('api');
this.users = null;
this.fetching = true;
this.limit = 6;
this.page = 0;
this.on('mount', () => {
this.fetch();
});
this.fetch = () => {
this.update({
fetching: true,
users: null
});
this.api('users/recommendation', {
</div>
</template>
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
;
export
default
Vue
.
extend
({
data
()
{
return
{
users
:
[],
fetching
:
true
,
limit
:
6
,
page
:
0
};
},
mounted
()
{
this
.
fetch
();
},
methods
:
{
fetch
()
{
this
.
fetching
=
true
;
this
.
users
=
[];
this
.
$root
.
$data
.
os
.
api
(
'
users/recommendation
'
,
{
limit
:
this
.
limit
,
offset
:
this
.
limit
*
this
.
page
}).
then
(
users
=>
{
this.fetching = false
this.users = users
this.update({
fetching: false,
users: users
});
this
.
fetching
=
false
;
this
.
users
=
users
;
});
};
this.refresh = () => {
},
refresh
()
{
if
(
this
.
users
.
length
<
this
.
limit
)
{
this
.
page
=
0
;
}
else
{
this
.
page
++
;
}
this
.
fetch
();
};
this.close = () => {
this.$destroy();
};
</script>
</mk-init-following>
}
}
});
</
script
>
<
style
lang=
"stylus"
scoped
>
.mk-friends-maker
background #fff
border-radius 8px
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
> .title
margin 0
padding 8px 16px
font-size 1em
font-weight bold
color #888
> .users
overflow-x scroll
-webkit-overflow-scrolling touch
white-space nowrap
padding 16px
background #eee
> mk-user-card
&:not(:last-child)
margin-right 16px
> .empty
margin 0
padding 16px
text-align center
color #aaa
> .fetching
margin 0
padding 16px
text-align center
color #aaa
> [data-fa]
margin-right 4px
> .refresh
display block
margin 0
padding 8px 16px
text-align right
font-size 0.9em
color #999
> .close
cursor pointer
display block
position absolute
top 0
right 0
z-index 1
margin 0
padding 0
font-size 1.2em
color #999
border none
outline none
background transparent
&:hover
color #555
&:active
color #222
> [data-fa]
padding 10px
</
style
>
This diff is collapsed.
Click to expand it.
src/web/app/mobile/views/timeline.vue
+
1
−
1
View file @
08d0c46d
<
template
>
<div
class=
"mk-timeline"
>
<mk-friends-maker
v-if=
"alone"
/>
<mk-posts
ref=
"timeline"
:posts=
"posts"
>
<mk-friends-maker
v-if=
"alone"
slot=
"head"
/>
<div
class=
"init"
v-if=
"fetching"
>
%fa:spinner .pulse%%i18n:common.loading%
</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