-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c57c9e
commit ac40b13
Showing
2 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
app/webpacker/components/Persons/Edit/GeneralChangesTab.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from 'react'; | ||
import { Form } from 'semantic-ui-react'; | ||
|
||
export default function GeneralChangesTab({ user }) { | ||
return ( | ||
<Form> | ||
TODO+ | ||
</Form> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
import React, { useMemo } from 'react'; | ||
import { | ||
Container, Form, Header, Message, Tab, | ||
} from 'semantic-ui-react'; | ||
import WCAQueryClientProvider from '../../../lib/providers/WCAQueryClientProvider'; | ||
import I18n from '../../../lib/i18n'; | ||
import EditAvatar from '../../EditAvatar'; | ||
import RolesTab from '../../RolesTab'; | ||
import GeneralChangesTab from './GeneralChangesTab'; | ||
|
||
export default function Wrapper({ user, currentUser, editableFields }) { | ||
return ( | ||
<WCAQueryClientProvider> | ||
<EditUser user={user} currentUser={currentUser} editableFields={editableFields} /> | ||
</WCAQueryClientProvider> | ||
); | ||
} | ||
|
||
function getFormWarnings(user, currentUser) { | ||
const warnings = []; | ||
|
||
if (!user.confirmed_at) { | ||
warnings.push({ content: I18n.t('users.edit.unconfirmed_email', { email: user.email }) }); | ||
} | ||
|
||
if (user.unconfirmed_wca_id) { | ||
warnings.push({ content: I18n.t('users.edit.unconfirmed_email', { email: user.email }) }); | ||
} | ||
|
||
if (user.unconfirmed_email) { | ||
warnings.push({ content: I18n.t('users.edit.pending_mail_confirmation', { email: user.unconfirmed_email }) }); | ||
} | ||
|
||
if (user['dummy_account?']) { | ||
warnings.push({ | ||
content: `This account is a dummy account. It serves as a placeholder because the competitor | ||
uploaded a profile picture before the website supported WCA accounts. This | ||
account will be automatically deleted when another user is assigned WCA | ||
id ${user.wca_id}. | ||
See "https://github.com/thewca/worldcubeassociation.org/commit/32624f95b2c9e68967f8680ffa3ed7aefccd5319 for more details.`, | ||
}); | ||
} | ||
|
||
if (user.cannot_register_for_competition_reasons.length > 0) { | ||
warnings.push({ content: I18n.t('users.edit.please_fix_profile'), list: user.cannot_register_for_competition_reasons }); | ||
} | ||
|
||
if (currentUser.cannot_edit_data_reason_html) { | ||
warnings.push({ content: cannot_edit_data_reason_html }); | ||
} | ||
|
||
return warnings; | ||
} | ||
|
||
const getSlugFromPath = () => { | ||
if (window.location.hash) { | ||
return window.location.hash.substring(1); | ||
} | ||
return null; | ||
}; | ||
|
||
const tabIndexFromSlug = (panes) => { | ||
const pathSlug = getSlugFromPath(); | ||
if (!pathSlug) { | ||
return 0; | ||
} | ||
return panes.findIndex((p) => p.slug === pathSlug); | ||
}; | ||
|
||
const updatePath = (tabSlug) => { | ||
window.history.replaceState({}, '', `${window.location.pathname}#${tabSlug}`); | ||
}; | ||
|
||
function EditUser({ user, currentUser, editableFields }) { | ||
const warnings = useMemo(() => getFormWarnings(user), [user]); | ||
const panes = useMemo(() => [{ | ||
slug: 'general', | ||
menuItem: I18n.t('users.edit.general'), | ||
render: () => ( | ||
<GeneralChangesTab | ||
user={user} | ||
/> | ||
), | ||
}, | ||
// todo: if current_user.can_change_users_avatar?(@user) | ||
{ | ||
slug: 'avatar', | ||
menuItem: I18n.t('users.edit.avatar'), | ||
render: () => ( | ||
<EditAvatar | ||
userId={user.id} | ||
showStaffGuidelines={user['staff_or_any_delegate?']} | ||
uploadDisabled={!editableFields.include('pending_avatar')} | ||
canAdminAvatars={editableFields.include('remove_avatar')} | ||
canRemoveAvatar={currentUser['can_admin_results?']} | ||
/> | ||
), | ||
}, | ||
{ | ||
slug: 'roles', | ||
menuItem: I18n.t('en.users.edit.roles'), | ||
render: () => ( | ||
<RolesTab | ||
userId={user.id} | ||
/> | ||
), | ||
}], [user]); | ||
|
||
return ( | ||
<Container> | ||
<Header> | ||
{user.name} | ||
{' '} | ||
( | ||
<a href={`mailto:${user.email}`}>{user.email}</a> | ||
) | ||
</Header> | ||
{warnings.map((warning) => <Message warning list={warning.list}>{warning.content}</Message>)} | ||
<Tab | ||
defaultActiveIndex={tabIndexFromSlug(panes)} | ||
panes={panes} | ||
menu={{ color: 'orange' }} | ||
onTabChange={(e, { activeIndex }) => { | ||
const tab = panes[activeIndex]; | ||
updatePath(tab.slug); | ||
}} | ||
/> | ||
</Container> | ||
); | ||
} |