article-detail.vue
6.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<template>
<Layout class="article-detail">
<RecycleScrollReveal :size="10" ref="scroll" @scroll="onScroll" :offset="2000" :on-fetch="onFetch" :manual-init="true">
<template v-slot:eternalTop>
<ArticleDeatilLong
v-if="articleInfo.sort == 2"
ref="detailLong"
:data="articleInfo"
:scroll-top="scrollTop"
:list-title="listTitle"
:scroll-to="scrollTo"
:share="share"
:pos-id="posId"
@on-show-more="onShowMore"
@on-follow="onFollowAuthor">
</ArticleDeatilLong>
<ArticleDeatilNote
v-else
ref="detailNote"
:data="articleInfo"
:scroll-top="scrollTop"
:list-title="listTitle"
:scroll-to="scrollTo"
:share="share"
:pos-id="posId"
@on-show-more="onShowMore"
@on-follow="onFollowAuthor">
</ArticleDeatilNote>
</template>
<template class="article-item" #item="{ data }">
<ArticleItem2
type="topic"
:index="data.index"
:data="data.data"
:width="colWidthForTwo"
:share="share"
:article-id="data.data.articleId"
:pos-id="posId">
<template v-if="data.data.dataType == 2">
<ArticleResource :data="data.data"></ArticleResource>
</template>
</ArticleItem2>
</template>
</RecycleScrollReveal>
<MoreActionSheet transfer ref="moreAction" @on-follow="onFollowAuthor" @on-delete="onDelete"></MoreActionSheet>
</Layout>
</template>
<script>
import {get} from 'lodash';
import YAS from 'utils/yas-constants';
import ArticleDeatilLong from './components/detail/article-long';
import ArticleDeatilNote from './components/detail/article-note';
import ArticleItem2 from './components/article/article-item2';
import MoreActionSheet from './components/detail/more-action-sheet';
import {mapState as mapYohoState, createNamespacedHelpers} from 'vuex';
const {mapState, mapActions, mapMutations} = createNamespacedHelpers('article');
export default {
name: 'ArticleDetailPage',
props: {
share: Boolean,
setShareData: Function
},
data() {
return {
id: 0,
scrollTop: 0,
scrolling: false,
article: {},
listTitle: '',
colWidthForTwo: 370,
posId: YAS.scene.newsDetail
};
},
activated() {
if (this.scrollTop && this.yoho.direction === 'back') {
this.$refs.scroll.$el.scrollTop = this.scrollTop;
}
if (+this.$route.params.id !== this.id) {
this.id = +this.$route.params.id;
this.init();
}
},
async serverPrefetch() {
this.id = parseInt(this.$route.params.id, 10);
if (this.id > 0) {
return this.fetchArticleList({
articleId: this.id,
singleDetail: 'Y',
thumb: true
});
}
return;
},
mounted() {
this.colWidthForTwo = Math.floor(this.$el.offsetWidth / 2);
},
computed: {
...mapYohoState(['yoho']),
...mapState(['articleSingleDetail']),
articleInfo() {
if (this.articleSingleDetail.thumb) {
return this.articleSingleDetail;
} else {
return this.article;
}
}
},
methods: {
...mapActions(['fetchArticleList', 'fetchDetailRecommendAricles']),
...mapMutations(['CHANGE_AUTHOR_FOLLOW']),
init() {
this.recommendArticles = {};
this.syncServiceArticleDetail();
},
onScroll({scrollTop}) {
this.scrollTop = scrollTop;
this.scrolling = true;
this._scTimer && clearTimeout(this._scTimer);
this._scTimer = setTimeout(() => {
this.scrolling = false;
}, 400);
},
syncServiceArticleDetail() {
const articleId = parseInt(this.id, 10);
return this.fetchArticleList({
articleId,
singleDetail: 'Y'
}).then(res => {
const emptyData = {
articleId,
empty: true
};
let article = {};
if (res.code === 200) {
article = get(res, 'data.detailList[0]', {...emptyData});
} else if (res.code === 403) {
article = {...emptyData};
} else {
article = {...emptyData, emptyTip: res.message};
}
this.article = article;
if (this.$refs.scroll) {
this.listTitle = '';
setTimeout(() => {
this.$refs.scroll.init();
}, 500);
}
if (this.share && this.setShareData) {
this.setShareData(get(res, 'data.detailList[0]'));
}
});
},
async onFetch() {
if (!this.id || this.fetching) {
return [];
}
// 推荐文章接口一次性提供,不支持分页
if (this.recommendArticles[this.id]) {
return false;
}
this.fetching = true;
let list = [];
const result = await this.fetchDetailRecommendAricles({
articleId: this.id
});
this.fetching = false;
this.recommendArticles[this.id] = true;
if (result.code === 200) {
list = get(result, 'data', []);
if (!list || !list.length) {
list = false;
} else {
this.listTitle = '推荐阅读';
}
} else {
this.$createToast && this.$createToast({
txt: result.message || '服务器开小差了',
type: 'warn',
time: 1000
}).show();
}
return list;
},
scrollTo({scrollTop}) {
this.$refs.scroll.$el.scrollTop = scrollTop;
this.scrollTop = scrollTop;
},
onShowMore() {
this.$refs.moreAction.show(this.article);
},
onFollowAuthor(data, follow) {
this.CHANGE_AUTHOR_FOLLOW({authorUid: data.authorUid, authorType: data.authorType, follow});
},
onDelete() {
let $detail = {$refs: {}};
this.$refs.detailLong && ($detail = this.$refs.detailLong);
this.$refs.detailNote && ($detail = this.$refs.detailNote);
$detail.$refs.header && $detail.$refs.header.onBack();
}
},
components: {
ArticleDeatilLong,
ArticleDeatilNote,
ArticleItem2,
MoreActionSheet
}
};
</script>
<style lang="scss" scoped>
/deep/ .scroll-reveal-list {
padding: 0 6px;
background-color: #f0f0f0;
.scroll-reveal-col {
margin: 6px 0;
}
}
/deep/ .loading {
display: none;
}
</style>