forked from AkkomaGang/akkoma-fe
addNewStatuses: mutation -> action
This is to add the current user.
This commit is contained in:
parent
e7637e4196
commit
de25c46670
2 changed files with 2 additions and 87 deletions
|
@ -7,7 +7,7 @@ const postStatus = ({ store, status, media = [], inReplyToStatusId = undefined }
|
||||||
return apiService.postStatus({credentials: store.state.users.currentUser.credentials, status, mediaIds, inReplyToStatusId})
|
return apiService.postStatus({credentials: store.state.users.currentUser.credentials, status, mediaIds, inReplyToStatusId})
|
||||||
.then((data) => data.json())
|
.then((data) => data.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
store.commit('addNewStatuses',
|
store.dispatch('addNewStatuses',
|
||||||
{ statuses: [data], timeline: 'friends', showImmediately: true })
|
{ statuses: [data], timeline: 'friends', showImmediately: true })
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -30,36 +30,3 @@ const statusPosterService = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default statusPosterService
|
export default statusPosterService
|
||||||
|
|
||||||
// const statusPosterServiceFactory = (apiService, $ngRedux) => {
|
|
||||||
// const postStatus = ({status, media = [], in_reply_to_status_id = undefined}) => {
|
|
||||||
// const mediaIds = map(media, 'id');
|
|
||||||
|
|
||||||
// return apiService.postStatus({status, mediaIds, in_reply_to_status_id}).
|
|
||||||
// then((data) => data.json()).
|
|
||||||
// then((data) => {
|
|
||||||
// $ngRedux.dispatch({type: 'ADD_NEW_STATUSES', data: { statuses: [data], timeline: 'friends', showImmediately: true }});
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const uploadMedia = (formData) => {
|
|
||||||
// return apiService.uploadMedia(formData).then((xml) => {
|
|
||||||
// return {
|
|
||||||
// id: xml.getElementsByTagName('media_id')[0].textContent,
|
|
||||||
// url: xml.getElementsByTagName('media_url')[0].textContent,
|
|
||||||
// image: xml.getElementsByTagName('atom:link')[0].getAttribute('href')
|
|
||||||
// };
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const statusPosterService = {
|
|
||||||
// postStatus,
|
|
||||||
// uploadMedia
|
|
||||||
// };
|
|
||||||
|
|
||||||
// return statusPosterService;
|
|
||||||
// };
|
|
||||||
|
|
||||||
// statusPosterServiceFactory.$inject = ['apiService', '$ngRedux'];
|
|
||||||
|
|
||||||
// export default statusPosterServiceFactory;
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import apiService from '../api/api.service.js'
|
||||||
const update = ({store, statuses, timeline, showImmediately}) => {
|
const update = ({store, statuses, timeline, showImmediately}) => {
|
||||||
const ccTimeline = camelCase(timeline)
|
const ccTimeline = camelCase(timeline)
|
||||||
|
|
||||||
store.commit('addNewStatuses', {
|
store.dispatch('addNewStatuses', {
|
||||||
timeline: ccTimeline,
|
timeline: ccTimeline,
|
||||||
statuses,
|
statuses,
|
||||||
showImmediately
|
showImmediately
|
||||||
|
@ -41,55 +41,3 @@ const timelineFetcher = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default timelineFetcher
|
export default timelineFetcher
|
||||||
|
|
||||||
// const timelineFetcherServiceFactory = ($ngRedux, apiService, $interval) => {
|
|
||||||
// let fetcher;
|
|
||||||
|
|
||||||
// const update = ({statuses, timeline, showImmediately}) => {
|
|
||||||
// const ccTimeline = camelCase(timeline);
|
|
||||||
|
|
||||||
// const action = {
|
|
||||||
// type: 'ADD_NEW_STATUSES',
|
|
||||||
// data: {
|
|
||||||
// statuses,
|
|
||||||
// timeline: ccTimeline,
|
|
||||||
// showImmediately
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
|
|
||||||
// $ngRedux.dispatch(action);
|
|
||||||
// $ngRedux.dispatch({type: 'UPDATE_TIMESTAMPS'});
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const fetchAndUpdate = ({timeline = 'friends', older = false, showImmediately = false}) => {
|
|
||||||
// const args = { timeline };
|
|
||||||
// const timelineData = $ngRedux.getState().statuses.timelines[camelCase(timeline)];
|
|
||||||
|
|
||||||
// if(older) {
|
|
||||||
// args['until'] = timelineData.minVisibleId;
|
|
||||||
// } else {
|
|
||||||
// args['since'] = timelineData.maxId;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// apiService.fetchTimeline(args).
|
|
||||||
// then((statuses) => update({statuses, timeline, showImmediately}));
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const startFetching = ({timeline = 'friends'}) => {
|
|
||||||
// fetchAndUpdate({timeline, showImmediately: true});
|
|
||||||
|
|
||||||
// const boundFetchAndUpdate = () => fetchAndUpdate({timeline});
|
|
||||||
// fetcher = $interval(boundFetchAndUpdate, 10000);
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const timelineFetcherService = {
|
|
||||||
// startFetching,
|
|
||||||
// fetchAndUpdate
|
|
||||||
// };
|
|
||||||
|
|
||||||
// return timelineFetcherService;
|
|
||||||
// };
|
|
||||||
|
|
||||||
// timelineFetcherServiceFactory.$inject = ['$ngRedux', 'apiService', '$interval'];
|
|
||||||
|
|
||||||
// export default timelineFetcherServiceFactory;
|
|
||||||
|
|
Loading…
Reference in a new issue