From 2c23a4fe4907f826013571afdae6db52895f576e Mon Sep 17 00:00:00 2001 From: David Lu Date: Tue, 2 Aug 2016 08:34:34 -0400 Subject: Added custom branding to login description (#3710) --- .../admin_console/custom_brand_settings.jsx | 28 +++++++++++++++++++++- .../create_team/create_team_controller.jsx | 16 ++++++++++--- webapp/components/login/login_controller.jsx | 16 ++++++++++--- webapp/components/select_team/select_team.jsx | 16 ++++++++++--- webapp/components/signup_user_complete.jsx | 16 ++++++++++--- 5 files changed, 79 insertions(+), 13 deletions(-) (limited to 'webapp/components') diff --git a/webapp/components/admin_console/custom_brand_settings.jsx b/webapp/components/admin_console/custom_brand_settings.jsx index b4026c4a9..a54768fb8 100644 --- a/webapp/components/admin_console/custom_brand_settings.jsx +++ b/webapp/components/admin_console/custom_brand_settings.jsx @@ -27,6 +27,7 @@ export default class CustomBrandSettings extends AdminSettings { if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.CustomBrand === 'true') { config.TeamSettings.EnableCustomBrand = this.state.enableCustomBrand; config.TeamSettings.CustomBrandText = this.state.customBrandText; + config.TeamSettings.customDescriptionText = this.state.customDescriptionText; } return config; @@ -36,7 +37,8 @@ export default class CustomBrandSettings extends AdminSettings { return { siteName: config.TeamSettings.SiteName, enableCustomBrand: config.TeamSettings.EnableCustomBrand, - customBrandText: config.TeamSettings.CustomBrandText + customBrandText: config.TeamSettings.CustomBrandText, + customDescriptionText: config.TeamSettings.CustomDescriptionText }; } @@ -104,6 +106,30 @@ export default class CustomBrandSettings extends AdminSettings { disabled={!this.state.enableCustomBrand} /> ); + + enterpriseSettings.push( + + } + helpText={ + + } + value={this.state.customDescriptionText} + placeholder={Utils.localizeMessage('web.root.signup_info', 'All team communication in one place, searchable and accessible anywhere')} + onChange={this.handleChange} + disabled={!this.state.enableCustomBrand} + /> + ); } return ( diff --git a/webapp/components/create_team/create_team_controller.jsx b/webapp/components/create_team/create_team_controller.jsx index 47df82a57..77a7f659f 100644 --- a/webapp/components/create_team/create_team_controller.jsx +++ b/webapp/components/create_team/create_team_controller.jsx @@ -35,6 +35,18 @@ export default class CreateTeamController extends React.Component { } render() { + let description = null; + if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.CustomBrand === 'true' && global.window.mm_config.EnableCustomBrand === 'true') { + description = global.window.mm_config.CustomDescriptionText; + } else { + description = ( + + ); + } + return (
@@ -50,9 +62,7 @@ export default class CreateTeamController extends React.Component {

{global.window.mm_config.SiteName}

- + {description}

{React.cloneElement(this.props.children, { diff --git a/webapp/components/login/login_controller.jsx b/webapp/components/login/login_controller.jsx index 4a4c5cb0a..52f36bb2a 100644 --- a/webapp/components/login/login_controller.jsx +++ b/webapp/components/login/login_controller.jsx @@ -549,6 +549,18 @@ export default class LoginController extends React.Component { } } + let description = null; + if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.CustomBrand === 'true' && global.window.mm_config.EnableCustomBrand === 'true') { + description = global.window.mm_config.CustomDescriptionText; + } else { + description = ( + + ); + } + return (
@@ -564,9 +576,7 @@ export default class LoginController extends React.Component {

{global.window.mm_config.SiteName}

- + {description}

{content}
diff --git a/webapp/components/select_team/select_team.jsx b/webapp/components/select_team/select_team.jsx index f7d5b14b0..f1816238b 100644 --- a/webapp/components/select_team/select_team.jsx +++ b/webapp/components/select_team/select_team.jsx @@ -212,6 +212,18 @@ export default class SelectTeam extends React.Component { ); } + let description = null; + if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.CustomBrand === 'true' && global.window.mm_config.EnableCustomBrand === 'true') { + description = global.window.mm_config.CustomDescriptionText; + } else { + description = ( + + ); + } + return (
@@ -234,9 +246,7 @@ export default class SelectTeam extends React.Component { />

{global.window.mm_config.SiteName}

- + {description}

{content} {openContent} diff --git a/webapp/components/signup_user_complete.jsx b/webapp/components/signup_user_complete.jsx index 3cd6fb27b..167b41ea1 100644 --- a/webapp/components/signup_user_complete.jsx +++ b/webapp/components/signup_user_complete.jsx @@ -765,6 +765,18 @@ export default class SignupUserComplete extends React.Component { ldapSignup = null; } + let description = null; + if (global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.CustomBrand === 'true' && global.window.mm_config.EnableCustomBrand === 'true') { + description = global.window.mm_config.CustomDescriptionText; + } else { + description = ( + + ); + } + return (
@@ -783,9 +795,7 @@ export default class SignupUserComplete extends React.Component { />

{global.window.mm_config.SiteName}

- + {description}