Merge branch 'feature/retweet' into 'master'

Feature/retweet

See merge request !1
This commit is contained in:
lambadalambda 2016-11-14 15:09:20 -05:00
commit ce509937f6
9 changed files with 91 additions and 16 deletions

View File

@ -1,7 +1,4 @@
$main-color: #f58d2c;
$main-background: white;
$darkened-background: whitesmoke;
@import './_variables.scss';
#app {
background-color: $main-color;
background-size: cover;
@ -225,9 +222,10 @@ status.ng-enter.ng-enter-active {
}
.fa {
color: $main-color;
color: grey;
}
.status-actions {
width: 50%;
display: flex;

6
src/_variables.scss Normal file
View File

@ -0,0 +1,6 @@
$main-color: #f58d2c;
$main-background: white;
$darkened-background: whitesmoke;
$green: #0fa00f;
$blue: #0095ff;

View File

@ -7,8 +7,15 @@
<script src="./favorite_button.js" ></script>
<style>
.favorite-button {
cursor: pointer
}
<style lang='scss'>
@import '../../_variables.scss';
.favorite-button {
cursor: pointer;
&:hover {
color: $main-color;
}
}
.icon-star {
color: $main-color;
}
</style>

View File

@ -0,0 +1,19 @@
const RetweetButton = {
props: [ 'status' ],
methods: {
retweet () {
if (!this.status.repeated) {
this.$store.dispatch('retweet', {id: this.status.id})
}
}
},
computed: {
classes () {
return {
'retweeted': this.status.repeated
}
}
}
}
export default RetweetButton

View File

@ -0,0 +1,22 @@
<template>
<div>
<i :class='classes' class='icon-retweet fa' v-on:click.prevent='retweet()'></i>
<span v-if='status.repeat_num > 0'>{{status.repeat_num}}</span>
</div>
</template>
<script src="./retweet_button.js" ></script>
<style lang='scss'>
@import '../../_variables.scss';
.icon-retweet {
cursor: pointer;
&:hover {
color: $green;
}
}
.retweeted {
cursor: auto;
color: $green;
}
</style>

View File

@ -1,5 +1,6 @@
import Attachment from '../attachment/attachment.vue'
import FavoriteButton from '../favorite_button/favorite_button.vue'
import RetweetButton from '../retweet_button/retweet_button.vue'
import PostStatusForm from '../post_status_form/post_status_form.vue'
const Status = {
@ -24,6 +25,7 @@ const Status = {
components: {
Attachment,
FavoriteButton,
RetweetButton,
PostStatusForm
},
methods: {

View File

@ -37,9 +37,7 @@
<i class='fa icon-reply'></i>
</a>
</div>
<div>
<i class='fa icon-retweet'></i>
</div>
<retweet-button :status=status></retweet-button>
<favorite-button :status=status></favorite-button>
</div>
@ -53,7 +51,8 @@
<script src="./status.js" ></script>
<style lang="scss">
.status-el {
@import '../../_variables.scss';
.status-el {
hyphens: auto;
overflow-wrap: break-word;
word-wrap: break-word;
@ -68,9 +67,13 @@
margin-top: 3px;
margin-bottom: 3px;
}
}
}
.status-actions {
.status-actions {
padding-top: 5px;
}
}
.icon-reply:hover {
color: $blue;
}
</style>

View File

@ -146,6 +146,10 @@ export const mutations = {
const newStatus = find(state.allStatuses, status)
newStatus.favorited = value
},
setRetweeted (state, { status, value }) {
const newStatus = find(state.allStatuses, status)
newStatus.repeated = value
},
setLoading (state, { timeline, value }) {
state.timelines[timeline].loading = value
},
@ -167,6 +171,11 @@ const statuses = {
// Optimistic favoriting...
commit('setFavorited', { status, value: false })
apiService.unfavorite({ id: status.id, credentials: rootState.users.currentUser.credentials })
},
retweet ({ rootState, commit }, status) {
// Optimistic retweeting...
commit('setRetweeted', { status, value: true })
apiService.retweet({ id: status.id, credentials: rootState.users.currentUser.credentials })
}
},
mutations

View File

@ -5,6 +5,7 @@ const PUBLIC_TIMELINE_URL = '/api/statuses/public_timeline.json'
const PUBLIC_AND_EXTERNAL_TIMELINE_URL = '/api/statuses/public_and_external_timeline.json'
const FAVORITE_URL = '/api/favorites/create'
const UNFAVORITE_URL = '/api/favorites/destroy'
const RETWEET_URL = '/api/statuses/retweet'
const STATUS_UPDATE_URL = '/api/statuses/update.json'
const MEDIA_UPLOAD_URL = '/api/statusnet/media/upload'
// const CONVERSATION_URL = '/api/statusnet/conversation/';
@ -63,6 +64,13 @@ const unfavorite = ({ id, credentials }) => {
})
}
const retweet = ({ id, credentials }) => {
return fetch(`${RETWEET_URL}/${id}.json`, {
headers: authHeaders(credentials),
method: 'POST'
})
}
const postStatus = ({credentials, status, mediaIds, inReplyToStatusId}) => {
const idsText = mediaIds.join(',')
const form = new FormData()
@ -96,6 +104,7 @@ const apiService = {
fetchTimeline,
favorite,
unfavorite,
retweet,
postStatus,
uploadMedia
}