Skip to content

Commit 1d89159

Browse files
Merge pull request #1750 from RodriSanchez1/fix/loadingStateOnCopyRemoteBoards
Show loading state on remote boards copy
2 parents 53e660a + f46aee9 commit 1d89159

File tree

3 files changed

+38
-20
lines changed

3 files changed

+38
-20
lines changed

src/components/Board/Board.container.js

+23-9
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ import {
7070
IS_BROWSING_FROM_APPLE_TOUCH,
7171
IS_BROWSING_FROM_SAFARI
7272
} from '../../constants';
73+
import LoadingIcon from '../UI/LoadingIcon';
7374
//import { isAndroid } from '../../cordova-util';
7475

7576
const ogv = require('ogv');
@@ -1183,6 +1184,9 @@ export class BoardContainer extends Component {
11831184
handleCopyRemoteBoard = async () => {
11841185
const { intl, showNotification, history, switchBoard } = this.props;
11851186
try {
1187+
this.setState({
1188+
isSaving: true
1189+
});
11861190
const copiedBoard = await this.createBoardsRecursively(
11871191
this.state.copyPublicBoard
11881192
);
@@ -1194,15 +1198,18 @@ export class BoardContainer extends Component {
11941198
const translatedBoard = this.translateBoard(copiedBoard);
11951199
this.setState({
11961200
translatedBoard,
1197-
isSaving: false,
11981201
copyPublicBoard: false,
11991202
blockedPrivateBoard: false
12001203
});
12011204
showNotification(intl.formatMessage(messages.boardCopiedSuccessfully));
12021205
} catch (err) {
12031206
console.log(err.message);
12041207
showNotification(intl.formatMessage(messages.boardCopyError));
1208+
this.handleCloseDialog();
12051209
}
1210+
this.setState({
1211+
isSaving: false
1212+
});
12061213
};
12071214

12081215
async createBoardsRecursively(board, records) {
@@ -1264,10 +1271,6 @@ export class BoardContainer extends Component {
12641271

12651272
// Loggedin user?
12661273
if ('name' in userData && 'email' in userData) {
1267-
this.setState({
1268-
isSaving: true
1269-
});
1270-
12711274
try {
12721275
const boardId = await updateApiObjectsNoChild(newBoard, true);
12731276
newBoard = {
@@ -1290,7 +1293,7 @@ export class BoardContainer extends Component {
12901293
const nextBoard = await API.getBoard(tile.loadBoard);
12911294
await this.createBoardsRecursively(nextBoard, records);
12921295
} catch (err) {
1293-
if (err.response.status === 404) {
1296+
if (!err.respose || err.response?.status === 404) {
12941297
//look for this board in available boards
12951298
const localBoard = boards.find(b => b.id === tile.loadBoard);
12961299
if (localBoard) {
@@ -1348,7 +1351,9 @@ export class BoardContainer extends Component {
13481351
});
13491352
}
13501353

1351-
handleCloseDialog = () => {
1354+
handleCloseDialog = (event, reason) => {
1355+
const { isSaving } = this.state;
1356+
if (isSaving) return;
13521357
this.setState({
13531358
copyPublicBoard: false,
13541359
blockedPrivateBoard: false
@@ -1611,16 +1616,25 @@ export class BoardContainer extends Component {
16111616
</DialogContentText>
16121617
</DialogContent>
16131618
<DialogActions>
1614-
<Button onClick={this.handleCloseDialog} color="primary">
1619+
<Button
1620+
onClick={this.handleCloseDialog}
1621+
color="primary"
1622+
disabled={this.state.isSaving}
1623+
>
16151624
{this.props.intl.formatMessage(messages.boardCopyCancel)}
16161625
</Button>
16171626
<PremiumFeature>
16181627
<Button
16191628
onClick={this.handleCopyRemoteBoard}
16201629
color="primary"
16211630
variant="contained"
1631+
disabled={this.state.isSaving}
16221632
>
1623-
{this.props.intl.formatMessage(messages.boardCopyAccept)}
1633+
{this.state.isSaving ? (
1634+
<LoadingIcon />
1635+
) : (
1636+
this.props.intl.formatMessage(messages.boardCopyAccept)
1637+
)}
16241638
</Button>
16251639
</PremiumFeature>
16261640
</DialogActions>

src/components/Communicator/CommunicatorDialog/CommunicatorDialog.container.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -293,20 +293,13 @@ class CommunicatorDialogContainer extends React.Component {
293293
// Loggedin user?
294294
if ('name' in userData && 'email' in userData) {
295295
try {
296-
this.setState({
297-
loading: true
298-
});
299296
const boardId = await updateApiObjectsNoChild(newBoard, true);
300297
newBoard = {
301298
...newBoard,
302299
id: boardId
303300
};
304301
} catch (err) {
305302
console.log(err.message);
306-
} finally {
307-
this.setState({
308-
loading: false
309-
});
310303
}
311304
}
312305

@@ -321,7 +314,7 @@ class CommunicatorDialogContainer extends React.Component {
321314
const nextBoard = await API.getBoard(tile.loadBoard);
322315
await this.createBoardsRecursively(nextBoard, records);
323316
} catch (err) {
324-
if (err.response.status === 404) {
317+
if (!err.respose || err.response?.status === 404) {
325318
//look for this board in available boards
326319
const localBoard = availableBoards.find(
327320
b => b.id === tile.loadBoard

src/components/Communicator/CommunicatorDialog/CommunicatorDialogBoardItem.component.js

+14-3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import TextField from '@material-ui/core/TextField';
3030
import CircularProgress from '@material-ui/core/CircularProgress';
3131
import Slide from '@material-ui/core/Slide';
3232
import DialogContentText from '@material-ui/core/DialogContentText';
33+
import LoadingIcon from '../../UI/LoadingIcon';
3334

3435
import IconButton from '../../UI/IconButton';
3536
import { TAB_INDEXES } from './CommunicatorDialog.constants';
@@ -73,6 +74,8 @@ class CommunicatorDialogBoardItem extends React.Component {
7374
? props.board.description
7475
: ''
7576
};
77+
78+
this.handleDialogClose = this.handleDialogClose.bind(this);
7679
}
7780

7881
openMenu(e) {
@@ -149,14 +152,14 @@ class CommunicatorDialogBoardItem extends React.Component {
149152

150153
async handleBoardCopy(board) {
151154
this.setState({
152-
openCopyBoard: false,
153155
loading: true
154156
});
155157
try {
156158
await this.props.copyBoard(board);
157159
} catch (err) {
158160
} finally {
159161
this.setState({
162+
openCopyBoard: false,
160163
loading: false
161164
});
162165
}
@@ -839,7 +842,9 @@ class CommunicatorDialogBoardItem extends React.Component {
839842
</Dialog>
840843

841844
<Dialog
842-
onClose={this.handleDialogClose.bind(this)}
845+
onClose={() => {
846+
if (!this.state.loading) this.handleDialogClose();
847+
}}
843848
aria-labelledby="board-copy-dialog"
844849
open={this.state.openCopyBoard}
845850
>
@@ -858,6 +863,7 @@ class CommunicatorDialogBoardItem extends React.Component {
858863
<Button
859864
onClick={this.handleDialogClose.bind(this)}
860865
color="primary"
866+
disabled={this.state.loading}
861867
>
862868
{intl.formatMessage(messages.close)}
863869
</Button>
@@ -868,8 +874,13 @@ class CommunicatorDialogBoardItem extends React.Component {
868874
}}
869875
variant="contained"
870876
color="primary"
877+
disabled={this.state.loading}
871878
>
872-
{intl.formatMessage(messages.accept)}
879+
{this.state.loading ? (
880+
<LoadingIcon />
881+
) : (
882+
intl.formatMessage(messages.accept)
883+
)}
873884
</Button>
874885
</PremiumFeature>
875886
</DialogActions>

0 commit comments

Comments
 (0)