Skip to content

Commit

Permalink
feat: remove username
Browse files Browse the repository at this point in the history
remove username from header

VAN-1804
  • Loading branch information
mubbsharanwar committed Feb 6, 2024
1 parent 3b2a2bf commit e0b060d
Show file tree
Hide file tree
Showing 10 changed files with 211 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Environment Variables
* ``ACCOUNT_PROFILE_URL`` - The URL of the account profile page.
* ``ACCOUNT_SETTINGS_URL`` - The URL of the account settings page.
* ``AUTHN_MINIMAL_HEADER`` - A boolean flag which hides the main menu, user menu, and logged-out
* ``ENABLE_HEADER_WITHOUT_USERNAME`` - A boolean flag which hides the username from the header
menu items when truthy. This is intended to be used in micro-frontends like
frontend-app-authentication in which these menus are considered distractions from the user's task.

Expand Down
1 change: 1 addition & 0 deletions example/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ subscribe(APP_READY, () => {
authenticatedUser: {
userId: '123abc',
username: 'testuser',
name: 'test user',
roles: [],
administrator: false,
},
Expand Down
33 changes: 33 additions & 0 deletions src/DesktopHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ class DesktopHeader extends React.Component {
}

renderUserMenu() {
return (getConfig().ENABLE_HEADER_WITHOUT_USERNAME ? this.userMenuWithoutUsername() : this.userMenuWithUsername());
}

Check failure on line 78 in src/DesktopHeader.jsx

View workflow job for this annotation

GitHub Actions / tests

Trailing spaces not allowed
userMenuWithUsername() {
const {
userMenu,
avatar,
Expand All @@ -99,6 +103,33 @@ class DesktopHeader extends React.Component {
);
}

userMenuWithoutUsername() {
const {
userMenu,
avatar,
name,
intl,
} = this.props;

return (
<Menu transitionClassName="menu-dropdown" transitionTimeout={250}>
<MenuTrigger
tag="button"
aria-label={intl.formatMessage(messages['header.label.account.menu.for'], { name })}
className="btn btn-outline-primary d-inline-flex align-items-center pl-2 pr-3"
>
<Avatar size="1.5em" src={avatar} alt="" className="mr-2" />
<CaretIcon role="img" aria-hidden focusable="false" />
</MenuTrigger>
<MenuContent className="mb-0 dropdown-menu show dropdown-menu-right pin-right shadow py-2">
{userMenu.map(({ type, href, content }) => (
<a className={`dropdown-${type}`} key={`${type}-${content}`} href={href}>{content}</a>
))}
</MenuContent>
</Menu>
);
}

renderLoggedOutItems() {
const { loggedOutItems } = this.props;

Expand Down Expand Up @@ -178,6 +209,7 @@ DesktopHeader.propTypes = {
logoDestination: PropTypes.string,
avatar: PropTypes.string,
username: PropTypes.string,
name: PropTypes.string,
loggedIn: PropTypes.bool,

// i18n
Expand Down Expand Up @@ -207,6 +239,7 @@ DesktopHeader.defaultProps = {
logoDestination: null,
avatar: null,
username: null,
name: null,
loggedIn: false,
appMenu: null,
};
Expand Down
2 changes: 2 additions & 0 deletions src/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ensureConfig([
subscribe(APP_CONFIG_INITIALIZED, () => {
mergeConfig({
AUTHN_MINIMAL_HEADER: !!process.env.AUTHN_MINIMAL_HEADER,
ENABLE_HEADER_WITHOUT_USERNAME: !!process.env.ENABLE_HEADER_WITHOUT_USERNAME,
}, 'Header additional config');
});

Expand Down Expand Up @@ -94,6 +95,7 @@ const Header = ({ intl }) => {
logoDestination: `${config.LMS_BASE_URL}/dashboard`,
loggedIn: authenticatedUser !== null,
username: authenticatedUser !== null ? authenticatedUser.username : null,
name: authenticatedUser !== null ? authenticatedUser.name : null,
avatar: authenticatedUser !== null ? authenticatedUser.avatar : null,
mainMenu: getConfig().AUTHN_MINIMAL_HEADER ? [] : mainMenu,
userMenu: getConfig().AUTHN_MINIMAL_HEADER ? [] : userMenu,
Expand Down
28 changes: 27 additions & 1 deletion src/Header.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ describe('<Header />', () => {
expect(wrapper.toJSON()).toMatchSnapshot();
});

it('renders correctly for authenticated desktop', () => {
it('renders correctly for authenticated desktop with username', () => {
const contextValue = {
authenticatedUser: {
userId: 'abc123',
username: 'edX',
name: 'edX',
roles: [],
administrator: false,
},
Expand All @@ -61,6 +62,30 @@ describe('<Header />', () => {
expect(wrapper.toJSON()).toMatchSnapshot();
});

it('renders correctly for authenticated desktop without username', () => {
const contextValue = {
authenticatedUser: {
userId: 'abc123',
name: 'edX',
roles: [],
administrator: false,
},
config: {
LMS_BASE_URL: process.env.LMS_BASE_URL,
SITE_NAME: process.env.SITE_NAME,
LOGIN_URL: process.env.LOGIN_URL,
LOGOUT_URL: process.env.LOGOUT_URL,
LOGO_URL: process.env.LOGO_URL,
ENABLE_HEADER_WITHOUT_USERNAME: true,
},
};
const component = <HeaderComponent width={{ width: 1280 }} contextValue={contextValue} />;

const wrapper = TestRenderer.create(component);

expect(wrapper.toJSON()).toMatchSnapshot();
});

it('renders correctly for anonymous mobile', () => {
const contextValue = {
authenticatedUser: null,
Expand All @@ -84,6 +109,7 @@ describe('<Header />', () => {
authenticatedUser: {
userId: 'abc123',
username: 'edX',
name: 'edX',
roles: [],
administrator: false,
},
Expand Down
110 changes: 109 additions & 1 deletion src/__snapshots__/Header.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ exports[`<Header /> renders correctly for anonymous mobile 1`] = `
</header>
`;

exports[`<Header /> renders correctly for authenticated desktop 1`] = `
exports[`<Header /> renders correctly for authenticated desktop with username 1`] = `
<header
className="site-header-desktop"
>
Expand Down Expand Up @@ -305,6 +305,114 @@ exports[`<Header /> renders correctly for authenticated desktop 1`] = `
</header>
`;

exports[`<Header /> renders correctly for authenticated desktop without username 1`] = `
<header
className="site-header-desktop"
>
<a
className="nav-skip sr-only sr-only-focusable"
href="#main"
>
Skip to main content
</a>
<div
className="container-fluid null"
>
<div
className="nav-container position-relative d-flex align-items-center"
>
<a
className="logo"
href="http://localhost:18000/dashboard"
>
<img
alt="edX"
className="d-block"
src="https://edx-cdn.org/v3/default/logo.svg"
/>
</a>
<nav
aria-label="Main"
className="nav main-nav"
>
<a
className="nav-link"
href="http://localhost:18000/dashboard"
>
Courses
</a>
</nav>
<nav
aria-label="Secondary"
className="nav secondary-menu-container align-items-center ml-auto"
>
<div
className="menu null"
onKeyDown={[Function]}
onMouseEnter={[Function]}
onMouseLeave={[Function]}
>
<button
aria-expanded={false}
aria-haspopup="menu"
aria-label="Account menu for "
className="menu-trigger btn btn-outline-primary d-inline-flex align-items-center pl-2 pr-3"
onClick={[Function]}
>
<span
className="avatar overflow-hidden d-inline-flex rounded-circle mr-2"
style={
Object {
"height": "1.5em",
"width": "1.5em",
}
}
>
<svg
aria-hidden={true}
focusable="false"
height="24px"
role="img"
style={
Object {
"height": "1.5em",
"width": "1.5em",
}
}
version="1.1"
viewBox="0 0 24 24"
width="24px"
>
<path
d="M4.10255106,18.1351061 C4.7170266,16.0581859 8.01891846,14.4720277 12,14.4720277 C15.9810815,14.4720277 19.2829734,16.0581859 19.8974489,18.1351061 C21.215206,16.4412566 22,14.3122775 22,12 C22,6.4771525 17.5228475,2 12,2 C6.4771525,2 2,6.4771525 2,12 C2,14.3122775 2.78479405,16.4412566 4.10255106,18.1351061 Z M12,24 C5.372583,24 0,18.627417 0,12 C0,5.372583 5.372583,0 12,0 C18.627417,0 24,5.372583 24,12 C24,18.627417 18.627417,24 12,24 Z M12,13 C9.790861,13 8,11.209139 8,9 C8,6.790861 9.790861,5 12,5 C14.209139,5 16,6.790861 16,9 C16,11.209139 14.209139,13 12,13 Z"
fill="currentColor"
/>
</svg>
</span>
<svg
aria-hidden={true}
focusable="false"
height="16px"
role="img"
version="1.1"
viewBox="0 0 16 16"
width="16px"
>
<path
d="M7,4 L7,8 L11,8 L11,10 L5,10 L5,4 L7,4 Z"
fill="currentColor"
transform="translate(8.000000, 7.000000) rotate(-45.000000) translate(-8.000000, -7.000000) "
/>
</svg>
</button>
</div>
</nav>
</div>
</div>
</header>
`;

exports[`<Header /> renders correctly for authenticated mobile 1`] = `
<header
aria-label="Main"
Expand Down
22 changes: 15 additions & 7 deletions src/learning-header/AuthenticatedUserDropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,36 @@ import PropTypes from 'prop-types';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faUserCircle } from '@fortawesome/free-solid-svg-icons';
import { getConfig } from '@edx/frontend-platform';
import { Avatar } from '@openedx/paragon';

Check failure on line 7 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

'/home/runner/work/frontend-component-header/frontend-component-header/node_modules/@openedx/paragon/dist/index.js' imported multiple times
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
import { Dropdown } from '@openedx/paragon';

Check failure on line 9 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

'/home/runner/work/frontend-component-header/frontend-component-header/node_modules/@openedx/paragon/dist/index.js' imported multiple times

import messages from './messages';

const AuthenticatedUserDropdown = ({ intl, username }) => {
const AuthenticatedUserDropdown = ({ intl, username, avatar }) => {

Check failure on line 13 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

'avatar' is missing in props validation
const dashboardMenuItem = (
<Dropdown.Item href={`${getConfig().LMS_BASE_URL}/dashboard`}>
{intl.formatMessage(messages.dashboard)}
</Dropdown.Item>
);

const showDropdownToggle = (
<Dropdown.Toggle variant="outline-primary">
<FontAwesomeIcon icon={faUserCircle} className="d-md-none" size="lg" />

Check failure on line 22 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

Expected indentation of 6 space characters but found 8
{!getConfig().ENABLE_HEADER_WITHOUT_USERNAME ? (

Check failure on line 23 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

Expected indentation of 6 space characters but found 8
<span data-hj-suppress className="d-none d-md-inline" data-testid="username">
{username}
</span>
) : <Avatar size="sm" src={avatar} alt="" className="mr-2" />}
</Dropdown.Toggle>
);
console.log("ENABLE_HEADER_WITHOUT_USERNAME", getConfig().ENABLE_HEADER_WITHOUT_USERNAME)

Check warning on line 30 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

Unexpected console statement

Check failure on line 30 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

Strings must use singlequote

Check failure on line 30 in src/learning-header/AuthenticatedUserDropdown.jsx

View workflow job for this annotation

GitHub Actions / tests

Missing semicolon

return (
<>
<a className="text-gray-700" href={`${getConfig().SUPPORT_URL}`}>{intl.formatMessage(messages.help)}</a>
<Dropdown className="user-dropdown ml-3">
<Dropdown.Toggle variant="outline-primary">
<FontAwesomeIcon icon={faUserCircle} className="d-md-none" size="lg" />
<span data-hj-suppress className="d-none d-md-inline">
{username}
</span>
</Dropdown.Toggle>
{showDropdownToggle}
<Dropdown.Menu className="dropdown-menu-right">
{dashboardMenuItem}
<Dropdown.Item href={`${getConfig().ACCOUNT_PROFILE_URL}/u/${username}`}>
Expand Down
13 changes: 13 additions & 0 deletions src/learning-header/LearningHeader.test.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import { getConfig, mergeConfig } from '@edx/frontend-platform';
import {
authenticatedUser, initializeMockApp, render, screen,
} from '../setupTest';
Expand All @@ -15,6 +16,18 @@ describe('Header', () => {
expect(screen.getByText(authenticatedUser.username)).toBeInTheDocument();
});

it('displays user button without username', () => {
const config = getConfig();
mergeConfig({
...config,
ENABLE_HEADER_WITHOUT_USERNAME: true,
});

Check failure on line 25 in src/learning-header/LearningHeader.test.jsx

View workflow job for this annotation

GitHub Actions / tests

Trailing spaces not allowed
const { queryByText } = render(<Header />);
const userName = queryByText(config.authenticatedUser.username);
expect(userName).not.toBeInTheDocument();
});

it('displays course data', () => {
const courseData = {
courseOrg: 'course-org',
Expand Down
7 changes: 7 additions & 0 deletions src/studio-header/StudioHeader.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@ describe('Header', () => {
expect(avatarIcon).toBeVisible();
});

it.only('user menu should not contain username', async () => {
const newProps = { ...props, ENABLE_HEADER_WITHOUT_USERNAME: true };
const { container } = render(<RootWrapper {...newProps} />);
const userMenue = container.querySelector('#user-dropdown-menu');
expect(userMenue.textContent).toContain('');
});

it('should hide nav items if prop isHiddenMainMenu true', async () => {
const initialProps = { ...props, isHiddenMainMenu: true };
const { queryByTestId } = render(<RootWrapper {...initialProps} />);
Expand Down
4 changes: 3 additions & 1 deletion src/studio-header/UserMenu.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
import { getConfig } from '@edx/frontend-platform';
import {
Avatar,
} from '@openedx/paragon';
Expand Down Expand Up @@ -32,7 +33,8 @@ const UserMenu = ({
data-testid="avatar-icon"
/>
);
const title = isMobile ? avatar : <>{avatar}{username}</>;
const showUsername = !getConfig().ENABLE_HEADER_WITHOUT_USERNAME;
const title = isMobile ? avatar : <>{avatar}{showUsername && username}</>;

return (
<NavDropdownMenu
Expand Down

0 comments on commit e0b060d

Please sign in to comment.