• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mendersoftware / gui / 1113439055

19 Dec 2023 09:01PM UTC coverage: 82.752% (-17.2%) from 99.964%
1113439055

Pull #4258

gitlab-ci

mender-test-bot
chore: Types update

Signed-off-by: Mender Test Bot <mender@northern.tech>
Pull Request #4258: chore: Types update

4326 of 6319 branches covered (0.0%)

8348 of 10088 relevant lines covered (82.75%)

189.39 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

71.43
/src/js/components/settings/user-management/selfusermanagement.js
1
// Copyright 2017 Northern.tech AS
2
//
3
//    Licensed under the Apache License, Version 2.0 (the "License");
4
//    you may not use this file except in compliance with the License.
5
//    You may obtain a copy of the License at
6
//
7
//        http://www.apache.org/licenses/LICENSE-2.0
8
//
9
//    Unless required by applicable law or agreed to in writing, software
10
//    distributed under the License is distributed on an "AS IS" BASIS,
11
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
//    See the License for the specific language governing permissions and
13
//    limitations under the License.
14
import React, { useState } from 'react';
15
import { useDispatch, useSelector } from 'react-redux';
16

17
import { Button, Switch, TextField } from '@mui/material';
18
import { makeStyles } from 'tss-react/mui';
19

20
import { setSnackbar } from '../../../actions/appActions';
21
import { editUser, saveUserSettings } from '../../../actions/userActions';
22
import { DARK_MODE, LIGHT_MODE } from '../../../constants/appConstants';
23
import * as UserConstants from '../../../constants/userConstants';
24
import { isDarkMode, toggle } from '../../../helpers';
25
import { getCurrentSession, getCurrentUser, getFeatures, getIsEnterprise, getUserSettings } from '../../../selectors';
26
import ExpandableAttribute from '../../common/expandable-attribute';
27
import Form from '../../common/forms/form';
28
import PasswordInput from '../../common/forms/passwordinput';
29
import TextInput from '../../common/forms/textinput';
30
import InfoText from '../../common/infotext';
31
import AccessTokenManagement from '../accesstokenmanagement';
32
import { CopyTextToClipboard } from '../organization/organization';
33
import TwoFactorAuthSetup from './twofactorauthsetup';
34
import { getUserSSOState } from './userdefinition';
35

36
const useStyles = makeStyles()(() => ({
4✔
37
  formField: { width: 400, maxWidth: '100%' },
38
  changeButton: { margin: '30px 0 0 15px' },
39
  infoText: { margin: 0, width: '75%' },
40
  jwt: { maxWidth: '70%' },
41
  oauthIcon: { fontSize: '36px', marginRight: 10 },
42
  widthLimit: { maxWidth: 750 }
43
}));
44

45
export const SelfUserManagement = () => {
4✔
46
  const [editEmail, setEditEmail] = useState(false);
11✔
47
  const [editPass, setEditPass] = useState(false);
10✔
48
  const { classes } = useStyles();
10✔
49
  const dispatch = useDispatch();
10✔
50

51
  const { isHosted } = useSelector(getFeatures);
10✔
52
  const isEnterprise = useSelector(getIsEnterprise);
10✔
53
  const canHave2FA = isEnterprise || isHosted;
10✔
54
  const currentUser = useSelector(getCurrentUser);
10✔
55
  const hasTracking = useSelector(state => !!state.app.trackerCode);
19✔
56
  const { trackingConsentGiven: hasTrackingConsent, mode } = useSelector(getUserSettings);
10✔
57
  const { token } = useSelector(getCurrentSession);
10✔
58

59
  const editSubmit = userData => {
10✔
60
    if (userData.password != userData.password_confirmation) {
×
61
      dispatch(setSnackbar(`The passwords don't match`));
×
62
    } else {
63
      dispatch(editUser(UserConstants.OWN_USER_ID, userData)).then(() => {
×
64
        setEditEmail(false);
×
65
        setEditPass(false);
×
66
      });
67
    }
68
  };
69

70
  const handleEmail = () => setEditEmail(toggle);
10✔
71

72
  const toggleMode = () => {
10✔
73
    const newMode = isDarkMode(mode) ? LIGHT_MODE : DARK_MODE;
×
74
    dispatch(saveUserSettings({ mode: newMode }));
×
75
  };
76

77
  const handlePass = () => setEditPass(toggle);
10✔
78
  const email = currentUser.email;
10✔
79
  const { isOAuth2, provider } = getUserSSOState(currentUser);
10✔
80
  return (
10✔
81
    <div className={`margin-top-small ${classes.widthLimit}`}>
82
      <h2 className="margin-top-small">My profile</h2>
83
      {!editEmail && currentUser.email ? (
29✔
84
        <div className="flexbox space-between">
85
          <TextField className={classes.formField} label="Email" key={email} InputLabelProps={{ shrink: !!email }} disabled defaultValue={email} />
86
          {!isOAuth2 && (
17✔
87
            <Button className={`inline-block ${classes.changeButton}`} color="primary" id="change_email" onClick={handleEmail}>
88
              Change email
89
            </Button>
90
          )}
91
        </div>
92
      ) : (
93
        <Form defaultValues={{ email }} onSubmit={editSubmit} handleCancel={handleEmail} submitLabel="Save" showButtons={editEmail} buttonColor="secondary">
94
          <TextInput disabled={false} hint="Email" id="email" InputLabelProps={{ shrink: !!email }} label="Email" validations="isLength:1,isEmail,trim" />
95
          <PasswordInput id="current_password" label="Current password *" validations={`isLength:8,isNot:${email}`} required={true} />
96
        </Form>
97
      )}
98
      {!isOAuth2 &&
19✔
99
        (!editPass ? (
9✔
100
          <form className="flexbox space-between">
101
            <TextField className={classes.formField} label="Password" key="password-placeholder" disabled defaultValue="********" type="password" />
102
            <Button className={classes.changeButton} color="primary" id="change_password" onClick={handlePass}>
103
              Change password
104
            </Button>
105
          </form>
106
        ) : (
107
          <>
108
            <h3 className="margin-top margin-bottom-none">Change password</h3>
109
            <Form onSubmit={editSubmit} handleCancel={handlePass} submitLabel="Save" buttonColor="secondary" showButtons={editPass}>
110
              <PasswordInput id="current_password" label="Current password *" validations={`isLength:8,isNot:${email}`} required />
111
              <PasswordInput className="edit-pass" id="password" label="Password *" validations={`isLength:8,isNot:${email}`} create generate required />
112
              <PasswordInput id="password_confirmation" label="Confirm password *" validations={`isLength:8,isNot:${email}`} required />
113
            </Form>
114
          </>
115
        ))}
116
      <div className="clickable flexbox space-between margin-top" onClick={toggleMode}>
117
        <p className="help-content">Enable dark theme</p>
118
        <Switch checked={isDarkMode(mode)} />
119
      </div>
120
      {!isOAuth2 ? (
10✔
121
        canHave2FA && <TwoFactorAuthSetup />
17✔
122
      ) : (
123
        <div className="flexbox margin-top">
124
          <div className={classes.oauthIcon}>{provider.icon}</div>
125
          <div className="info">
126
            You are logging in using your <strong>{provider.name}</strong> account.
127
            <br />
128
            Please connect to {provider.name} to update your login settings.
129
          </div>
130
        </div>
131
      )}
132
      <div className="flexbox space-between margin-top-large">
133
        <div className={classes.jwt}>
134
          <div className="help-content">Session token</div>
135
          <ExpandableAttribute
136
            component="div"
137
            disableGutters
138
            dividerDisabled
139
            secondary={token}
140
            textClasses={{ secondary: 'inventory-text tenant-token-text' }}
141
          />
142
        </div>
143
        <div className="flexbox center-aligned">
144
          <CopyTextToClipboard token={token} />
145
        </div>
146
      </div>
147
      {!isOAuth2 && <AccessTokenManagement />}
19✔
148
      {isEnterprise && hasTracking && (
18!
149
        <div className="margin-top">
150
          <div className="clickable flexbox space-between" onClick={() => dispatch(saveUserSettings({ trackingConsentGiven: !hasTrackingConsent }))}>
×
151
            <p className="help-content">Help us improve Mender</p>
152
            <Switch checked={!!hasTrackingConsent} />
153
          </div>
154
          <InfoText className={classes.infoText}>Enable usage data and errors to be sent to help us improve our service.</InfoText>
155
        </div>
156
      )}
157
    </div>
158
  );
159
};
160

161
export default SelfUserManagement;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc