Merge branch 'fix/mentions-timeline' into 'develop'

Fix/mentions timeline

See merge request !58
This commit is contained in:
Shpuld Shpuldson 2017-03-09 12:59:53 -05:00
commit 11e41d5ea9
3 changed files with 1 additions and 25 deletions

View file

@ -2,25 +2,12 @@ import Timeline from '../timeline/timeline.vue'
const Mentions = { const Mentions = {
computed: { computed: {
username () {
return this.$route.params.username
},
timeline () { timeline () {
return this.$store.state.statuses.timelines.mentions return this.$store.state.statuses.timelines.mentions
} }
}, },
components: { components: {
Timeline Timeline
},
created () {
this.$store.state.api.backendInteractor.fetchMentions({username: this.username})
.then((mentions) => {
this.$store.dispatch('addNewStatuses', {
statuses: mentions,
timeline: 'mentions',
showImmediately: true
})
})
} }
} }

View file

@ -62,12 +62,6 @@ const fetchAllFollowing = ({username, credentials}) => {
.then((data) => data.json()) .then((data) => data.json())
} }
const fetchMentions = ({username, sinceId = 0, credentials}) => {
let url = `${MENTIONS_URL}?since_id=${sinceId}&screen_name=${username}`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const fetchConversation = ({id, credentials}) => { const fetchConversation = ({id, credentials}) => {
let url = `${CONVERSATION_URL}/${id}.json?count=100` let url = `${CONVERSATION_URL}/${id}.json?count=100`
return fetch(url, { headers: authHeaders(credentials) }) return fetch(url, { headers: authHeaders(credentials) })
@ -100,6 +94,7 @@ const fetchTimeline = ({timeline, credentials, since = false, until = false}) =>
const timelineUrls = { const timelineUrls = {
public: PUBLIC_TIMELINE_URL, public: PUBLIC_TIMELINE_URL,
friends: FRIENDS_TIMELINE_URL, friends: FRIENDS_TIMELINE_URL,
mentions: MENTIONS_URL,
'publicAndExternal': PUBLIC_AND_EXTERNAL_TIMELINE_URL 'publicAndExternal': PUBLIC_AND_EXTERNAL_TIMELINE_URL
} }
@ -192,7 +187,6 @@ const apiService = {
fetchTimeline, fetchTimeline,
fetchConversation, fetchConversation,
fetchStatus, fetchStatus,
fetchMentions,
fetchFriends, fetchFriends,
followUser, followUser,
unfollowUser, unfollowUser,

View file

@ -10,10 +10,6 @@ const backendInteractorService = (credentials) => {
return apiService.fetchConversation({id, credentials}) return apiService.fetchConversation({id, credentials})
} }
const fetchMentions = ({sinceId, username}) => {
return apiService.fetchMentions({sinceId, username, credentials})
}
const fetchFriends = () => { const fetchFriends = () => {
return apiService.fetchFriends({credentials}) return apiService.fetchFriends({credentials})
} }
@ -43,7 +39,6 @@ const backendInteractorService = (credentials) => {
const backendInteractorServiceInstance = { const backendInteractorServiceInstance = {
fetchStatus, fetchStatus,
fetchConversation, fetchConversation,
fetchMentions,
fetchFriends, fetchFriends,
followUser, followUser,
unfollowUser, unfollowUser,