2021-07-22 22:17:55 +00:00
|
|
|
import {loadGristDoc, loadUserManager} from 'app/client/lib/imports';
|
2021-08-18 17:49:34 +00:00
|
|
|
import {AppModel} from 'app/client/models/AppModel';
|
2020-10-02 15:10:00 +00:00
|
|
|
import {DocPageModel} from 'app/client/models/DocPageModel';
|
|
|
|
import {getLoginOrSignupUrl, getLoginUrl, getLogoutUrl, urlState} from 'app/client/models/gristUrlState';
|
|
|
|
import {createUserImage} from 'app/client/ui/UserImage';
|
2021-01-21 19:12:24 +00:00
|
|
|
import * as viewport from 'app/client/ui/viewport';
|
2021-02-25 16:11:59 +00:00
|
|
|
import {primaryButton} from 'app/client/ui2018/buttons';
|
2021-01-21 19:12:24 +00:00
|
|
|
import {colors, mediaDeviceNotSmall, testId, vars} from 'app/client/ui2018/cssVars';
|
2020-10-02 15:10:00 +00:00
|
|
|
import {icon} from 'app/client/ui2018/icons';
|
|
|
|
import {menu, menuDivider, menuItem, menuItemLink, menuSubHeader} from 'app/client/ui2018/menus';
|
|
|
|
import {commonUrls} from 'app/common/gristUrls';
|
|
|
|
import {FullUser} from 'app/common/LoginSessionAPI';
|
|
|
|
import * as roles from 'app/common/roles';
|
2021-11-05 14:47:17 +00:00
|
|
|
import {Organization, SUPPORT_EMAIL} from 'app/common/UserAPI';
|
2021-08-18 17:49:34 +00:00
|
|
|
import {Disposable, dom, DomElementArg, styled} from 'grainjs';
|
2020-10-02 15:10:00 +00:00
|
|
|
import {cssMenuItem} from 'popweasel';
|
2021-11-05 14:47:17 +00:00
|
|
|
import {buildSiteSwitcher} from 'app/client/ui/SiteSwitcher';
|
2020-10-02 15:10:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the user-icon that opens the account menu. When no user is logged in, render a Sign-in
|
|
|
|
* button instead.
|
|
|
|
*/
|
|
|
|
export class AccountWidget extends Disposable {
|
|
|
|
constructor(private _appModel: AppModel, private _docPageModel?: DocPageModel) {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public buildDom() {
|
|
|
|
return cssAccountWidget(
|
|
|
|
dom.domComputed(this._appModel.currentValidUser, (user) =>
|
|
|
|
(user ?
|
|
|
|
cssUserIcon(createUserImage(user, 'medium', testId('user-icon')),
|
|
|
|
menu(() => this._makeAccountMenu(user), {placement: 'bottom-end'}),
|
|
|
|
) :
|
2021-02-25 16:11:59 +00:00
|
|
|
cssSignInButton('Sign in', icon('Collapse'), testId('user-signin'),
|
|
|
|
menu(() => this._makeAccountMenu(user), {placement: 'bottom-end'}),
|
|
|
|
)
|
2020-10-02 15:10:00 +00:00
|
|
|
)
|
|
|
|
),
|
|
|
|
testId('dm-account'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the content of the account menu, with a list of available orgs, settings, and sign-out.
|
|
|
|
* Note that `user` should NOT be anonymous (none of the items are really relevant).
|
|
|
|
*/
|
2021-02-25 16:11:59 +00:00
|
|
|
private _makeAccountMenu(user: FullUser|null): DomElementArg[] {
|
2020-10-02 15:10:00 +00:00
|
|
|
// Opens the user-manager for the org.
|
2021-11-05 14:47:17 +00:00
|
|
|
// TODO: Factor out manageUsers, and related UI code, since AppHeader also uses it.
|
2020-10-02 15:10:00 +00:00
|
|
|
const manageUsers = async (org: Organization) => {
|
|
|
|
const api = this._appModel.api;
|
|
|
|
(await loadUserManager()).showUserManagerModal(api, {
|
|
|
|
permissionData: api.getOrgAccess(org.id),
|
|
|
|
activeEmail: user ? user.email : null,
|
|
|
|
resourceType: 'organization',
|
2021-11-05 14:47:17 +00:00
|
|
|
resourceId: org.id,
|
|
|
|
resource: org,
|
2020-10-02 15:10:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const currentOrg = this._appModel.currentOrg;
|
|
|
|
const gristDoc = this._docPageModel ? this._docPageModel.gristDoc.get() : null;
|
|
|
|
const isBillingManager = Boolean(currentOrg && currentOrg.billingAccount &&
|
2021-02-25 16:11:59 +00:00
|
|
|
(currentOrg.billingAccount.isManager || user?.email === SUPPORT_EMAIL));
|
|
|
|
|
|
|
|
// The 'Document Settings' item, when there is an open document.
|
|
|
|
const documentSettingsItem = (gristDoc ?
|
2021-07-22 22:17:55 +00:00
|
|
|
menuItem(async () => (await loadGristDoc()).showDocSettingsModal(gristDoc.docInfo, this._docPageModel!),
|
|
|
|
'Document Settings',
|
2021-02-25 16:11:59 +00:00
|
|
|
testId('dm-doc-settings')) :
|
|
|
|
null);
|
|
|
|
|
|
|
|
// The item to toggle mobile mode (presence of viewport meta tag).
|
|
|
|
const mobileModeToggle = menuItem(viewport.toggleViewport,
|
|
|
|
cssSmallDeviceOnly.cls(''), // Only show this toggle on small devices.
|
|
|
|
'Toggle Mobile Mode',
|
|
|
|
cssCheckmark('Tick', dom.show(viewport.viewportEnabled)),
|
|
|
|
testId('usermenu-toggle-mobile'),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!user) {
|
|
|
|
return [
|
|
|
|
menuItemLink({href: getLoginOrSignupUrl()}, 'Sign in'),
|
|
|
|
menuDivider(),
|
|
|
|
documentSettingsItem,
|
|
|
|
menuItemLink({href: commonUrls.plans}, 'Pricing'),
|
|
|
|
mobileModeToggle,
|
|
|
|
];
|
|
|
|
}
|
2020-10-02 15:10:00 +00:00
|
|
|
|
2021-08-18 17:49:34 +00:00
|
|
|
const users = this._appModel.topAppModel.users;
|
|
|
|
const orgs = this._appModel.topAppModel.orgs;
|
|
|
|
|
2020-10-02 15:10:00 +00:00
|
|
|
return [
|
|
|
|
cssUserInfo(
|
|
|
|
createUserImage(user, 'large'),
|
2022-01-07 18:11:52 +00:00
|
|
|
cssUserName(dom('span', user.name, testId('usermenu-name')),
|
2020-10-02 15:10:00 +00:00
|
|
|
cssEmail(user.email, testId('usermenu-email'))
|
|
|
|
)
|
|
|
|
),
|
2022-01-07 18:11:52 +00:00
|
|
|
menuItemLink(urlState().setLinkUrl({account: 'profile'}), 'Profile Settings'),
|
2020-10-02 15:10:00 +00:00
|
|
|
|
2021-02-25 16:11:59 +00:00
|
|
|
documentSettingsItem,
|
2020-10-02 15:10:00 +00:00
|
|
|
|
|
|
|
// Show 'Organization Settings' when on a home page of a valid org.
|
|
|
|
(!this._docPageModel && currentOrg && !currentOrg.owner ?
|
2021-11-05 14:47:17 +00:00
|
|
|
menuItem(() => manageUsers(currentOrg), 'Manage Team', testId('dm-org-access'),
|
2020-10-02 15:10:00 +00:00
|
|
|
dom.cls('disabled', !roles.canEditAccess(currentOrg.access))) :
|
|
|
|
// Don't show on doc pages, or for personal orgs.
|
|
|
|
null),
|
|
|
|
|
|
|
|
// Show link to billing pages.
|
|
|
|
currentOrg && !currentOrg.owner ?
|
|
|
|
// For links, disabling with just a class is hard; easier to just not make it a link.
|
|
|
|
// TODO weasel menus should support disabling menuItemLink.
|
|
|
|
(isBillingManager ?
|
|
|
|
menuItemLink(urlState().setLinkUrl({billing: 'billing'}), 'Billing Account') :
|
|
|
|
menuItem(() => null, 'Billing Account', dom.cls('disabled', true))
|
|
|
|
) :
|
|
|
|
menuItemLink({href: commonUrls.plans}, 'Upgrade Plan'),
|
|
|
|
|
2021-02-25 16:11:59 +00:00
|
|
|
mobileModeToggle,
|
2021-01-21 19:12:24 +00:00
|
|
|
|
2020-10-02 15:10:00 +00:00
|
|
|
// TODO Add section ("Here right now") listing icons of other users currently on this doc.
|
|
|
|
// (See Invision "Panels" near the bottom.)
|
|
|
|
|
|
|
|
// In case of a single-org setup, skip all the account-switching UI. We'll also skip the
|
|
|
|
// org-listing UI below.
|
|
|
|
this._appModel.topAppModel.isSingleOrg ? [] : [
|
|
|
|
menuDivider(),
|
2021-08-18 17:49:34 +00:00
|
|
|
menuSubHeader(dom.text((use) => use(users).length > 1 ? 'Switch Accounts' : 'Accounts')),
|
|
|
|
dom.forEach(users, (_user) => {
|
2020-10-02 15:10:00 +00:00
|
|
|
if (_user.id === user.id) { return null; }
|
|
|
|
return menuItem(() => this._switchAccount(_user),
|
|
|
|
cssSmallIconWrap(createUserImage(_user, 'small')),
|
|
|
|
cssOtherEmail(_user.email, testId('usermenu-other-email')),
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
menuItemLink({href: getLoginUrl()}, "Add Account", testId('dm-add-account')),
|
|
|
|
],
|
|
|
|
|
|
|
|
menuItemLink({href: getLogoutUrl()}, "Sign Out", testId('dm-log-out')),
|
|
|
|
|
2021-08-18 17:49:34 +00:00
|
|
|
dom.maybe((use) => use(orgs).length > 0, () => [
|
2020-10-02 15:10:00 +00:00
|
|
|
menuDivider(),
|
2021-11-05 14:47:17 +00:00
|
|
|
buildSiteSwitcher(this._appModel),
|
2020-10-02 15:10:00 +00:00
|
|
|
]),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch BrowserSession to use the given user for the currently loaded org.
|
|
|
|
private async _switchAccount(user: FullUser) {
|
|
|
|
await this._appModel.api.setSessionActive(user.email);
|
|
|
|
if (urlState().state.get().doc) {
|
|
|
|
// Document access level may have changed.
|
|
|
|
// If it was not accessible but now is, we currently need to reload the page to get
|
|
|
|
// a complete gristConfig for the document from the server.
|
|
|
|
// If it was accessible but now is not, it would suffice to reconnect the web socket.
|
|
|
|
// For simplicity, just reload from server in either case.
|
|
|
|
// TODO: get fancier here to avoid reload.
|
|
|
|
window.location.reload(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._appModel.topAppModel.initialize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const cssAccountWidget = styled('div', `
|
|
|
|
margin-right: 16px;
|
|
|
|
white-space: nowrap;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssUserIcon = styled('div', `
|
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
padding: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssUserInfo = styled('div', `
|
|
|
|
padding: 12px 24px 12px 16px;
|
|
|
|
min-width: 200px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssUserName = styled('div', `
|
|
|
|
margin-left: 8px;
|
|
|
|
font-size: ${vars.mediumFontSize};
|
|
|
|
font-weight: ${vars.headerControlTextWeight};
|
|
|
|
color: ${colors.dark};
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssEmail = styled('div', `
|
|
|
|
margin-top: 4px;
|
|
|
|
font-size: ${vars.smallFontSize};
|
|
|
|
font-weight: initial;
|
|
|
|
color: ${colors.slate};
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssSmallIconWrap = styled('div', `
|
|
|
|
flex: none;
|
|
|
|
margin: -4px 8px -4px 0px;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssOtherEmail = styled('div', `
|
|
|
|
color: ${colors.slate};
|
|
|
|
.${cssMenuItem.className}-sel & {
|
|
|
|
color: ${colors.light};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2021-01-21 19:12:24 +00:00
|
|
|
const cssCheckmark = styled(icon, `
|
|
|
|
flex: none;
|
|
|
|
margin-left: 16px;
|
|
|
|
--icon-color: ${colors.lightGreen};
|
|
|
|
`);
|
|
|
|
|
|
|
|
// Note that this css class hides the item when the device width is small (not based on viewport
|
|
|
|
// width, which may be larger). This only appropriate for when to enable the "mobile mode" toggle.
|
|
|
|
const cssSmallDeviceOnly = styled(menuItem, `
|
|
|
|
@media ${mediaDeviceNotSmall} {
|
|
|
|
& {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`);
|
2021-02-25 16:11:59 +00:00
|
|
|
|
|
|
|
const cssSignInButton = styled(primaryButton, `
|
|
|
|
display: flex;
|
|
|
|
margin: 8px;
|
|
|
|
gap: 4px;
|
|
|
|
`);
|