Skip to content

Commit

Permalink
Fix mastodon#61 - Add list of blocked users to the UI; clean up faile…
Browse files Browse the repository at this point in the history
…d push notifications API

Try to fix Travis CI setup
  • Loading branch information
Gargron committed Feb 5, 2017
1 parent 77e13c2 commit 920ba5f
Show file tree
Hide file tree
Showing 16 changed files with 186 additions and 69 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
- LOCAL_DOMAIN=cb6e6126.ngrok.io
- LOCAL_HTTPS=true
- RAILS_ENV=test

- CXX=g++-4.8
addons:
postgresql: 9.4

Expand All @@ -23,6 +23,10 @@ services:

bundler_args: --without development production --retry=3 --jobs=3

before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
install:
- nvm install $TRAVIS_NODE_VERSION
- npm install -g npm@3
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ gem 'pg_search'
gem 'simple-navigation'
gem 'statsd-instrument'
gem 'ruby-oembed', require: 'oembed'
gem 'fcm'

gem 'react-rails'
gem 'browserify-rails'
Expand Down
7 changes: 0 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@ GEM
execjs (2.7.0)
fabrication (2.15.2)
fast_blank (1.0.0)
fcm (0.0.2)
httparty
json
font-awesome-rails (4.6.3.1)
railties (>= 3.2, < 5.1)
fuubar (2.1.1)
Expand Down Expand Up @@ -183,8 +180,6 @@ GEM
domain_name (~> 0.5)
http-form_data (1.0.1)
http_parser.rb (0.6.0)
httparty (0.14.0)
multi_xml (>= 0.5.2)
httplog (0.3.2)
colorize
i18n (0.7.0)
Expand Down Expand Up @@ -232,7 +227,6 @@ GEM
mini_portile2 (2.1.0)
minitest (5.10.1)
multi_json (1.12.1)
multi_xml (0.6.0)
net-scp (1.2.1)
net-ssh (>= 2.6.5)
net-ssh (4.0.1)
Expand Down Expand Up @@ -470,7 +464,6 @@ DEPENDENCIES
dotenv-rails
fabrication
fast_blank
fcm
font-awesome-rails
fuubar
goldfinger
Expand Down
82 changes: 82 additions & 0 deletions app/assets/javascripts/components/actions/blocks.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
import api, { getLinks } from '../api'
import { fetchRelationships } from './accounts';

export const BLOCKS_FETCH_REQUEST = 'BLOCKS_FETCH_REQUEST';
export const BLOCKS_FETCH_SUCCESS = 'BLOCKS_FETCH_SUCCESS';
export const BLOCKS_FETCH_FAIL = 'BLOCKS_FETCH_FAIL';

export const BLOCKS_EXPAND_REQUEST = 'BLOCKS_EXPAND_REQUEST';
export const BLOCKS_EXPAND_SUCCESS = 'BLOCKS_EXPAND_SUCCESS';
export const BLOCKS_EXPAND_FAIL = 'BLOCKS_EXPAND_FAIL';

export function fetchBlocks() {
return (dispatch, getState) => {
dispatch(fetchBlocksRequest());

api(getState).get('/api/v1/blocks').then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(fetchBlocksSuccess(response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => dispatch(fetchBlocksFail(error)));
};
};

export function fetchBlocksRequest() {
return {
type: BLOCKS_FETCH_REQUEST
};
};

export function fetchBlocksSuccess(accounts, next) {
return {
type: BLOCKS_FETCH_SUCCESS,
accounts,
next
};
};

export function fetchBlocksFail(error) {
return {
type: BLOCKS_FETCH_FAIL,
error
};
};

export function expandBlocks() {
return (dispatch, getState) => {
const url = getState().getIn(['user_lists', 'blocks', 'next']);

if (url === null) {
return;
}

dispatch(expandBlocksRequest());

api(getState).get(url).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(expandBlocksSuccess(response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => dispatch(expandBlocksFail(error)));
};
};

export function expandBlocksRequest() {
return {
type: BLOCKS_EXPAND_REQUEST
};
};

export function expandBlocksSuccess(accounts, next) {
return {
type: BLOCKS_EXPAND_SUCCESS,
accounts,
next
};
};

export function expandBlocksFail(error) {
return {
type: BLOCKS_EXPAND_FAIL,
error
};
};
3 changes: 3 additions & 0 deletions app/assets/javascripts/components/containers/mastodon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import Notifications from '../features/notifications';
import FollowRequests from '../features/follow_requests';
import GenericNotFound from '../features/generic_not_found';
import FavouritedStatuses from '../features/favourited_statuses';
import Blocks from '../features/blocks';
import { IntlProvider, addLocaleData } from 'react-intl';
import en from 'react-intl/locale-data/en';
import de from 'react-intl/locale-data/de';
Expand Down Expand Up @@ -124,6 +125,8 @@ const Mastodon = React.createClass({
<Route path='accounts/:accountId/following' component={Following} />

<Route path='follow_requests' component={FollowRequests} />
<Route path='blocks' component={Blocks} />

<Route path='*' component={GenericNotFound} />
</Route>
</Router>
Expand Down
68 changes: 68 additions & 0 deletions app/assets/javascripts/components/features/blocks/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
import { connect } from 'react-redux';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import ImmutablePropTypes from 'react-immutable-proptypes';
import LoadingIndicator from '../../components/loading_indicator';
import { ScrollContainer } from 'react-router-scroll';
import Column from '../ui/components/column';
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
import AccountContainer from '../../containers/account_container';
import { fetchBlocks, expandBlocks } from '../../actions/blocks';
import { defineMessages, injectIntl } from 'react-intl';

const messages = defineMessages({
heading: { id: 'column.blocks', defaultMessage: 'Blocked' }
});

const mapStateToProps = state => ({
accountIds: state.getIn(['user_lists', 'blocks', 'items'])
});

const Blocks = React.createClass({
propTypes: {
params: React.PropTypes.object.isRequired,
dispatch: React.PropTypes.func.isRequired,
accountIds: ImmutablePropTypes.list,
intl: React.PropTypes.object.isRequired
},

mixins: [PureRenderMixin],

componentWillMount () {
this.props.dispatch(fetchBlocks());
},

handleScroll (e) {
const { scrollTop, scrollHeight, clientHeight } = e.target;

if (scrollTop === scrollHeight - clientHeight) {
this.props.dispatch(expandBlocks());
}
},

render () {
const { intl, accountIds } = this.props;

if (!accountIds) {
return (
<Column>
<LoadingIndicator />
</Column>
);
}

return (
<Column icon='users' heading={intl.formatMessage(messages.heading)}>
<ColumnBackButtonSlim />
<ScrollContainer scrollKey='blocks'>
<div className='scrollable' onScroll={this.handleScroll}>
{accountIds.map(id =>
<AccountContainer key={id} id={id} />
)}
</div>
</ScrollContainer>
</Column>
);
}
});

export default connect(mapStateToProps)(injectIntl(Blocks));
8 changes: 8 additions & 0 deletions app/assets/javascripts/components/reducers/accounts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ import {
ACCOUNT_TIMELINE_FETCH_SUCCESS,
ACCOUNT_TIMELINE_EXPAND_SUCCESS,
FOLLOW_REQUESTS_FETCH_SUCCESS,
FOLLOW_REQUESTS_EXPAND_SUCCESS,
ACCOUNT_FOLLOW_SUCCESS,
ACCOUNT_UNFOLLOW_SUCCESS
} from '../actions/accounts';
import {
BLOCKS_FETCH_SUCCESS,
BLOCKS_EXPAND_SUCCESS
} from '../actions/blocks';
import { COMPOSE_SUGGESTIONS_READY } from '../actions/compose';
import {
REBLOG_SUCCESS,
Expand Down Expand Up @@ -87,6 +92,9 @@ export default function accounts(state = initialState, action) {
case COMPOSE_SUGGESTIONS_READY:
case SEARCH_SUGGESTIONS_READY:
case FOLLOW_REQUESTS_FETCH_SUCCESS:
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
case BLOCKS_FETCH_SUCCESS:
case BLOCKS_EXPAND_SUCCESS:
return normalizeAccounts(state, action.accounts);
case NOTIFICATIONS_REFRESH_SUCCESS:
case NOTIFICATIONS_EXPAND_SUCCESS:
Expand Down
14 changes: 13 additions & 1 deletion app/assets/javascripts/components/reducers/user_lists.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,27 @@ import {
FOLLOWING_FETCH_SUCCESS,
FOLLOWING_EXPAND_SUCCESS,
FOLLOW_REQUESTS_FETCH_SUCCESS,
FOLLOW_REQUESTS_EXPAND_SUCCESS,
FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
FOLLOW_REQUEST_REJECT_SUCCESS
} from '../actions/accounts';
import {
REBLOGS_FETCH_SUCCESS,
FAVOURITES_FETCH_SUCCESS
} from '../actions/interactions';
import {
BLOCKS_FETCH_SUCCESS,
BLOCKS_EXPAND_SUCCESS
} from '../actions/blocks';
import Immutable from 'immutable';

const initialState = Immutable.Map({
followers: Immutable.Map(),
following: Immutable.Map(),
reblogged_by: Immutable.Map(),
favourited_by: Immutable.Map(),
follow_requests: Immutable.Map()
follow_requests: Immutable.Map(),
blocks: Immutable.Map()
});

const normalizeList = (state, type, id, accounts, next) => {
Expand Down Expand Up @@ -50,9 +56,15 @@ export default function userLists(state = initialState, action) {
return state.setIn(['favourited_by', action.id], Immutable.List(action.accounts.map(item => item.id)));
case FOLLOW_REQUESTS_FETCH_SUCCESS:
return state.setIn(['follow_requests', 'items'], Immutable.List(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
return state.updateIn(['follow_requests', 'items'], list => list.push(...action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
case FOLLOW_REQUEST_REJECT_SUCCESS:
return state.updateIn(['follow_requests', 'items'], list => list.filterNot(item => item === action.id));
case BLOCKS_FETCH_SUCCESS:
return state.setIn(['blocks', 'items'], Immutable.List(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
case BLOCKS_EXPAND_SUCCESS:
return state.updateIn(['blocks', 'items'], list => list.push(...action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
default:
return state;
}
Expand Down
7 changes: 0 additions & 7 deletions app/models/device.rb

This file was deleted.

5 changes: 0 additions & 5 deletions app/services/notify_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def call(recipient, activity)

create_notification
send_email if email_enabled?
send_push_notification
rescue ActiveRecord::RecordInvalid
return
end
Expand Down Expand Up @@ -58,10 +57,6 @@ def send_email
NotificationMailer.send(@notification.type, @recipient, @notification).deliver_later
end

def send_push_notification
PushNotificationWorker.perform_async(@notification.id)
end

def email_enabled?
@recipient.user.settings.notification_emails[@notification.type]
end
Expand Down
28 changes: 0 additions & 28 deletions app/services/send_push_notification_service.rb

This file was deleted.

5 changes: 5 additions & 0 deletions db/migrate/20170205175257_remove_devices.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class RemoveDevices < ActiveRecord::Migration[5.0]
def change
drop_table :devices
end
end
11 changes: 1 addition & 10 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20170129000348) do
ActiveRecord::Schema.define(version: 20170205175257) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
Expand Down Expand Up @@ -54,15 +54,6 @@
t.index ["account_id", "target_account_id"], name: "index_blocks_on_account_id_and_target_account_id", unique: true, using: :btree
end

create_table "devices", force: :cascade do |t|
t.integer "account_id", null: false
t.string "registration_id", default: "", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["account_id"], name: "index_devices_on_account_id", using: :btree
t.index ["registration_id"], name: "index_devices_on_registration_id", using: :btree
end

create_table "domain_blocks", force: :cascade do |t|
t.string "domain", default: "", null: false
t.datetime "created_at", null: false
Expand Down
3 changes: 0 additions & 3 deletions spec/fabricators/device_fabricator.rb

This file was deleted.

Loading

0 comments on commit 920ba5f

Please sign in to comment.