* Fix path splitting issues on windows * Fix path splitting issue on routeLoaders * Enable some e2e tests * Swap enabled e2e tests * Working bare-min project parse * Make tsc happy * Clean up & enable more tests * Fix paths in browser * Fix tests for windows fmt * Clean up wasm side * Make build:wasm windows compatible * More paths cleanup & some tests * Remove sleep * Use new config sturcture in parseroute * Clean up debugger * Fix: on settings close go back to the same file (#3549) * Fix: on settings close go back to the same file * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * shit aint working yo * Get that page a-loading * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Frank Noirot <frank@kittycad.io> Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com> * Fmt * Comment out currently failing win32 tests * Ignore tsc for electron monkey-patch * Force line-endings to only * Fix tsc * Enable more tests * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * Avoid modifying global for tests --------- Co-authored-by: 49fl <ircsurfer33@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Frank Noirot <frank@kittycad.io> Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com>
131 lines
3.7 KiB
TypeScript
131 lines
3.7 KiB
TypeScript
import { onboardingPaths } from 'routes/Onboarding/paths'
|
|
import { BROWSER_FILE_NAME, BROWSER_PROJECT_NAME, FILE_EXT } from './constants'
|
|
import { isDesktop } from './isDesktop'
|
|
import { readAppSettingsFile } from './desktop'
|
|
import { readLocalStorageAppSettingsFile } from './settings/settingsUtils'
|
|
import { err } from 'lib/trap'
|
|
import { IS_PLAYWRIGHT_KEY } from '../../e2e/playwright/storageStates'
|
|
import { DeepPartial } from './types'
|
|
import { Configuration } from 'wasm-lib/kcl/bindings/Configuration'
|
|
import { PlatformPath } from 'path'
|
|
|
|
const prependRoutes =
|
|
(routesObject: Record<string, string>) => (prepend: string) => {
|
|
return Object.fromEntries(
|
|
Object.entries(routesObject).map(([constName, path]) => [
|
|
constName,
|
|
prepend + path,
|
|
])
|
|
)
|
|
}
|
|
|
|
type OnboardingPaths = {
|
|
[K in keyof typeof onboardingPaths]: `/onboarding${(typeof onboardingPaths)[K]}`
|
|
}
|
|
|
|
const SETTINGS = '/settings' as const
|
|
|
|
export type ProjectRoute = {
|
|
projectName: string | null
|
|
projectPath: string
|
|
currentFileName: string | null
|
|
currentFilePath: string | null
|
|
}
|
|
|
|
export const PATHS = {
|
|
INDEX: '/',
|
|
HOME: '/home',
|
|
FILE: '/file',
|
|
SETTINGS,
|
|
SETTINGS_USER: `${SETTINGS}?tab=user` as const,
|
|
SETTINGS_PROJECT: `${SETTINGS}?tab=project` as const,
|
|
SETTINGS_KEYBINDINGS: `${SETTINGS}?tab=keybindings` as const,
|
|
SIGN_IN: '/signin',
|
|
ONBOARDING: prependRoutes(onboardingPaths)('/onboarding') as OnboardingPaths,
|
|
} as const
|
|
export const BROWSER_PATH = `%2F${BROWSER_PROJECT_NAME}%2F${BROWSER_FILE_NAME}${FILE_EXT}`
|
|
|
|
export async function getProjectMetaByRouteId(
|
|
id?: string,
|
|
configuration?: DeepPartial<Configuration> | Error
|
|
): Promise<ProjectRoute | undefined> {
|
|
if (!id) return undefined
|
|
|
|
const onDesktop = isDesktop()
|
|
const isPlaywright = localStorage.getItem(IS_PLAYWRIGHT_KEY) === 'true'
|
|
|
|
if (configuration === undefined || isPlaywright) {
|
|
configuration = onDesktop
|
|
? await readAppSettingsFile()
|
|
: readLocalStorageAppSettingsFile()
|
|
}
|
|
|
|
if (err(configuration)) return Promise.reject(configuration)
|
|
|
|
// Should not be possible but I guess logically it could be
|
|
if (configuration === undefined) {
|
|
return Promise.reject(new Error('No configuration found'))
|
|
}
|
|
|
|
const route = parseProjectRoute(configuration, id, window?.electron?.path)
|
|
|
|
if (err(route)) return Promise.reject(route)
|
|
|
|
return route
|
|
}
|
|
|
|
export async function parseProjectRoute(
|
|
configuration: DeepPartial<Configuration>,
|
|
id: string,
|
|
pathlib: PlatformPath | undefined
|
|
): Promise<ProjectRoute> {
|
|
let projectName = null
|
|
let projectPath = ''
|
|
let currentFileName = null
|
|
let currentFilePath = null
|
|
if (
|
|
pathlib &&
|
|
configuration.settings?.project?.directory &&
|
|
id.startsWith(configuration.settings.project.directory)
|
|
) {
|
|
const relativeToRoot = pathlib.relative(
|
|
configuration.settings.project.directory,
|
|
id
|
|
)
|
|
projectName = relativeToRoot.split(pathlib.sep)[0]
|
|
projectPath = pathlib.join(
|
|
configuration.settings.project.directory,
|
|
projectName
|
|
)
|
|
projectName = projectName === '' ? null : projectName
|
|
} else {
|
|
projectPath = id
|
|
if (pathlib) {
|
|
if (pathlib.extname(id) === '.kcl') {
|
|
projectPath = pathlib.dirname(id)
|
|
}
|
|
projectName = pathlib.basename(projectPath)
|
|
} else {
|
|
if (id.endsWith('.kcl')) {
|
|
projectPath = '/browser'
|
|
projectName = 'browser'
|
|
}
|
|
}
|
|
}
|
|
if (pathlib) {
|
|
if (projectPath !== id) {
|
|
currentFileName = pathlib.basename(id)
|
|
currentFilePath = id
|
|
}
|
|
} else {
|
|
currentFileName = 'main.kcl'
|
|
currentFilePath = id
|
|
}
|
|
return {
|
|
projectName: projectName,
|
|
projectPath: projectPath,
|
|
currentFileName: currentFileName,
|
|
currentFilePath: currentFilePath,
|
|
}
|
|
}
|