* move debug_panel to app settings Signed-off-by: Jess Frazelle <github@jessfraz.com> * move showDebugPanel to app settings with backwards compatibility; Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * more pedantic project specific settings Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
155 lines
4.0 KiB
TypeScript
155 lines
4.0 KiB
TypeScript
import { SaveSettingsPayload } from 'lib/settings/settingsTypes'
|
|
import { Themes } from 'lib/theme'
|
|
import { onboardingPaths } from 'routes/Onboarding/paths'
|
|
|
|
export const IS_PLAYWRIGHT_KEY = 'playwright'
|
|
|
|
export const TEST_SETTINGS_KEY = '/settings.toml'
|
|
export const TEST_SETTINGS = {
|
|
app: {
|
|
theme: Themes.Dark,
|
|
onboardingStatus: 'dismissed',
|
|
projectDirectory: '',
|
|
showDebugPanel: true,
|
|
},
|
|
modeling: {
|
|
enableSSAO: false,
|
|
defaultUnit: 'in',
|
|
mouseControls: 'Zoo',
|
|
cameraProjection: 'perspective',
|
|
},
|
|
projects: {
|
|
defaultProjectName: 'project-$nnn',
|
|
},
|
|
textEditor: {
|
|
textWrapping: true,
|
|
},
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_ONBOARDING_USER_MENU = {
|
|
...TEST_SETTINGS,
|
|
app: { ...TEST_SETTINGS.app, onboardingStatus: onboardingPaths.USER_MENU },
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_ONBOARDING_EXPORT = {
|
|
...TEST_SETTINGS,
|
|
app: { ...TEST_SETTINGS.app, onboardingStatus: onboardingPaths.EXPORT },
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_ONBOARDING_PARAMETRIC_MODELING = {
|
|
...TEST_SETTINGS,
|
|
app: {
|
|
...TEST_SETTINGS.app,
|
|
onboardingStatus: onboardingPaths.PARAMETRIC_MODELING,
|
|
},
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_ONBOARDING_START = {
|
|
...TEST_SETTINGS,
|
|
app: { ...TEST_SETTINGS.app, onboardingStatus: '' },
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_DEFAULT_THEME = {
|
|
...TEST_SETTINGS,
|
|
app: { ...TEST_SETTINGS.app, theme: Themes.System },
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_SETTINGS_CORRUPTED = {
|
|
app: {
|
|
theme: Themes.Dark,
|
|
onboardingStatus: 'dismissed',
|
|
projectDirectory: 123 as any,
|
|
showDebugPanel: true,
|
|
},
|
|
modeling: {
|
|
defaultUnit: 'invalid' as any,
|
|
mouseControls: `() => alert('hack the planet')` as any,
|
|
cameraProjection: 'perspective',
|
|
},
|
|
projects: {
|
|
defaultProjectName: false as any,
|
|
},
|
|
textEditor: {
|
|
textWrapping: true,
|
|
},
|
|
} satisfies Partial<SaveSettingsPayload>
|
|
|
|
export const TEST_CODE_GIZMO = `part001 = startSketchOn('XZ')
|
|
|> startProfileAt([20, 0], %)
|
|
|> line(end = [7.13, 4 + 0])
|
|
|> angledLine({ angle: 3 + 0, length: 3.14 + 0 }, %)
|
|
|> line(endAbsolute = [20.14 + 0, -0.14 + 0])
|
|
|> xLineTo(29 + 0, %)
|
|
|> yLine(-3.14 + 0, %, $a)
|
|
|> xLine(1.63, %)
|
|
|> angledLineOfXLength({ angle: 3 + 0, length: 3.14 }, %)
|
|
|> angledLineOfYLength({ angle: 30, length: 3 + 0 }, %)
|
|
|> angledLineToX({ angle: 22.14 + 0, to: 12 }, %)
|
|
|> angledLineToY({ angle: 30, to: 11.14 }, %)
|
|
|> angledLineThatIntersects({
|
|
angle: 3.14,
|
|
intersectTag: a,
|
|
offset: 0
|
|
}, %)
|
|
|> tangentialArcTo([13.14 + 0, 13.14], %)
|
|
|> close()
|
|
|> extrude(length = 5 + 7)
|
|
`
|
|
|
|
export const TEST_CODE_LONG_WITH_ERROR_OUT_OF_VIEW = `width = 50.8
|
|
height = 30
|
|
thickness = 2
|
|
keychainHoleSize = 3
|
|
|
|
keychain = startSketchOn("XY")
|
|
|> startProfileAt([0, 0], %)
|
|
|> line(endAbsolute = [width, 0])
|
|
|> line(endAbsolute = [width, height])
|
|
|> line(endAbsolute = [0, height])
|
|
|> close()
|
|
|> extrude(length = thickness)
|
|
|
|
keychain1 = startSketchOn("XY")
|
|
|> startProfileAt([0, 0], %)
|
|
|> line(endAbsolute = [width, 0])
|
|
|> line(endAbsolute = [width, height])
|
|
|> line(endAbsolute = [0, height])
|
|
|> close()
|
|
|> extrude(length = thickness)
|
|
|
|
keychain2 = startSketchOn("XY")
|
|
|> startProfileAt([0, 0], %)
|
|
|> line(endAbsolute = [width, 0])
|
|
|> line(endAbsolute = [width, height])
|
|
|> line(endAbsolute = [0, height])
|
|
|> close()
|
|
|> extrude(length = thickness)
|
|
|
|
box = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> line(end = [0, 10])
|
|
|> line(end = [10, 0])
|
|
|> line(end = [0, -10], tag = $revolveAxis)
|
|
|> close()
|
|
|> extrude(length = 10)
|
|
|
|
sketch001 = startSketchOn(box, revolveAxis)
|
|
|> startProfileAt([5, 10], %)
|
|
|> line(end = [0, -10])
|
|
|> line(end = [2, 0])
|
|
|> line(end = [0, -10])
|
|
|> close()
|
|
|> revolve({
|
|
axis: revolveAxis,
|
|
angle: 90
|
|
}, %)
|
|
|
|
sketch001 = startSketchOn('XZ')
|
|
|> startProfileAt([0.0, 0.0], %)
|
|
|> xLine(0.0, %)
|
|
|> close()
|
|
|
|
`
|
|
|
|
export const TEST_CODE_TRIGGER_ENGINE_EXPORT_ERROR = `thing = 1`
|