Skip to content
Snippets Groups Projects
Unverified Commit 80cc9945 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12169 from MaximKhlobystov/remove-rand-user-countdown

Make random user picking coundown (UI + audio) optional
parents db634cb3 848fdc3e
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ import Button from '/imports/ui/components/button/component'; ...@@ -6,6 +6,8 @@ import Button from '/imports/ui/components/button/component';
import AudioService from '/imports/ui/components/audio/service'; import AudioService from '/imports/ui/components/audio/service';
import { styles } from './styles'; import { styles } from './styles';
const SELECT_RANDOM_USER_COUNTDOWN = Meteor.settings.public.selectRandomUser.countdown;
const messages = defineMessages({ const messages = defineMessages({
noViewers: { noViewers: {
id: 'app.modal.randomUser.noViewers.description', id: 'app.modal.randomUser.noViewers.description',
...@@ -54,11 +56,12 @@ class RandomUserSelect extends Component { ...@@ -54,11 +56,12 @@ class RandomUserSelect extends Component {
props.randomUserReq(); props.randomUserReq();
} }
this.state = { if(SELECT_RANDOM_USER_COUNTDOWN) {
count: 0, this.state = {
}; count: 0,
};
this.play = this.play.bind(this); this.play = this.play.bind(this);
}
} }
iterateSelection() { iterateSelection() {
...@@ -77,18 +80,20 @@ class RandomUserSelect extends Component { ...@@ -77,18 +80,20 @@ class RandomUserSelect extends Component {
} }
componentDidMount() { componentDidMount() {
if (!this.props.currentUser.presenter) { if (SELECT_RANDOM_USER_COUNTDOWN && !this.props.currentUser.presenter) {
this.iterateSelection(); this.iterateSelection();
} }
} }
componentDidUpdate(prevProps, prevState) { componentDidUpdate(prevProps, prevState) {
if (this.props.currentUser.presenter && this.state.count == 0) { if(SELECT_RANDOM_USER_COUNTDOWN) {
this.iterateSelection(); if (this.props.currentUser.presenter && this.state.count == 0) {
} this.iterateSelection();
}
if (prevState.count !== this.state.count) { if (prevState.count !== this.state.count) {
this.play(); this.play();
}
} }
} }
...@@ -100,9 +105,11 @@ class RandomUserSelect extends Component { ...@@ -100,9 +105,11 @@ class RandomUserSelect extends Component {
} }
reselect() { reselect() {
this.setState({ if(SELECT_RANDOM_USER_COUNTDOWN) {
count: 0, this.setState({
}); count: 0,
});
}
this.props.randomUserReq(); this.props.randomUserReq();
} }
...@@ -116,10 +123,12 @@ class RandomUserSelect extends Component { ...@@ -116,10 +123,12 @@ class RandomUserSelect extends Component {
mappedRandomlySelectedUsers, mappedRandomlySelectedUsers,
} = this.props; } = this.props;
if (mappedRandomlySelectedUsers.length < this.state.count + 1) return null; const counter = SELECT_RANDOM_USER_COUNTDOWN ? this.state.count : 0;
if (mappedRandomlySelectedUsers.length < counter + 1) return null;
const selectedUser = mappedRandomlySelectedUsers[this.state.count][0]; const selectedUser = mappedRandomlySelectedUsers[counter][0];
const countDown = mappedRandomlySelectedUsers.length - this.state.count - 1; const countDown = SELECT_RANDOM_USER_COUNTDOWN ?
mappedRandomlySelectedUsers.length - this.state.count - 1 : 0;
let viewElement; let viewElement;
......
...@@ -504,6 +504,7 @@ public: ...@@ -504,6 +504,7 @@ public:
mime: image/png mime: image/png
selectRandomUser: selectRandomUser:
enabled: true enabled: true
countdown: false
user: user:
role_moderator: MODERATOR role_moderator: MODERATOR
role_viewer: VIEWER role_viewer: VIEWER
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment