2024-01-31 14:35:41 +03:00
|
|
|
/** @file The mock API. */
|
|
|
|
import * as test from '@playwright/test'
|
|
|
|
|
2024-02-07 14:26:59 +03:00
|
|
|
import * as backend from '#/services/Backend'
|
|
|
|
import type * as remoteBackend from '#/services/RemoteBackend'
|
|
|
|
import * as remoteBackendPaths from '#/services/remoteBackendPaths'
|
|
|
|
|
|
|
|
import * as dateTime from '#/utilities/dateTime'
|
2024-01-31 14:35:41 +03:00
|
|
|
import * as object from '#/utilities/object'
|
|
|
|
import * as permissions from '#/utilities/permissions'
|
2024-02-07 14:26:59 +03:00
|
|
|
import * as uniqueString from '#/utilities/uniqueString'
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
import * as actions from './actions'
|
|
|
|
|
2024-01-31 14:35:41 +03:00
|
|
|
// =================
|
|
|
|
// === Constants ===
|
|
|
|
// =================
|
|
|
|
|
|
|
|
/** The HTTP status code representing a response with an empty body. */
|
|
|
|
const HTTP_STATUS_NO_CONTENT = 204
|
|
|
|
/** The HTTP status code representing a bad request. */
|
|
|
|
const HTTP_STATUS_BAD_REQUEST = 400
|
|
|
|
/** The HTTP status code representing a URL that does not exist. */
|
|
|
|
const HTTP_STATUS_NOT_FOUND = 404
|
|
|
|
/** An asset ID that is a path glob. */
|
|
|
|
const GLOB_ASSET_ID: backend.AssetId = backend.DirectoryId('*')
|
|
|
|
/** A directory ID that is a path glob. */
|
|
|
|
const GLOB_DIRECTORY_ID = backend.DirectoryId('*')
|
|
|
|
/** A project ID that is a path glob. */
|
|
|
|
const GLOB_PROJECT_ID = backend.ProjectId('*')
|
|
|
|
/** A tag ID that is a path glob. */
|
|
|
|
const GLOB_TAG_ID = backend.TagId('*')
|
|
|
|
/* eslint-enable no-restricted-syntax */
|
2024-03-08 06:14:26 +03:00
|
|
|
const BASE_URL = 'https://mock/'
|
2024-01-31 14:35:41 +03:00
|
|
|
|
|
|
|
// ===============
|
|
|
|
// === mockApi ===
|
|
|
|
// ===============
|
|
|
|
|
|
|
|
/** Parameters for {@link mockApi}. */
|
|
|
|
interface MockParams {
|
2024-02-07 14:26:59 +03:00
|
|
|
readonly page: test.Page
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Add route handlers for the mock API to a page. */
|
|
|
|
// This syntax is required for Playwright to work properly.
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
export async function mockApi({ page }: MockParams) {
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
const defaultEmail = 'email@example.com' as backend.EmailAddress
|
|
|
|
const defaultUsername = 'user name'
|
2024-06-20 19:19:01 +03:00
|
|
|
const defaultPassword = actions.VALID_PASSWORD
|
2024-02-13 12:21:40 +03:00
|
|
|
const defaultOrganizationId = backend.OrganizationId('organization-placeholder id')
|
2024-06-20 19:19:01 +03:00
|
|
|
const defaultOrganizationName = 'organization name'
|
impr(enso/cloud-v2#912): Add `organization_id` and `user_id` fields to `SimpleUser` (#9508)
- Updates the model types for the request/response bodies to match the backend.
- Renames `CreatePermissionRequestBody::userSubjects` to match `CreatePermissionRequestBody::actorsIds` on the backend
- Renames `UserInfo::organization_id` to camel case
- Adds `UserInfo::userId` field to match the backend
- Merges `SimpleUser` into `UserInfo`
Previously, `UserInfo`'s `OrganizationId` was serialized as `pk`. This
is not desired since `pk` is an implementation detail (relating to
DynamoDB). This commit renames the field to accurately reflect the type
of data it contains.
- Renames `User::id` to `User::organizationId`.
Previously, the user's organization ID was under the `id` field. As of
enso-cloud/cloud-v2#1098, this is no longer the case. The
`organizationId` field is no longer a user's primary identifier --
`userId` should be used for that purpose instead. So this field has been
renamed to `organizationId` to more clearly describe the purpose of the
field.
Affects the responses expected from the following endpoints:
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
- Adds `User::userId` field.
Previously, the user's organization ID was used to uniquely identify a
user. Now that multiple users can be invited to an organization, it is
no longer appropriate to use organization ID to uniquely refer to a
user. For this purpose, the backend has introduced the `userId` field.
Affects the responses expected from the following endpoints:
- `POST /users`
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
Removes the `user` param from `tryGetSingletonOwnerPermission`. This
param was previously required. It was required because a `userSubject`
was necessary to optimistically generate a `UserPermission`. With recent
refactors, a `userId` can be used in place of `userSubject` to generate
a `UserPermission`. The existing param `owner` provides the `userId`, so
the `user` param is redundant and can be removed.
- Removes `UserInfo` from the `FullUserSession`.
Previously, `UserInfo` in the `FullUserSession` was required to obtain a
`userSubject`. Now, `userSubject` has been deprecated in favour of
`userId`. `User` provides `userId`, and is present in the
`FullUserSession`. Thus, this commit removes `UserInfo` from the
`FullUserSession` since it is redundant.
- Renames `UserInfo` fields to `camelCase`
Previously, `UserInfo`'s fields were serialized as `snake_case`. This is
not desired since the convention for the frontend is to use `camelCase`
for field names where possible. This commit renames the fields to be
`camelCase`, now that the backend has been updated accordingly.
- Sorts by `userId` rather than `email`
- Compares by `userId` rather than `email`
- Extends `User` from `UserInfo`
After refactoring, `UserInfo` is now a subset of `User`. To remove
duplication, this commit modifies `User` to extend `UserInfo`.
2024-03-27 17:58:08 +03:00
|
|
|
const defaultUserId = backend.UserId('user-placeholder id')
|
2024-01-31 14:35:41 +03:00
|
|
|
const defaultDirectoryId = backend.DirectoryId('directory-placeholder id')
|
2024-02-13 12:21:40 +03:00
|
|
|
const defaultUser: backend.User = {
|
2024-01-31 14:35:41 +03:00
|
|
|
email: defaultEmail,
|
|
|
|
name: defaultUsername,
|
impr(enso/cloud-v2#912): Add `organization_id` and `user_id` fields to `SimpleUser` (#9508)
- Updates the model types for the request/response bodies to match the backend.
- Renames `CreatePermissionRequestBody::userSubjects` to match `CreatePermissionRequestBody::actorsIds` on the backend
- Renames `UserInfo::organization_id` to camel case
- Adds `UserInfo::userId` field to match the backend
- Merges `SimpleUser` into `UserInfo`
Previously, `UserInfo`'s `OrganizationId` was serialized as `pk`. This
is not desired since `pk` is an implementation detail (relating to
DynamoDB). This commit renames the field to accurately reflect the type
of data it contains.
- Renames `User::id` to `User::organizationId`.
Previously, the user's organization ID was under the `id` field. As of
enso-cloud/cloud-v2#1098, this is no longer the case. The
`organizationId` field is no longer a user's primary identifier --
`userId` should be used for that purpose instead. So this field has been
renamed to `organizationId` to more clearly describe the purpose of the
field.
Affects the responses expected from the following endpoints:
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
- Adds `User::userId` field.
Previously, the user's organization ID was used to uniquely identify a
user. Now that multiple users can be invited to an organization, it is
no longer appropriate to use organization ID to uniquely refer to a
user. For this purpose, the backend has introduced the `userId` field.
Affects the responses expected from the following endpoints:
- `POST /users`
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
Removes the `user` param from `tryGetSingletonOwnerPermission`. This
param was previously required. It was required because a `userSubject`
was necessary to optimistically generate a `UserPermission`. With recent
refactors, a `userId` can be used in place of `userSubject` to generate
a `UserPermission`. The existing param `owner` provides the `userId`, so
the `user` param is redundant and can be removed.
- Removes `UserInfo` from the `FullUserSession`.
Previously, `UserInfo` in the `FullUserSession` was required to obtain a
`userSubject`. Now, `userSubject` has been deprecated in favour of
`userId`. `User` provides `userId`, and is present in the
`FullUserSession`. Thus, this commit removes `UserInfo` from the
`FullUserSession` since it is redundant.
- Renames `UserInfo` fields to `camelCase`
Previously, `UserInfo`'s fields were serialized as `snake_case`. This is
not desired since the convention for the frontend is to use `camelCase`
for field names where possible. This commit renames the fields to be
`camelCase`, now that the backend has been updated accordingly.
- Sorts by `userId` rather than `email`
- Compares by `userId` rather than `email`
- Extends `User` from `UserInfo`
After refactoring, `UserInfo` is now a subset of `User`. To remove
duplication, this commit modifies `User` to extend `UserInfo`.
2024-03-27 17:58:08 +03:00
|
|
|
organizationId: defaultOrganizationId,
|
|
|
|
userId: defaultUserId,
|
2024-01-31 14:35:41 +03:00
|
|
|
isEnabled: true,
|
|
|
|
rootDirectoryId: defaultDirectoryId,
|
2024-05-09 15:04:35 +03:00
|
|
|
userGroups: null,
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
const defaultOrganization: backend.OrganizationInfo = {
|
|
|
|
id: defaultOrganizationId,
|
|
|
|
name: defaultOrganizationName,
|
|
|
|
address: null,
|
|
|
|
email: null,
|
|
|
|
picture: null,
|
|
|
|
website: null,
|
|
|
|
subscription: {},
|
|
|
|
}
|
2024-05-31 12:59:25 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
let isOnline = true
|
2024-02-13 12:21:40 +03:00
|
|
|
let currentUser: backend.User | null = defaultUser
|
2024-06-20 19:19:01 +03:00
|
|
|
let currentProfilePicture: string | null = null
|
|
|
|
let currentPassword = defaultPassword
|
2024-02-26 18:50:00 +03:00
|
|
|
let currentOrganization: backend.OrganizationInfo | null = null
|
2024-06-20 19:19:01 +03:00
|
|
|
let currentOrganizationProfilePicture: string | null = null
|
2024-05-31 12:59:25 +03:00
|
|
|
|
2024-01-31 14:35:41 +03:00
|
|
|
const assetMap = new Map<backend.AssetId, backend.AnyAsset>()
|
|
|
|
const deletedAssets = new Set<backend.AssetId>()
|
|
|
|
const assets: backend.AnyAsset[] = []
|
|
|
|
const labels: backend.Label[] = []
|
|
|
|
const labelsByValue = new Map<backend.LabelName, backend.Label>()
|
|
|
|
const labelMap = new Map<backend.TagId, backend.Label>()
|
2024-06-20 19:19:01 +03:00
|
|
|
const users: backend.User[] = [defaultUser]
|
|
|
|
const usersMap = new Map<backend.UserId, backend.User>()
|
|
|
|
const userGroups: backend.UserGroupInfo[] = []
|
|
|
|
|
|
|
|
usersMap.set(defaultUser.userId, defaultUser)
|
2024-01-31 14:35:41 +03:00
|
|
|
|
|
|
|
const addAsset = <T extends backend.AnyAsset>(asset: T) => {
|
|
|
|
assets.push(asset)
|
|
|
|
assetMap.set(asset.id, asset)
|
|
|
|
return asset
|
|
|
|
}
|
|
|
|
|
|
|
|
const deleteAsset = (assetId: backend.AssetId) => {
|
2024-06-20 19:19:01 +03:00
|
|
|
const alreadyDeleted = deletedAssets.has(assetId)
|
2024-01-31 14:35:41 +03:00
|
|
|
deletedAssets.add(assetId)
|
2024-06-20 19:19:01 +03:00
|
|
|
return !alreadyDeleted
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const undeleteAsset = (assetId: backend.AssetId) => {
|
2024-06-20 19:19:01 +03:00
|
|
|
const wasDeleted = deletedAssets.has(assetId)
|
2024-01-31 14:35:41 +03:00
|
|
|
deletedAssets.delete(assetId)
|
2024-06-20 19:19:01 +03:00
|
|
|
return wasDeleted
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const createDirectory = (
|
|
|
|
title: string,
|
|
|
|
rest: Partial<backend.DirectoryAsset> = {}
|
|
|
|
): backend.DirectoryAsset =>
|
|
|
|
object.merge(
|
|
|
|
{
|
|
|
|
type: backend.AssetType.directory,
|
|
|
|
id: backend.DirectoryId('directory-' + uniqueString.uniqueString()),
|
|
|
|
projectState: null,
|
|
|
|
title,
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
description: null,
|
|
|
|
labels: [],
|
|
|
|
parentId: defaultDirectoryId,
|
|
|
|
permissions: [],
|
|
|
|
},
|
|
|
|
rest
|
|
|
|
)
|
|
|
|
|
|
|
|
const createProject = (
|
|
|
|
title: string,
|
|
|
|
rest: Partial<backend.ProjectAsset> = {}
|
|
|
|
): backend.ProjectAsset =>
|
|
|
|
object.merge(
|
|
|
|
{
|
|
|
|
type: backend.AssetType.project,
|
|
|
|
id: backend.ProjectId('project-' + uniqueString.uniqueString()),
|
|
|
|
projectState: {
|
|
|
|
type: backend.ProjectState.opened,
|
2024-04-11 23:02:29 +03:00
|
|
|
volumeId: '',
|
2024-01-31 14:35:41 +03:00
|
|
|
},
|
|
|
|
title,
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
description: null,
|
|
|
|
labels: [],
|
|
|
|
parentId: defaultDirectoryId,
|
|
|
|
permissions: [],
|
|
|
|
},
|
|
|
|
rest
|
|
|
|
)
|
|
|
|
|
|
|
|
const createFile = (title: string, rest: Partial<backend.FileAsset> = {}): backend.FileAsset =>
|
|
|
|
object.merge(
|
|
|
|
{
|
|
|
|
type: backend.AssetType.file,
|
|
|
|
id: backend.FileId('file-' + uniqueString.uniqueString()),
|
|
|
|
projectState: null,
|
|
|
|
title,
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
description: null,
|
|
|
|
labels: [],
|
|
|
|
parentId: defaultDirectoryId,
|
|
|
|
permissions: [],
|
|
|
|
},
|
|
|
|
rest
|
|
|
|
)
|
|
|
|
|
|
|
|
const createSecret = (
|
|
|
|
title: string,
|
|
|
|
rest: Partial<backend.SecretAsset> = {}
|
|
|
|
): backend.SecretAsset =>
|
|
|
|
object.merge(
|
|
|
|
{
|
|
|
|
type: backend.AssetType.secret,
|
|
|
|
id: backend.SecretId('secret-' + uniqueString.uniqueString()),
|
|
|
|
projectState: null,
|
|
|
|
title,
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
description: null,
|
|
|
|
labels: [],
|
|
|
|
parentId: defaultDirectoryId,
|
|
|
|
permissions: [],
|
|
|
|
},
|
|
|
|
rest
|
|
|
|
)
|
|
|
|
|
|
|
|
const createLabel = (value: string, color: backend.LChColor): backend.Label => ({
|
|
|
|
id: backend.TagId('tag-' + uniqueString.uniqueString()),
|
|
|
|
value: backend.LabelName(value),
|
|
|
|
color,
|
|
|
|
})
|
|
|
|
|
|
|
|
const addDirectory = (title: string, rest?: Partial<backend.DirectoryAsset>) => {
|
|
|
|
return addAsset(createDirectory(title, rest))
|
|
|
|
}
|
|
|
|
|
|
|
|
const addProject = (title: string, rest?: Partial<backend.ProjectAsset>) => {
|
|
|
|
return addAsset(createProject(title, rest))
|
|
|
|
}
|
|
|
|
|
|
|
|
const addFile = (title: string, rest?: Partial<backend.FileAsset>) => {
|
|
|
|
return addAsset(createFile(title, rest))
|
|
|
|
}
|
|
|
|
|
|
|
|
const addSecret = (title: string, rest?: Partial<backend.SecretAsset>) => {
|
|
|
|
return addAsset(createSecret(title, rest))
|
|
|
|
}
|
|
|
|
|
|
|
|
const addLabel = (value: string, color: backend.LChColor) => {
|
|
|
|
const label = createLabel(value, color)
|
|
|
|
labels.push(label)
|
|
|
|
labelsByValue.set(label.value, label)
|
|
|
|
labelMap.set(label.id, label)
|
|
|
|
return label
|
|
|
|
}
|
|
|
|
|
|
|
|
const setLabels = (id: backend.AssetId, newLabels: backend.LabelName[]) => {
|
|
|
|
const ids = new Set<backend.AssetId>([id])
|
|
|
|
for (const [innerId, asset] of assetMap) {
|
|
|
|
if (ids.has(asset.parentId)) {
|
|
|
|
ids.add(innerId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (const innerId of ids) {
|
|
|
|
const asset = assetMap.get(innerId)
|
|
|
|
if (asset != null) {
|
2024-02-07 14:26:59 +03:00
|
|
|
object.unsafeMutable(asset).labels = newLabels
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
const addUser = (name: string, rest: Partial<backend.User> = {}) => {
|
|
|
|
const organizationId = currentOrganization?.id ?? defaultOrganizationId
|
|
|
|
const user: backend.User = {
|
|
|
|
userId: backend.UserId(`user-${uniqueString.uniqueString()}`),
|
|
|
|
name,
|
|
|
|
email: backend.EmailAddress(`${name}@example.org`),
|
|
|
|
organizationId,
|
|
|
|
rootDirectoryId: backend.DirectoryId(organizationId.replace(/^organization-/, 'directory-')),
|
|
|
|
isEnabled: true,
|
|
|
|
userGroups: null,
|
|
|
|
...rest,
|
|
|
|
}
|
|
|
|
users.push(user)
|
|
|
|
usersMap.set(user.userId, user)
|
|
|
|
return user
|
|
|
|
}
|
Refactor CSS; address some design issues (#9260)
- Implement https://github.com/enso-org/cloud-v2/issues/924
- Refactor all numbers out to CSS variables
- Implement some issues raised in the design meeting
- The columns selector now only contains *hidden* columns, rather than all of them.
- Unified opacity for active (100%), selectable and hovered (75%), selectable (50%) and disabled (30%)
- Easily configurable if we want to change it in the future, so the specific values don't matter too much for now.
- Always show asset right panel if it is enabled - display placeholder text if <1 or >1 asset is selected
- Hide docs icon that was in the top right assets menubar (next to the gear icon for asset settings) (as backend functionality has yet to be implemented)
- Clicking a user in the "Shared with" column now adds them to the search as `owner:<username>`
- Add a gap between adjacent rows. This makes each row more visually distinct when many rows are selected
- Center the left column (the first column) of the context menu below the mouse, rather than centering the entire context menu.
- Fix regressions caused by CSS refactor
- Make keyboard selection indicator for asset rows rounded again
- Other misc. fixes and improvements
- Slightly modified styling of chat reaction bar
- Hide the row containing the "New Project" button in the cloud drive, when not in the "Home" drive tab
- Animate rotation of column sort arrow when clicking on a column to change the sort order
- Consistent duration of arrow rotation animation for folder arrows, column sort arrows, chat thread list arrows
- Consistent icon for sort arrow for folders and the chat thread list
- Minor adjustment of styles for optional properties in the Data Link input
Not included in this PR:
- Custom (HTML) scrollbars for consistency across all browsers and all OSes (except perhaps touchscreens)
- Potentially time-consuming to look for a library (and not quite trivial to implement ourselves)
- Columns sliding left as they expand and right as they collapse
- Also non-trivial, especially when taking into account horizontal scrolling.
- Fixing styles to closer resemble Figma design
- As (kinda) mentioned in the meeting - ideally it should be pixel perfect, *but* value consistency with other spacings, opacities etc. over being 100% pixel-perfect
- However, it has *partly* been done - mostly for the home page. It's entirely possible that changes made afterwards broke the spacing again though.
# Important Notes
None
2024-03-13 13:32:05 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
const deleteUser = (userId: backend.UserId) => {
|
|
|
|
usersMap.delete(userId)
|
|
|
|
const index = users.findIndex(user => user.userId === userId)
|
|
|
|
if (index === -1) {
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
users.splice(index, 1)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
const addUserGroup = (name: string, rest: Partial<backend.UserGroupInfo>) => {
|
|
|
|
const userGroup: backend.UserGroupInfo = {
|
|
|
|
id: backend.UserGroupId(`usergroup-${uniqueString.uniqueString()}`),
|
|
|
|
groupName: name,
|
|
|
|
organizationId: currentOrganization?.id ?? defaultOrganizationId,
|
|
|
|
...rest,
|
|
|
|
}
|
|
|
|
userGroups.push(userGroup)
|
|
|
|
return userGroup
|
|
|
|
}
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
const deleteUserGroup = (userGroupId: backend.UserGroupId) => {
|
|
|
|
const index = userGroups.findIndex(userGroup => userGroup.id === userGroupId)
|
|
|
|
if (index === -1) {
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
users.splice(index, 1)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
// addPermission,
|
|
|
|
// deletePermission,
|
|
|
|
// addUserGroupToUser,
|
|
|
|
// deleteUserGroupFromUser,
|
|
|
|
const addUserGroupToUser = (userId: backend.UserId, userGroupId: backend.UserGroupId) => {
|
|
|
|
const user = usersMap.get(userId)
|
|
|
|
if (user == null || user.userGroups?.includes(userGroupId) === true) {
|
|
|
|
// The user does not exist, or they are already in this group.
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
const newUserGroups = object.unsafeMutable(user.userGroups ?? [])
|
|
|
|
newUserGroups.push(userGroupId)
|
|
|
|
object.unsafeMutable(user).userGroups = newUserGroups
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const removeUserGroupFromUser = (userId: backend.UserId, userGroupId: backend.UserGroupId) => {
|
|
|
|
const user = usersMap.get(userId)
|
|
|
|
if (user?.userGroups?.includes(userGroupId) !== true) {
|
|
|
|
// The user does not exist, or they are already not in this group.
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
object.unsafeMutable(user.userGroups).splice(user.userGroups.indexOf(userGroupId), 1)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await test.test.step('Mock API', async () => {
|
|
|
|
const method =
|
|
|
|
(theMethod: string) =>
|
|
|
|
async (url: string, callback: (route: test.Route, request: test.Request) => unknown) => {
|
|
|
|
await page.route(BASE_URL + url, async (route, request) => {
|
|
|
|
if (request.method() !== theMethod) {
|
|
|
|
await route.fallback()
|
|
|
|
} else {
|
|
|
|
const result = await callback(route, request)
|
|
|
|
// `null` counts as a JSON value that we will want to return.
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
if (result !== undefined) {
|
|
|
|
await route.fulfill({ json: result })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
const get = method('GET')
|
|
|
|
const put = method('PUT')
|
|
|
|
const post = method('POST')
|
|
|
|
const patch = method('PATCH')
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
const delete_ = method('DELETE')
|
|
|
|
|
|
|
|
await page.route('https://cdn.enso.org/**', route => route.fulfill())
|
|
|
|
await page.route('https://www.google-analytics.com/**', route => route.fulfill())
|
|
|
|
await page.route('https://www.googletagmanager.com/gtag/js*', route =>
|
|
|
|
route.fulfill({ contentType: 'text/javascript', body: 'export {};' })
|
|
|
|
)
|
|
|
|
const isActuallyOnline = await page.evaluate(() => navigator.onLine)
|
|
|
|
if (!isActuallyOnline) {
|
|
|
|
await page.route('https://fonts.googleapis.com/*', route => route.abort())
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
await page.route(BASE_URL + '**', (_route, request) => {
|
|
|
|
throw new Error(`Missing route handler for '${request.url().replace(BASE_URL, '')}'.`)
|
|
|
|
})
|
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
// === Mock Cognito endpoints ===
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
await page.route('https://mock-cognito.com/change-password', async (route, request) => {
|
|
|
|
if (request.method() !== 'POST') {
|
|
|
|
await route.fallback()
|
|
|
|
} else {
|
|
|
|
/** The type for the JSON request payload for this endpoint. */
|
|
|
|
interface Body {
|
|
|
|
readonly oldPassword: string
|
|
|
|
readonly newPassword: string
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
// The type of the body sent by this app is statically known.
|
2024-06-20 19:19:01 +03:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: Body = await request.postDataJSON()
|
|
|
|
if (body.oldPassword === currentPassword) {
|
|
|
|
currentPassword = body.newPassword
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_NO_CONTENT })
|
|
|
|
} else {
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_BAD_REQUEST })
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
// === Endpoints returning arrays ===
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
await get(remoteBackendPaths.LIST_DIRECTORY_PATH + '*', (_route, request) => {
|
|
|
|
/** The type for the search query for this endpoint. */
|
|
|
|
interface Query {
|
|
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
readonly parent_id?: string
|
|
|
|
readonly filter_by?: backend.FilterBy
|
|
|
|
readonly labels?: backend.LabelName[]
|
|
|
|
readonly recent_projects?: boolean
|
|
|
|
/* eslint-enable @typescript-eslint/naming-convention */
|
|
|
|
}
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
const body = Object.fromEntries(
|
|
|
|
new URL(request.url()).searchParams.entries()
|
|
|
|
) as unknown as Query
|
|
|
|
const parentId = body.parent_id ?? defaultDirectoryId
|
|
|
|
let filteredAssets = assets.filter(asset => asset.parentId === parentId)
|
|
|
|
// This lint rule is broken; there is clearly a case for `undefined` below.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check
|
|
|
|
switch (body.filter_by) {
|
|
|
|
case backend.FilterBy.active: {
|
|
|
|
filteredAssets = filteredAssets.filter(asset => !deletedAssets.has(asset.id))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case backend.FilterBy.trashed: {
|
|
|
|
filteredAssets = filteredAssets.filter(asset => deletedAssets.has(asset.id))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case backend.FilterBy.recent: {
|
|
|
|
filteredAssets = assets
|
|
|
|
.filter(asset => !deletedAssets.has(asset.id))
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
|
|
|
|
.slice(0, 10)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case backend.FilterBy.all:
|
|
|
|
case null: {
|
|
|
|
// do nothing
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
case undefined: {
|
|
|
|
// do nothing
|
|
|
|
break
|
|
|
|
}
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
filteredAssets.sort(
|
|
|
|
(a, b) => backend.ASSET_TYPE_ORDER[a.type] - backend.ASSET_TYPE_ORDER[b.type]
|
|
|
|
)
|
|
|
|
const json: remoteBackend.ListDirectoryResponseBody = { assets: filteredAssets }
|
|
|
|
return json
|
|
|
|
})
|
|
|
|
await get(
|
|
|
|
remoteBackendPaths.LIST_FILES_PATH + '*',
|
|
|
|
() => ({ files: [] }) satisfies remoteBackend.ListFilesResponseBody
|
|
|
|
)
|
|
|
|
await get(
|
|
|
|
remoteBackendPaths.LIST_PROJECTS_PATH + '*',
|
|
|
|
() => ({ projects: [] }) satisfies remoteBackend.ListProjectsResponseBody
|
2024-01-31 14:35:41 +03:00
|
|
|
)
|
2024-06-20 19:19:01 +03:00
|
|
|
await get(
|
|
|
|
remoteBackendPaths.LIST_SECRETS_PATH + '*',
|
|
|
|
() => ({ secrets: [] }) satisfies remoteBackend.ListSecretsResponseBody
|
|
|
|
)
|
|
|
|
await get(
|
|
|
|
remoteBackendPaths.LIST_TAGS_PATH + '*',
|
|
|
|
() => ({ tags: labels }) satisfies remoteBackend.ListTagsResponseBody
|
|
|
|
)
|
|
|
|
await get(remoteBackendPaths.LIST_USERS_PATH + '*', async route => {
|
|
|
|
if (currentUser != null) {
|
|
|
|
return { users } satisfies remoteBackend.ListUsersResponseBody
|
|
|
|
} else {
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_BAD_REQUEST })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await get(remoteBackendPaths.LIST_VERSIONS_PATH + '*', (_route, request) => ({
|
|
|
|
versions: [
|
|
|
|
{
|
|
|
|
ami: null,
|
|
|
|
created: dateTime.toRfc3339(new Date()),
|
|
|
|
number: {
|
|
|
|
lifecycle:
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
'Development' satisfies `${backend.VersionLifecycle.development}` as backend.VersionLifecycle.development,
|
|
|
|
value: '2023.2.1-dev',
|
|
|
|
},
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention, no-restricted-syntax
|
|
|
|
version_type: (new URL(request.url()).searchParams.get('version_type') ??
|
|
|
|
'') as backend.VersionType,
|
|
|
|
} satisfies backend.Version,
|
|
|
|
],
|
|
|
|
}))
|
|
|
|
|
|
|
|
// === Endpoints with dummy implementations ===
|
|
|
|
|
|
|
|
await get(remoteBackendPaths.getProjectDetailsPath(GLOB_PROJECT_ID), (_route, request) => {
|
|
|
|
const projectId = request.url().match(/[/]projects[/](.+?)[/]copy/)?.[1] ?? ''
|
|
|
|
return {
|
|
|
|
organizationId: defaultOrganizationId,
|
|
|
|
projectId: backend.ProjectId(projectId),
|
|
|
|
name: 'example project name',
|
|
|
|
state: {
|
|
|
|
type: backend.ProjectState.opened,
|
|
|
|
volumeId: '',
|
|
|
|
openedBy: defaultEmail,
|
|
|
|
},
|
|
|
|
packageName: 'Project_root',
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
ide_version: null,
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
engine_version: {
|
|
|
|
value: '2023.2.1-nightly.2023.9.29',
|
|
|
|
lifecycle: backend.VersionLifecycle.development,
|
|
|
|
},
|
|
|
|
address: backend.Address('ws://example.com/'),
|
|
|
|
} satisfies backend.ProjectRaw
|
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
|
|
|
|
// === Endpoints returning `void` ===
|
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.copyAssetPath(GLOB_ASSET_ID), async (route, request) => {
|
|
|
|
/** The type for the JSON request payload for this endpoint. */
|
|
|
|
interface Body {
|
|
|
|
readonly parentDirectoryId: backend.DirectoryId
|
|
|
|
}
|
|
|
|
const assetId = request.url().match(/[/]assets[/](.+?)[/]copy/)?.[1]
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
|
|
const asset = assetId != null ? assetMap.get(assetId as backend.AssetId) : null
|
|
|
|
if (asset == null) {
|
|
|
|
if (assetId == null) {
|
|
|
|
await route.fulfill({
|
|
|
|
status: HTTP_STATUS_BAD_REQUEST,
|
Offline Mode Support (#10317)
#### Tl;dr
Closes: enso-org/cloud-v2#1283
This PR significantly reimplements Offline mode
<details><summary>Demo Presentation</summary>
<p>
https://github.com/enso-org/enso/assets/61194245/752d0423-9c0a-43ba-91e3-4a6688f77034
</p>
</details>
---
#### Context:
Offline mode is one of the core features of the dashboard. Unfortunately, after adding new features and a few refactoring, we lost the ability to work offline.
This PR should bring this functionality back, with a few key differences:
1. We require users to sign in before using the dashboard even in local mode.
2. Once a user is logged in, we allow him to work with local files
3. If a user closes the dashboard, and then open it, he can continue using it in offline mode
#### This Change:
What does this change do in the larger context? Specific details to highlight for review:
1. Reimplements `<AuthProvider />` functionality, now it implemented on top of `<Suspense />` and ReactQuery
2. Reimplements Backend module flow, now remote backend is always created, You no longer need to check if the RemoteBackend is present
3. Introduces new `<Suspense />` component, which is aware of offline status
4. Introduce new offline-related hooks
5. Add a banner to the form if it's unable to submit it offline
6. Refactor `InviteUserDialog` to the new `<Form />` component
7. Fixes redirect bug when the app doesn't redirect a user to the dashboard after logging in
8. Fixes strange behavior when `/users/me` could stuck into infinite refetch
9. Redesign the Cloud table for offline mode.
10. Adds blocking UI dialog when a user clicks "log out" button
#### Test Plan:
This PR requires thorough QA on the login flow across the browser and IDE. All redirect logic must stay unchanged.
---
2024-06-21 10:14:40 +03:00
|
|
|
json: { message: 'Invalid Asset ID' },
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
} else {
|
2024-06-20 19:19:01 +03:00
|
|
|
await route.fulfill({
|
|
|
|
status: HTTP_STATUS_NOT_FOUND,
|
Offline Mode Support (#10317)
#### Tl;dr
Closes: enso-org/cloud-v2#1283
This PR significantly reimplements Offline mode
<details><summary>Demo Presentation</summary>
<p>
https://github.com/enso-org/enso/assets/61194245/752d0423-9c0a-43ba-91e3-4a6688f77034
</p>
</details>
---
#### Context:
Offline mode is one of the core features of the dashboard. Unfortunately, after adding new features and a few refactoring, we lost the ability to work offline.
This PR should bring this functionality back, with a few key differences:
1. We require users to sign in before using the dashboard even in local mode.
2. Once a user is logged in, we allow him to work with local files
3. If a user closes the dashboard, and then open it, he can continue using it in offline mode
#### This Change:
What does this change do in the larger context? Specific details to highlight for review:
1. Reimplements `<AuthProvider />` functionality, now it implemented on top of `<Suspense />` and ReactQuery
2. Reimplements Backend module flow, now remote backend is always created, You no longer need to check if the RemoteBackend is present
3. Introduces new `<Suspense />` component, which is aware of offline status
4. Introduce new offline-related hooks
5. Add a banner to the form if it's unable to submit it offline
6. Refactor `InviteUserDialog` to the new `<Form />` component
7. Fixes redirect bug when the app doesn't redirect a user to the dashboard after logging in
8. Fixes strange behavior when `/users/me` could stuck into infinite refetch
9. Redesign the Cloud table for offline mode.
10. Adds blocking UI dialog when a user clicks "log out" button
#### Test Plan:
This PR requires thorough QA on the login flow across the browser and IDE. All redirect logic must stay unchanged.
---
2024-06-21 10:14:40 +03:00
|
|
|
json: { message: 'Asset does not exist' },
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
} else {
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: Body = await request.postDataJSON()
|
|
|
|
const parentId = body.parentDirectoryId
|
|
|
|
// Can be any asset ID.
|
|
|
|
const id = backend.DirectoryId(uniqueString.uniqueString())
|
|
|
|
const json: backend.CopyAssetResponse = {
|
|
|
|
asset: {
|
|
|
|
id,
|
|
|
|
parentId,
|
|
|
|
title: asset.title + ' (copy)',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
const newAsset = { ...asset }
|
|
|
|
newAsset.id = id
|
|
|
|
newAsset.parentId = parentId
|
|
|
|
newAsset.title += ' (copy)'
|
|
|
|
addAsset(newAsset)
|
|
|
|
await route.fulfill({ json })
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
|
|
|
await get(remoteBackendPaths.INVITATION_PATH + '*', async route => {
|
|
|
|
await route.fulfill({
|
|
|
|
json: { invitations: [] } satisfies backend.ListInvitationsResponseBody,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
await post(remoteBackendPaths.INVITE_USER_PATH + '*', async route => {
|
2024-01-31 14:35:41 +03:00
|
|
|
await route.fulfill()
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.CREATE_PERMISSION_PATH + '*', async route => {
|
2024-01-31 14:35:41 +03:00
|
|
|
await route.fulfill()
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await delete_(remoteBackendPaths.deleteAssetPath(GLOB_ASSET_ID), async route => {
|
2024-01-31 14:35:41 +03:00
|
|
|
await route.fulfill()
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.closeProjectPath(GLOB_PROJECT_ID), async route => {
|
|
|
|
await route.fulfill()
|
|
|
|
})
|
|
|
|
await post(remoteBackendPaths.openProjectPath(GLOB_PROJECT_ID), async route => {
|
|
|
|
await route.fulfill()
|
|
|
|
})
|
|
|
|
await delete_(remoteBackendPaths.deleteTagPath(GLOB_TAG_ID), async route => {
|
2024-01-31 14:35:41 +03:00
|
|
|
await route.fulfill()
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.POST_LOG_EVENT_PATH, async route => {
|
2024-05-27 20:32:42 +03:00
|
|
|
await route.fulfill()
|
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
// === Entity creation endpoints ===
|
|
|
|
|
|
|
|
await put(remoteBackendPaths.UPLOAD_USER_PICTURE_PATH + '*', async (route, request) => {
|
|
|
|
const content = request.postData()
|
|
|
|
if (content != null) {
|
|
|
|
currentProfilePicture = content
|
|
|
|
return null
|
|
|
|
} else {
|
|
|
|
await route.fallback()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await put(remoteBackendPaths.UPLOAD_ORGANIZATION_PICTURE_PATH + '*', async (route, request) => {
|
|
|
|
const content = request.postData()
|
|
|
|
if (content != null) {
|
|
|
|
currentOrganizationProfilePicture = content
|
|
|
|
return null
|
|
|
|
} else {
|
|
|
|
await route.fallback()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await post(remoteBackendPaths.UPLOAD_FILE_PATH + '*', (_route, request) => {
|
|
|
|
/** The type for the JSON request payload for this endpoint. */
|
|
|
|
interface SearchParams {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
readonly file_name: string
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
readonly file_id?: backend.FileId
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
readonly parent_directory_id?: backend.DirectoryId
|
|
|
|
}
|
|
|
|
// The type of the search params sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, no-restricted-syntax
|
|
|
|
const searchParams: SearchParams = Object.fromEntries(
|
|
|
|
new URL(request.url()).searchParams.entries()
|
|
|
|
) as never
|
|
|
|
const file = createFile(searchParams.file_name)
|
|
|
|
return { path: '', id: file.id, project: null } satisfies backend.FileInfo
|
|
|
|
})
|
|
|
|
|
|
|
|
await post(remoteBackendPaths.CREATE_SECRET_PATH + '*', async (_route, request) => {
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.CreateSecretRequestBody = await request.postDataJSON()
|
|
|
|
const secret = createSecret(body.name)
|
|
|
|
return secret.id
|
|
|
|
})
|
|
|
|
|
2024-01-31 14:35:41 +03:00
|
|
|
// === Other endpoints ===
|
|
|
|
|
2024-06-20 19:19:01 +03:00
|
|
|
await patch(remoteBackendPaths.updateAssetPath(GLOB_ASSET_ID), (_route, request) => {
|
|
|
|
const assetId = request.url().match(/[/]assets[/]([^?]+)/)?.[1] ?? ''
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.UpdateAssetRequestBody = request.postDataJSON()
|
|
|
|
// This could be an id for an arbitrary asset, but pretend it's a
|
|
|
|
// `DirectoryId` to make TypeScript happy.
|
|
|
|
const asset = assetMap.get(backend.DirectoryId(assetId))
|
|
|
|
if (asset != null) {
|
|
|
|
if (body.description != null) {
|
|
|
|
object.unsafeMutable(asset).description = body.description
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
|
|
|
await patch(remoteBackendPaths.associateTagPath(GLOB_ASSET_ID), async (_route, request) => {
|
|
|
|
const assetId = request.url().match(/[/]assets[/]([^/?]+)/)?.[1] ?? ''
|
|
|
|
/** The type for the JSON request payload for this endpoint. */
|
|
|
|
interface Body {
|
|
|
|
readonly labels: backend.LabelName[]
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
/** The type for the JSON response payload for this endpoint. */
|
|
|
|
interface Response {
|
|
|
|
readonly tags: backend.Label[]
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: Body = await request.postDataJSON()
|
|
|
|
// This could be an id for an arbitrary asset, but pretend it's a
|
|
|
|
// `DirectoryId` to make TypeScript happy.
|
|
|
|
setLabels(backend.DirectoryId(assetId), body.labels)
|
|
|
|
const json: Response = {
|
|
|
|
tags: body.labels.flatMap(value => {
|
|
|
|
const label = labelsByValue.get(value)
|
|
|
|
return label != null ? [label] : []
|
|
|
|
}),
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
return json
|
|
|
|
})
|
|
|
|
await put(remoteBackendPaths.updateDirectoryPath(GLOB_DIRECTORY_ID), async (route, request) => {
|
|
|
|
const directoryId = request.url().match(/[/]directories[/]([^?]+)/)?.[1] ?? ''
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.UpdateDirectoryRequestBody = request.postDataJSON()
|
|
|
|
const asset = assetMap.get(backend.DirectoryId(directoryId))
|
|
|
|
if (asset == null) {
|
|
|
|
await route.abort()
|
|
|
|
} else {
|
|
|
|
object.unsafeMutable(asset).title = body.title
|
|
|
|
await route.fulfill({
|
|
|
|
json: {
|
|
|
|
id: backend.DirectoryId(directoryId),
|
|
|
|
parentId: asset.parentId,
|
|
|
|
title: body.title,
|
|
|
|
} satisfies backend.UpdatedDirectory,
|
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
|
|
|
await delete_(remoteBackendPaths.deleteAssetPath(GLOB_ASSET_ID), async (route, request) => {
|
|
|
|
const assetId = request.url().match(/[/]assets[/]([^?]+)/)?.[1] ?? ''
|
|
|
|
// This could be an id for an arbitrary asset, but pretend it's a
|
|
|
|
// `DirectoryId` to make TypeScript happy.
|
|
|
|
deleteAsset(backend.DirectoryId(assetId))
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_NO_CONTENT })
|
|
|
|
})
|
|
|
|
await patch(remoteBackendPaths.UNDO_DELETE_ASSET_PATH, async (route, request) => {
|
|
|
|
/** The type for the JSON request payload for this endpoint. */
|
|
|
|
interface Body {
|
|
|
|
readonly assetId: backend.AssetId
|
|
|
|
}
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: Body = await request.postDataJSON()
|
|
|
|
undeleteAsset(body.assetId)
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_NO_CONTENT })
|
|
|
|
})
|
|
|
|
await post(remoteBackendPaths.CREATE_USER_PATH + '*', async (route, request) => {
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.CreateUserRequestBody = await request.postDataJSON()
|
|
|
|
const organizationId = body.organizationId ?? defaultUser.organizationId
|
|
|
|
const rootDirectoryId = backend.DirectoryId(
|
|
|
|
organizationId.replace(/^organization-/, 'directory-')
|
|
|
|
)
|
|
|
|
currentUser = {
|
|
|
|
email: body.userEmail,
|
|
|
|
name: body.userName,
|
|
|
|
organizationId,
|
|
|
|
userId: backend.UserId(`user-${uniqueString.uniqueString()}`),
|
|
|
|
isEnabled: false,
|
|
|
|
rootDirectoryId,
|
|
|
|
userGroups: null,
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-02-26 18:50:00 +03:00
|
|
|
await route.fulfill({ json: currentUser })
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await put(remoteBackendPaths.UPDATE_CURRENT_USER_PATH + '*', async (_route, request) => {
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.UpdateUserRequestBody = await request.postDataJSON()
|
|
|
|
if (currentUser && body.username != null) {
|
|
|
|
currentUser = { ...currentUser, name: body.username }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await get(remoteBackendPaths.USERS_ME_PATH + '*', () => currentUser)
|
|
|
|
await patch(remoteBackendPaths.UPDATE_ORGANIZATION_PATH + '*', async (route, request) => {
|
|
|
|
// The type of the body sent by this app is statically known.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.UpdateOrganizationRequestBody = await request.postDataJSON()
|
|
|
|
if (body.name === '') {
|
|
|
|
await route.fulfill({
|
|
|
|
status: HTTP_STATUS_BAD_REQUEST,
|
Offline Mode Support (#10317)
#### Tl;dr
Closes: enso-org/cloud-v2#1283
This PR significantly reimplements Offline mode
<details><summary>Demo Presentation</summary>
<p>
https://github.com/enso-org/enso/assets/61194245/752d0423-9c0a-43ba-91e3-4a6688f77034
</p>
</details>
---
#### Context:
Offline mode is one of the core features of the dashboard. Unfortunately, after adding new features and a few refactoring, we lost the ability to work offline.
This PR should bring this functionality back, with a few key differences:
1. We require users to sign in before using the dashboard even in local mode.
2. Once a user is logged in, we allow him to work with local files
3. If a user closes the dashboard, and then open it, he can continue using it in offline mode
#### This Change:
What does this change do in the larger context? Specific details to highlight for review:
1. Reimplements `<AuthProvider />` functionality, now it implemented on top of `<Suspense />` and ReactQuery
2. Reimplements Backend module flow, now remote backend is always created, You no longer need to check if the RemoteBackend is present
3. Introduces new `<Suspense />` component, which is aware of offline status
4. Introduce new offline-related hooks
5. Add a banner to the form if it's unable to submit it offline
6. Refactor `InviteUserDialog` to the new `<Form />` component
7. Fixes redirect bug when the app doesn't redirect a user to the dashboard after logging in
8. Fixes strange behavior when `/users/me` could stuck into infinite refetch
9. Redesign the Cloud table for offline mode.
10. Adds blocking UI dialog when a user clicks "log out" button
#### Test Plan:
This PR requires thorough QA on the login flow across the browser and IDE. All redirect logic must stay unchanged.
---
2024-06-21 10:14:40 +03:00
|
|
|
json: { message: 'Organization name must not be empty' },
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
|
|
|
return
|
|
|
|
} else if (currentOrganization) {
|
|
|
|
currentOrganization = { ...currentOrganization, ...body }
|
|
|
|
return currentOrganization satisfies backend.OrganizationInfo
|
|
|
|
} else {
|
|
|
|
await route.fulfill({ status: HTTP_STATUS_NOT_FOUND })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await get(remoteBackendPaths.GET_ORGANIZATION_PATH + '*', async route => {
|
2024-01-31 14:35:41 +03:00
|
|
|
await route.fulfill({
|
2024-02-26 18:50:00 +03:00
|
|
|
json: currentOrganization,
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
|
|
|
|
status: currentOrganization == null ? 404 : 200,
|
2024-01-31 14:35:41 +03:00
|
|
|
})
|
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.CREATE_TAG_PATH + '*', route => {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.CreateTagRequestBody = route.request().postDataJSON()
|
|
|
|
const json: backend.Label = {
|
|
|
|
id: backend.TagId(`tag-${uniqueString.uniqueString()}`),
|
|
|
|
value: backend.LabelName(body.value),
|
|
|
|
color: body.color,
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
return json
|
2024-01-31 14:35:41 +03:00
|
|
|
})
|
2024-06-20 19:19:01 +03:00
|
|
|
await post(remoteBackendPaths.CREATE_PROJECT_PATH + '*', (_route, request) => {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.CreateProjectRequestBody = request.postDataJSON()
|
|
|
|
const title = body.projectName
|
|
|
|
const id = backend.ProjectId(`project-${uniqueString.uniqueString()}`)
|
|
|
|
const parentId =
|
|
|
|
body.parentDirectoryId ?? backend.DirectoryId(`directory-${uniqueString.uniqueString()}`)
|
|
|
|
const json: backend.CreatedProject = {
|
|
|
|
name: title,
|
|
|
|
organizationId: defaultOrganizationId,
|
|
|
|
packageName: 'Project_root',
|
|
|
|
projectId: id,
|
|
|
|
state: { type: backend.ProjectState.opened, volumeId: '' },
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
addProject(title, {
|
|
|
|
description: null,
|
|
|
|
id,
|
|
|
|
labels: [],
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
parentId,
|
|
|
|
permissions: [
|
|
|
|
{
|
|
|
|
user: {
|
|
|
|
organizationId: defaultOrganizationId,
|
|
|
|
userId: defaultUserId,
|
|
|
|
name: defaultUsername,
|
|
|
|
email: defaultEmail,
|
|
|
|
},
|
|
|
|
permission: permissions.PermissionAction.own,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
projectState: json.state,
|
|
|
|
})
|
|
|
|
return json
|
|
|
|
})
|
|
|
|
await post(remoteBackendPaths.CREATE_DIRECTORY_PATH + '*', (_route, request) => {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
|
|
const body: backend.CreateDirectoryRequestBody = request.postDataJSON()
|
|
|
|
const title = body.title
|
|
|
|
const id = backend.DirectoryId(`directory-${uniqueString.uniqueString()}`)
|
|
|
|
const parentId =
|
|
|
|
body.parentId ?? backend.DirectoryId(`directory-${uniqueString.uniqueString()}`)
|
|
|
|
const json: backend.CreatedDirectory = { title, id, parentId }
|
|
|
|
addDirectory(title, {
|
|
|
|
description: null,
|
|
|
|
id,
|
|
|
|
labels: [],
|
|
|
|
modifiedAt: dateTime.toRfc3339(new Date()),
|
|
|
|
parentId,
|
|
|
|
permissions: [
|
|
|
|
{
|
|
|
|
user: {
|
|
|
|
organizationId: defaultOrganizationId,
|
|
|
|
userId: defaultUserId,
|
|
|
|
name: defaultUsername,
|
|
|
|
email: defaultEmail,
|
|
|
|
},
|
|
|
|
permission: permissions.PermissionAction.own,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
projectState: null,
|
|
|
|
})
|
|
|
|
return json
|
|
|
|
})
|
|
|
|
|
|
|
|
await page.route('*', async route => {
|
|
|
|
if (!isOnline) {
|
|
|
|
await route.abort('connectionfailed')
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
2024-06-20 19:19:01 +03:00
|
|
|
})
|
2024-01-31 14:35:41 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
return {
|
|
|
|
defaultEmail,
|
|
|
|
defaultName: defaultUsername,
|
2024-06-20 19:19:01 +03:00
|
|
|
defaultOrganization,
|
2024-01-31 14:35:41 +03:00
|
|
|
defaultOrganizationId,
|
2024-06-20 19:19:01 +03:00
|
|
|
defaultOrganizationName,
|
2024-01-31 14:35:41 +03:00
|
|
|
defaultUser,
|
impr(enso/cloud-v2#912): Add `organization_id` and `user_id` fields to `SimpleUser` (#9508)
- Updates the model types for the request/response bodies to match the backend.
- Renames `CreatePermissionRequestBody::userSubjects` to match `CreatePermissionRequestBody::actorsIds` on the backend
- Renames `UserInfo::organization_id` to camel case
- Adds `UserInfo::userId` field to match the backend
- Merges `SimpleUser` into `UserInfo`
Previously, `UserInfo`'s `OrganizationId` was serialized as `pk`. This
is not desired since `pk` is an implementation detail (relating to
DynamoDB). This commit renames the field to accurately reflect the type
of data it contains.
- Renames `User::id` to `User::organizationId`.
Previously, the user's organization ID was under the `id` field. As of
enso-cloud/cloud-v2#1098, this is no longer the case. The
`organizationId` field is no longer a user's primary identifier --
`userId` should be used for that purpose instead. So this field has been
renamed to `organizationId` to more clearly describe the purpose of the
field.
Affects the responses expected from the following endpoints:
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
- Adds `User::userId` field.
Previously, the user's organization ID was used to uniquely identify a
user. Now that multiple users can be invited to an organization, it is
no longer appropriate to use organization ID to uniquely refer to a
user. For this purpose, the backend has introduced the `userId` field.
Affects the responses expected from the following endpoints:
- `POST /users`
- `PUT /users/me/picture`
- `PUT /users/me`
- `GET /users/me`
- `PUT /users/{userId}/usergroups`
Removes the `user` param from `tryGetSingletonOwnerPermission`. This
param was previously required. It was required because a `userSubject`
was necessary to optimistically generate a `UserPermission`. With recent
refactors, a `userId` can be used in place of `userSubject` to generate
a `UserPermission`. The existing param `owner` provides the `userId`, so
the `user` param is redundant and can be removed.
- Removes `UserInfo` from the `FullUserSession`.
Previously, `UserInfo` in the `FullUserSession` was required to obtain a
`userSubject`. Now, `userSubject` has been deprecated in favour of
`userId`. `User` provides `userId`, and is present in the
`FullUserSession`. Thus, this commit removes `UserInfo` from the
`FullUserSession` since it is redundant.
- Renames `UserInfo` fields to `camelCase`
Previously, `UserInfo`'s fields were serialized as `snake_case`. This is
not desired since the convention for the frontend is to use `camelCase`
for field names where possible. This commit renames the fields to be
`camelCase`, now that the backend has been updated accordingly.
- Sorts by `userId` rather than `email`
- Compares by `userId` rather than `email`
- Extends `User` from `UserInfo`
After refactoring, `UserInfo` is now a subset of `User`. To remove
duplication, this commit modifies `User` to extend `UserInfo`.
2024-03-27 17:58:08 +03:00
|
|
|
defaultUserId,
|
2024-01-31 14:35:41 +03:00
|
|
|
rootDirectoryId: defaultDirectoryId,
|
2024-06-20 19:19:01 +03:00
|
|
|
goOffline: () => {
|
|
|
|
isOnline = false
|
|
|
|
},
|
|
|
|
goOnline: () => {
|
|
|
|
isOnline = true
|
2024-01-31 14:35:41 +03:00
|
|
|
},
|
2024-06-20 19:19:01 +03:00
|
|
|
currentUser: () => currentUser,
|
2024-02-13 12:21:40 +03:00
|
|
|
setCurrentUser: (user: backend.User | null) => {
|
2024-01-31 14:35:41 +03:00
|
|
|
currentUser = user
|
|
|
|
},
|
2024-06-20 19:19:01 +03:00
|
|
|
currentPassword: () => currentPassword,
|
|
|
|
currentProfilePicture: () => currentProfilePicture,
|
|
|
|
currentOrganization: () => currentOrganization,
|
|
|
|
setCurrentOrganization: (organization: backend.OrganizationInfo | null) => {
|
|
|
|
currentOrganization = organization
|
2024-02-26 18:50:00 +03:00
|
|
|
},
|
2024-06-20 19:19:01 +03:00
|
|
|
currentOrganizationProfilePicture: () => currentOrganizationProfilePicture,
|
2024-01-31 14:35:41 +03:00
|
|
|
addAsset,
|
|
|
|
deleteAsset,
|
|
|
|
undeleteAsset,
|
|
|
|
createDirectory,
|
|
|
|
createProject,
|
|
|
|
createFile,
|
|
|
|
createSecret,
|
|
|
|
addDirectory,
|
|
|
|
addProject,
|
|
|
|
addFile,
|
|
|
|
addSecret,
|
|
|
|
createLabel,
|
|
|
|
addLabel,
|
|
|
|
setLabels,
|
2024-06-20 19:19:01 +03:00
|
|
|
addUser,
|
|
|
|
deleteUser,
|
|
|
|
addUserGroup,
|
|
|
|
deleteUserGroup,
|
|
|
|
// TODO:
|
|
|
|
// addPermission,
|
|
|
|
// deletePermission,
|
|
|
|
addUserGroupToUser,
|
|
|
|
removeUserGroupFromUser,
|
2024-01-31 14:35:41 +03:00
|
|
|
}
|
|
|
|
}
|