From 67d87e8756f1fda35d571b49287cbdaa38779092 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Fri, 27 May 2022 12:13:54 +0100 Subject: [PATCH] Fixed flash of failure state when submitting site setup and staff signup forms no issue - ensure tasks return `true` or `false` so the button states reflect reality - added `@showSuccess={{false}}` to both forms because they automatically switch to a new screen on success so there's no point showing a flash of the success state - removed unnecessary and not-recommended tabindex properties on form elements --- ghost/admin/app/controllers/setup.js | 7 ++++--- ghost/admin/app/controllers/signup.js | 4 ++++ ghost/admin/app/templates/setup.hbs | 13 ++++++++----- ghost/admin/app/templates/signup.hbs | 17 ++++++++++++----- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/ghost/admin/app/controllers/setup.js b/ghost/admin/app/controllers/setup.js index 4425044301..1e1fcf3387 100644 --- a/ghost/admin/app/controllers/setup.js +++ b/ghost/admin/app/controllers/setup.js @@ -59,12 +59,11 @@ export default class SetupController extends Controller.extend(ValidationEngine) this.session.skipAuthSuccessHandler = true; try { - let authResult = yield this.session - .authenticate(authStrategy, ...authentication); + yield this.session.authenticate(authStrategy, ...authentication); this.errors.remove('session'); - return authResult; + return true; } catch (error) { if (error && error.payload && error.payload.errors) { if (isVersionMismatchError(error)) { @@ -80,6 +79,8 @@ export default class SetupController extends Controller.extend(ValidationEngine) // Connection errors don't return proper status message, only req.body this.notifications.showAlert('There was a problem on the server.', {type: 'error', key: 'session.authenticate.failed'}); } + + return false; } }) authenticate; diff --git a/ghost/admin/app/controllers/signup.js b/ghost/admin/app/controllers/signup.js index 37241b7519..5e8fcb7535 100644 --- a/ghost/admin/app/controllers/signup.js +++ b/ghost/admin/app/controllers/signup.js @@ -53,6 +53,8 @@ export default Controller.extend({ } catch (error) { notifications.showAPIError(error, {key: 'signup.complete'}); } + + return true; } catch (error) { // ValidationEngine throws undefined if (!error) { @@ -68,6 +70,8 @@ export default Controller.extend({ } else { notifications.showAPIError(error, {key: 'signup.complete'}); } + + return false; } }).drop(), diff --git a/ghost/admin/app/templates/setup.hbs b/ghost/admin/app/templates/setup.hbs index 2a22d7c630..5110340e81 100644 --- a/ghost/admin/app/templates/setup.hbs +++ b/ghost/admin/app/templates/setup.hbs @@ -11,7 +11,6 @@ Full name Email address Password - +