dispatch(importStatuses(normalStatuses));
};
}
+
+export function importFetchedPoll(poll) {
+ return dispatch => {
+ dispatch(importPolls([normalizePoll(poll)]));
+ };
+}
import api from '../api';
+import { importFetchedPoll } from './importer';
export const POLL_VOTE_REQUEST = 'POLL_VOTE_REQUEST';
export const POLL_VOTE_SUCCESS = 'POLL_VOTE_SUCCESS';
dispatch(voteRequest());
api(getState).post(`/api/v1/polls/${pollId}/votes`, { choices })
- .then(({ data }) => dispatch(voteSuccess(data)))
+ .then(({ data }) => {
+ dispatch(importFetchedPoll(data));
+ dispatch(voteSuccess(data));
+ })
.catch(err => dispatch(voteFail(err)));
};
dispatch(fetchPollRequest());
api(getState).get(`/api/v1/polls/${pollId}`)
- .then(({ data }) => dispatch(fetchPollSuccess(data)))
+ .then(({ data }) => {
+ dispatch(importFetchedPoll(data));
+ dispatch(fetchPollSuccess(data));
+ })
.catch(err => dispatch(fetchPollFail(err)));
};
import { vote, fetchPoll } from 'mastodon/actions/polls';
import Motion from 'mastodon/features/ui/util/optional_motion';
import spring from 'react-motion/lib/spring';
+import escapeTextContentForBrowser from 'escape-html';
+import emojify from 'mastodon/features/emoji/emoji';
const messages = defineMessages({
moments: { id: 'time_remaining.moments', defaultMessage: 'Moments remaining' },
{!showResults && <span className={classNames('poll__input', { checkbox: poll.get('multiple'), active })} />}
{showResults && <span className='poll__number'>{Math.round(percent)}%</span>}
- <span dangerouslySetInnerHTML={{ __html: option.get('title_emojified') }} />
+ <span dangerouslySetInnerHTML={{ __html: option.get('title_emojified', emojify(escapeTextContentForBrowser(option.get('title')))) }} />
</label>
</li>
);
-import { POLL_VOTE_SUCCESS, POLL_FETCH_SUCCESS } from 'mastodon/actions/polls';
import { POLLS_IMPORT } from 'mastodon/actions/importer';
import { Map as ImmutableMap, fromJS } from 'immutable';
switch(action.type) {
case POLLS_IMPORT:
return importPolls(state, action.polls);
- case POLL_VOTE_SUCCESS:
- case POLL_FETCH_SUCCESS:
- return importPolls(state, [action.poll]);
default:
return state;
}