{"version":3,"file":"82610.b6456dab.js","sources":["webpack://app/./src/i18n/index.ts","webpack://app/./src/store/connectionSlice.ts","webpack://app/./src/store/containerSlice.ts","webpack://app/./src/store/dirHandleSlice.ts","webpack://app/./src/store/galleryScreenSlice.ts","webpack://app/./src/store/settingsSlice.ts","webpack://app/./src/store/taskFormSlice.ts","webpack://app/./src/store/tutorialSlice.ts"],"sourcesContent":["import i18n from 'i18next'\nimport LanguageDetector from 'i18next-browser-languagedetector'\nimport Backend from 'i18next-http-backend'\nimport { initReactI18next } from 'react-i18next'\nimport { LocalStorageKey } from '~/constants/localstorage'\nimport store from '~/store'\n\nexport const AvailableLanguages = [\n { label: 'English', value: 'en' },\n { label: '简体中文', value: 'zh-CN' },\n { label: '繁體中文', value: 'zh-TW' },\n { label: '한국어', value: 'ko-KR' },\n { label: 'Norsk', value: 'no' },\n { label: 'Arabic', value: 'ar' },\n { label: 'Deutsch', value: 'de' },\n { label: 'Français', value: 'fr' },\n { label: 'Italiano', value: 'it' },\n { label: 'Português', value: 'pt' },\n { label: 'Español', value: 'es' },\n { label: 'Türkçe', value: 'tr' }\n]\n\ni18n\n .use(Backend)\n .use(LanguageDetector)\n .use(initReactI18next)\n .init({ fallbackLng: 'en' })\n .then(() => {\n // assume all detected languages are available\n const detectLanguage = i18n.language\n\n // cannot trust browser language setting\n const settingLanguage = store.getState().settings.language\n\n // if setting is not initialized, but detected language is available, use detected language and update language setting\n if (!settingLanguage && AvailableLanguages.some(lang => detectLanguage === lang.value)) {\n localStorage.setItem(LocalStorageKey.LANGUAGE, detectLanguage)\n i18n.changeLanguage(detectLanguage)\n return\n }\n\n // if setting is not initialized and detected language is not available, use en and update language setting\n if (!settingLanguage && !AvailableLanguages.some(lang => detectLanguage === lang.value)) {\n localStorage.setItem('language', 'en')\n i18n.changeLanguage('en')\n return\n }\n\n // if setting is initialized and setting language is not available, use en and update language setting\n if (settingLanguage && !AvailableLanguages.some(lang => settingLanguage === lang.value)) {\n localStorage.setItem('language', 'en')\n i18n.changeLanguage('en')\n return\n }\n\n // if setting is initialized and setting language is available, use setting language\n if (settingLanguage && settingLanguage !== detectLanguage) {\n i18n.changeLanguage(settingLanguage)\n }\n })\n\nexport default i18n\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\n\nexport const connectionSlice = createSlice({\n name: 'connection',\n initialState: {\n connType: ''\n },\n reducers: {\n setConnType(state, action: PayloadAction) {\n state.connType = action.payload\n }\n }\n})\n\nexport const { setConnType } = connectionSlice.actions\nexport default connectionSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport { loadStateFromLocalStorage } from './utils'\n\ninterface ContainerState {\n [key: string]: {\n position: number\n }\n}\n\nconst initialState: ContainerState = loadStateFromLocalStorage('container')\n\nexport const containerSlice = createSlice({\n name: 'container',\n initialState,\n reducers: {\n setDividerPosition: (state, action: PayloadAction<{ id: string; position: number }>) => {\n const { id, position } = action.payload\n state[id] = { position }\n }\n }\n})\n\nexport const { setDividerPosition } = containerSlice.actions\n\nexport default containerSlice.reducer\n","import { createAsyncThunk, createSlice } from '@reduxjs/toolkit'\nimport { deleteDeviceRepo } from '~/services/organizationService'\nimport { RootState } from '~/store'\nimport { FileHandleStore } from '~/utils/FileHandleStore'\n\ninterface SerializableHandle {\n id: string\n lastFolderHash?: string\n}\n\ninterface UserDirHandleState {\n handles: SerializableHandle[]\n isInitialized: boolean\n permissionStatus: 'approved' | 'rejected' | 'prompt'\n error: string | null\n}\n\ninterface DirHandleState {\n _currentUserEmail: string | null\n userStates: Record\n version: number\n}\n\n// This is used to check if the user state is up to date\nexport const CURRENT_DIRHANDLE_VERSION = 2\n\nconst createInitialUserState = (): UserDirHandleState => ({\n handles: [],\n isInitialized: false,\n error: null,\n permissionStatus: 'approved'\n})\n\nconst initialState: DirHandleState = {\n _currentUserEmail: null,\n userStates: {},\n version: CURRENT_DIRHANDLE_VERSION\n}\n\nconst fileHandleStore = new FileHandleStore()\n\nexport const checkPermission = async (dirHandle: FileSystemDirectoryHandle) => {\n const currentPermission = await (dirHandle as any).queryPermission({ mode: 'readwrite' })\n return currentPermission === 'granted'\n}\n\nexport const requestPermission = async (dirHandle: FileSystemDirectoryHandle) => {\n const permission = await (dirHandle as any).requestPermission({ mode: 'readwrite' })\n return permission === 'granted'\n}\n\nexport const initializeUserAndHandles = createAsyncThunk(\n 'dirHandle/initialize',\n async (userEmail: string, { getState }) => {\n // Initialize fileHandleStore\n await fileHandleStore.init()\n\n // Get user's existing handles from state\n const state = getState() as RootState\n const userState = state.dirHandle.userStates[userEmail] || createInitialUserState()\n const existingHandleIds = userState.handles.map(h => h.id)\n\n // Check permissions and verify handles\n const verifiedHandles: SerializableHandle[] = []\n let hasPrompt = false\n let hasRejected = false\n\n for (const handleId of existingHandleIds) {\n try {\n const storedHandle = await fileHandleStore.getHandleById(handleId)\n if (storedHandle) {\n const permission = await (storedHandle.handle as any).queryPermission({\n mode: 'readwrite'\n })\n\n if (permission === 'granted') {\n verifiedHandles.push({ id: handleId })\n } else if (permission === 'prompt') {\n hasPrompt = true\n verifiedHandles.push({ id: handleId })\n } else if (permission === 'denied') {\n hasRejected = true\n }\n }\n } catch (error) {\n console.warn(`Failed to verify handle ${handleId}:`, error)\n hasRejected = true\n }\n }\n\n // Determine permission status\n let permissionStatus: 'approved' | 'rejected' | 'prompt'\n if (hasRejected) {\n permissionStatus = 'rejected'\n } else if (hasPrompt) {\n permissionStatus = 'prompt'\n } else {\n permissionStatus = 'approved'\n }\n\n // Version check\n const currentVersion = state.dirHandle.version ?? 0\n\n // Remove all uploads from S3 if there are no existing handles\n const existingHandleNames = await Promise.all(\n existingHandleIds\n .map(async id => {\n const storedHandle = await fileHandleStore.getHandleById(id)\n return storedHandle?.handle.name\n })\n .filter(Boolean)\n )\n await deleteDeviceRepo(undefined, existingHandleNames as string[])\n\n return {\n userEmail,\n handles: verifiedHandles,\n permissionStatus,\n shouldReset: !currentVersion || currentVersion < CURRENT_DIRHANDLE_VERSION\n }\n }\n)\n\nexport const requestAllPermissions = createAsyncThunk(\n 'dirHandle/requestPermissions',\n async (_, { getState }) => {\n const state = getState() as RootState\n const userEmail = state.dirHandle._currentUserEmail\n if (!userEmail) throw new Error('No user initialized')\n\n const userState = state.dirHandle.userStates[userEmail]\n const existingHandleIds = userState.handles.map(h => h.id)\n\n const updatedHandles: SerializableHandle[] = []\n let hasRejected = false\n let hasPrompt = false\n\n for (const handleId of existingHandleIds) {\n try {\n const stored = await fileHandleStore.getHandleById(handleId)\n if (stored) {\n const currentPermission = await (stored.handle as any).queryPermission({\n mode: 'readwrite'\n })\n\n if (currentPermission === 'prompt') {\n const granted = await requestPermission(stored.handle)\n if (granted) {\n updatedHandles.push({ id: handleId })\n } else {\n hasPrompt = true\n }\n } else if (currentPermission === 'granted') {\n updatedHandles.push({ id: handleId })\n } else if (currentPermission === 'denied') {\n hasRejected = true\n }\n }\n } catch (error) {\n console.warn(`Failed to check permissions for handle ${handleId}:`, error)\n hasRejected = true\n }\n }\n\n // Determine new permission status\n let permissionStatus: 'approved' | 'rejected' | 'prompt'\n if (hasRejected) {\n permissionStatus = 'rejected'\n } else if (hasPrompt) {\n permissionStatus = 'prompt'\n } else {\n permissionStatus = 'approved'\n }\n\n return {\n handles: updatedHandles,\n permissionStatus\n }\n }\n)\n\nexport const addDirHandle = createAsyncThunk(\n 'dirHandle/add',\n async (dirHandle: FileSystemDirectoryHandle, { getState }) => {\n const state = getState() as RootState\n const userEmail = state.dirHandle._currentUserEmail\n if (!userEmail) throw new Error('No user initialized')\n\n const hasPermission = await checkPermission(dirHandle)\n if (!hasPermission) {\n const granted = await requestPermission(dirHandle)\n if (!granted) {\n throw new Error('Permission denied for directory')\n }\n }\n const id = await fileHandleStore.saveHandle(dirHandle)\n return { id }\n }\n)\n\nexport const removeDirHandle = createAsyncThunk(\n 'dirHandle/remove',\n async (id: string, { getState }) => {\n const state = getState() as RootState\n const userEmail = state.dirHandle._currentUserEmail\n if (!userEmail) throw new Error('No user initialized')\n\n await fileHandleStore.removeHandle(id)\n return { id }\n }\n)\n\nexport const updateFolderHash = createAsyncThunk(\n 'dirHandle/updateFolderHash',\n async ({ id, folderHash }: { id: string; folderHash: string }, { getState }) => {\n const state = getState() as RootState\n const userEmail = state.dirHandle._currentUserEmail\n if (!userEmail) throw new Error('No user initialized')\n\n return { id, folderHash }\n }\n)\n\nexport const dirHandleSlice = createSlice({\n name: 'dirHandle',\n initialState,\n reducers: {\n cleanupUserState: (state, action) => {\n const userId = action.payload\n delete state.userStates[userId]\n if (state._currentUserEmail === userId) {\n state._currentUserEmail = null\n }\n }\n },\n extraReducers: builder => {\n builder\n .addCase(initializeUserAndHandles.pending, (state, action) => {\n const userEmail = action.meta.arg\n\n // Version check logging\n console.info(\n `[DirHandle] Version check - Current: ${state.version ?? 'none'} => Required: ${CURRENT_DIRHANDLE_VERSION}${\n !state.version || state.version < CURRENT_DIRHANDLE_VERSION\n ? ' (Resetting dirHandle state)'\n : ' (Up to date)'\n }`\n )\n\n if (state.userStates == null) {\n state.userStates = {}\n }\n state._currentUserEmail = userEmail\n if (!state.userStates[userEmail]) {\n state.userStates[userEmail] = createInitialUserState()\n }\n state.userStates[userEmail].isInitialized = false\n state.userStates[userEmail].error = null\n })\n .addCase(initializeUserAndHandles.fulfilled, (state, action) => {\n const { userEmail, handles, shouldReset, permissionStatus } = action.payload\n\n // Handle version migration\n if (shouldReset) {\n state.userStates = {}\n state.version = CURRENT_DIRHANDLE_VERSION\n state.userStates[userEmail] = createInitialUserState()\n }\n\n const userState = state.userStates[userEmail]\n userState.permissionStatus = permissionStatus\n\n const existingIds = new Set(userState.handles.map(h => h.id))\n const newIds = new Set(handles.map(h => h.id))\n\n userState.handles = userState.handles.filter(handle => newIds.has(handle.id))\n const handlesToAdd = handles.filter(handle => !existingIds.has(handle.id))\n userState.handles.push(...handlesToAdd)\n\n userState.isInitialized = true\n userState.error = null\n })\n .addCase(initializeUserAndHandles.rejected, (state, action) => {\n const userEmail = action.meta.arg\n const userState = state.userStates[userEmail]\n if (userState) {\n userState.error = action.error.message || 'Failed to initialize user and handles'\n userState.isInitialized = false\n }\n })\n .addCase(addDirHandle.fulfilled, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n\n const newHandle = action.payload\n if (newHandle.id) {\n const existingHandleWithHash = userState.handles.find(\n handle => handle.id === newHandle.id\n )\n\n if (existingHandleWithHash) {\n return\n }\n }\n userState.handles.push(newHandle)\n userState.error = null\n })\n .addCase(addDirHandle.rejected, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.error = action.error.message || 'Failed to add directory handle'\n })\n .addCase(removeDirHandle.fulfilled, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.handles = userState.handles.filter(handle => handle.id !== action.payload.id)\n userState.error = null\n })\n .addCase(requestAllPermissions.fulfilled, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n\n const { handles, permissionStatus } = action.payload\n const existingIds = new Set(userState.handles.map(h => h.id))\n const newIds = new Set(handles.map(h => h.id))\n\n userState.handles = userState.handles.filter(handle => newIds.has(handle.id))\n const handlesToAdd = handles.filter(handle => !existingIds.has(handle.id))\n userState.handles.push(...handlesToAdd)\n\n userState.permissionStatus = permissionStatus\n userState.error = null\n })\n .addCase(requestAllPermissions.rejected, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.error = action.error.message || 'Failed to request permissions'\n })\n .addCase(updateFolderHash.fulfilled, (state, action) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n const handle = userState.handles.find(h => h.id === action.payload.id)\n if (handle) {\n handle.lastFolderHash = action.payload.folderHash\n }\n })\n }\n})\n\n// Selectors\nexport const selectCurrentUserEmail = (state: RootState): string | null => {\n return state.dirHandle._currentUserEmail\n}\n\nexport const selectUserDirHandleState = (\n state: RootState,\n userEmail?: string\n): UserDirHandleState => {\n const email = userEmail ?? state.dirHandle._currentUserEmail\n if (!email) {\n return {\n handles: [],\n isInitialized: false,\n permissionStatus: 'approved',\n error: null\n }\n }\n return (\n state.dirHandle.userStates[email] || {\n handles: [],\n isInitialized: false,\n error: null\n }\n )\n}\n\nexport const selectUserHandles = (state: RootState, userEmail?: string): SerializableHandle[] => {\n const userState = selectUserDirHandleState(state, userEmail)\n return userState.handles\n}\n\nexport const selectUserHandleById = (\n state: RootState,\n handleId: string,\n userEmail?: string\n): SerializableHandle | undefined => {\n const handles = selectUserHandles(state, userEmail)\n return handles.find(handle => handle.id === handleId)\n}\n\nexport const selectUserInitializationStatus = (\n state: RootState,\n userEmail?: string\n): { isInitialized: boolean; error: string | null } => {\n const userState = selectUserDirHandleState(state, userEmail)\n return {\n isInitialized: userState.isInitialized,\n error: userState.error\n }\n}\n\nexport const selectHandleFolderHash = (\n state: RootState,\n handleId: string,\n userEmail?: string\n): string | undefined => {\n const handle = selectUserHandleById(state, handleId, userEmail)\n return handle?.lastFolderHash\n}\n\nexport const selectAllHandlesWithHashes = (\n state: RootState,\n userEmail?: string\n): Array<{ id: string; lastFolderHash?: string }> => {\n return selectUserHandles(state, userEmail).map(handle => ({\n id: handle.id,\n lastFolderHash: handle.lastFolderHash\n }))\n}\n\nexport const { cleanupUserState } = dirHandleSlice.actions\nexport default dirHandleSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport { UsedCommandType } from '~/constants/commands'\n\ninterface GalleryScreenState {\n activeExamplePopover: UsedCommandType | null\n activeNonFormPopover: UsedCommandType | null\n}\n\nconst initialState: GalleryScreenState = {\n activeExamplePopover: null,\n activeNonFormPopover: null\n}\n\nconst galleryScreenSlice = createSlice({\n name: 'galleryScreen',\n initialState,\n reducers: {\n setActiveExamplePopover(state, action: PayloadAction) {\n state.activeExamplePopover = action.payload\n },\n hideExamplePopover(state) {\n state.activeExamplePopover = null\n },\n setActiveNonFormPopover(state, action: PayloadAction) {\n state.activeNonFormPopover = action.payload\n },\n hideNonFormPopover(state) {\n state.activeNonFormPopover = null\n }\n }\n})\n\nexport const {\n setActiveExamplePopover,\n hideExamplePopover,\n setActiveNonFormPopover,\n hideNonFormPopover\n} = galleryScreenSlice.actions\nexport default galleryScreenSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport i18n from '~/i18n'\n\nexport type ThemeType = 'system' | 'light' | 'dark'\n\nexport const settingsSlice = createSlice({\n name: 'settings',\n initialState: {\n language: 'en',\n theme: 'light'\n },\n reducers: {\n changeLanguage(state, action: PayloadAction) {\n state.language = action.payload\n i18n.changeLanguage(action.payload)\n },\n changeTheme(state, action: PayloadAction) {\n state.theme = action.payload\n }\n }\n})\n\nexport const { changeLanguage, changeTheme } = settingsSlice.actions\nexport default settingsSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport { RootState } from '.'\nimport { CodeContextGroup } from '~/constants/commands'\n\nexport type ProjectSelectionOption = 'none' | 'upload' | 'codeContext' | 'mappingTable'\nexport type CommandGroup = CodeContextGroup | string\n\ninterface TaskFormState {\n optionsByGroup: {\n [CodeContextGroup.DATAWEAVE]: ProjectSelectionOption\n [CodeContextGroup.INTEGRATION]: ProjectSelectionOption\n [CodeContextGroup.SAMPLE_DATA]: ProjectSelectionOption\n [key: string]: ProjectSelectionOption \n }\n}\n\nconst initialState: TaskFormState = {\n optionsByGroup: {\n [CodeContextGroup.DATAWEAVE]: 'none',\n [CodeContextGroup.INTEGRATION]: 'none',\n [CodeContextGroup.SAMPLE_DATA]: 'none',\n\n }\n}\n\nexport const taskFormSlice = createSlice({\n name: 'taskForm',\n initialState,\n reducers: {\n setGroupOption(\n state,\n action: PayloadAction<{\n group: CommandGroup\n option: ProjectSelectionOption\n }>\n ) {\n const { group, option } = action.payload\n state.optionsByGroup[group] = option\n },\n resetGroupOption(\n state,\n action: PayloadAction<{\n group: CommandGroup\n }>\n ) {\n const { group } = action.payload\n if ([CodeContextGroup.DATAWEAVE, CodeContextGroup.INTEGRATION, CodeContextGroup.SAMPLE_DATA].includes(group as CodeContextGroup)) {\n state.optionsByGroup[group] = 'none'\n } else {\n state.optionsByGroup[group] = 'upload'\n }\n }\n }\n})\n\n\nexport const { setGroupOption, resetGroupOption } = taskFormSlice.actions\n\nexport const selectGroupOption = (group: CommandGroup) => \n (state: RootState) => state.taskForm.optionsByGroup[group]\n\nexport default taskFormSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport { CommandType, UsedCommandType } from '~/constants/commands'\nimport { commandTypeToJSON } from '~/protos/agents'\nimport { RootState } from '~/store'\n\n// Define step order as a constant that can be imported by other components\nexport const TUTORIAL_STEPS = ['repo', 'tour', 'choose-repo', 'run-a-task'] as const\nexport type TutorialStep = (typeof TUTORIAL_STEPS)[number]\n\n// Version of the onboarding flow\nexport const CURRENT_ONBOARDING_VERSION = 3\n\ninterface UserTutorialState {\n isHelpHubOpen: boolean\n showTooltips: boolean\n completedSteps: TutorialStep[]\n completedSubTasks: string[]\n helpHubActiveTab: 'getting-started' | 'library'\n currentDoc: UsedCommandType | null\n currentTutorial: string | null\n completedTutorials: string[]\n completedExamples: UsedCommandType[]\n completedCommands: UsedCommandType[]\n}\n\nexport interface TutorialState {\n _currentUserEmail: string | null\n onboardingVersion: number\n userStates: Record\n}\n\nconst createInitialUserState = (): UserTutorialState => ({\n isHelpHubOpen: false,\n showTooltips: false,\n completedSteps: [],\n completedSubTasks: [],\n helpHubActiveTab: 'library',\n currentDoc: null,\n currentTutorial: null,\n completedTutorials: [],\n completedExamples: [],\n completedCommands: []\n})\n\nconst initialState: TutorialState = {\n _currentUserEmail: null,\n onboardingVersion: CURRENT_ONBOARDING_VERSION,\n userStates: {}\n}\n\nconst tutorialSlice = createSlice({\n name: 'tutorial',\n initialState,\n reducers: {\n initializeUser: (state, action: PayloadAction) => {\n const userEmail = action.payload\n state._currentUserEmail = userEmail\n state.userStates = state.userStates || {}\n\n // Handle version checking and migration\n console.info(\n `[Tutorial Onboarding] Version check - Current: ${state.onboardingVersion ?? 'none'} => Required: ${CURRENT_ONBOARDING_VERSION}${\n !state.onboardingVersion || state.onboardingVersion < CURRENT_ONBOARDING_VERSION\n ? ' (Resetting tutorial state)'\n : ' (Up to date)'\n }`\n )\n if (!state.onboardingVersion || state.onboardingVersion < CURRENT_ONBOARDING_VERSION) {\n // Reset everything if version is outdated\n state.userStates = {}\n state.onboardingVersion = CURRENT_ONBOARDING_VERSION\n }\n\n // Initialize user state if it doesn't exist - start onboarding\n if (!state.userStates[userEmail]) {\n state.userStates[userEmail] = createInitialUserState()\n state.userStates[userEmail].helpHubActiveTab = 'getting-started'\n state.userStates[userEmail].isHelpHubOpen = true\n }\n },\n\n setHelpHubOpen: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n state.userStates[state._currentUserEmail].isHelpHubOpen = action.payload\n },\n\n setHelpHubActiveTab: (state, action: PayloadAction<'getting-started' | 'library'>) => {\n if (!state._currentUserEmail) return\n state.userStates[state._currentUserEmail].helpHubActiveTab = action.payload\n },\n\n setCurrentDoc: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n state.userStates[state._currentUserEmail].currentDoc = action.payload\n },\n\n markStepComplete: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n if (!userState.completedSteps.includes(action.payload)) {\n userState.completedSteps.push(action.payload)\n\n // Also mark it as a completed tutorial\n if (!userState.completedTutorials.includes(action.payload)) {\n userState.completedTutorials.push(action.payload)\n }\n\n // Automatically close help hub after completing the last step\n const isLastStep = action.payload === TUTORIAL_STEPS[TUTORIAL_STEPS.length - 1]\n if (isLastStep) {\n userState.isHelpHubOpen = false\n }\n }\n },\n\n markSubTaskComplete: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n\n if (!userState.completedSubTasks.includes(action.payload)) {\n userState.completedSubTasks.push(action.payload)\n\n // Auto-complete the main task if all subtasks are done\n const allSubTasks = [\n commandTypeToJSON(CommandType.MUNIT_TEST_CREATION),\n commandTypeToJSON(CommandType.INPUT_OUTPUT_EXAMPLE_TO_DWL_GENERATION),\n commandTypeToJSON(CommandType.GENERATE_ADD_FLOW_CODE_PR)\n ]\n if (allSubTasks.every(task => userState.completedSubTasks.includes(task))) {\n const runTaskStep = 'run-a-task' as TutorialStep\n if (!userState.completedSteps.includes(runTaskStep)) {\n userState.completedSteps.push(runTaskStep)\n }\n }\n }\n },\n\n startTutorial: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.showTooltips = true\n userState.currentTutorial = action.payload\n },\n\n setCurrentTutorial: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.currentTutorial = action.payload\n },\n\n hideTour: state => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n userState.showTooltips = false\n userState.currentTutorial = null\n },\n\n resetTutorial: state => {\n if (!state._currentUserEmail) return\n state.userStates[state._currentUserEmail] = createInitialUserState()\n },\n\n cleanupUserState: (state, action: PayloadAction) => {\n const userId = action.payload\n delete state.userStates[userId]\n if (state._currentUserEmail === userId) {\n state._currentUserEmail = null\n }\n },\n\n markExampleComplete: (state, action: PayloadAction) => {\n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n\n if (!userState.completedExamples.includes(action.payload)) {\n userState.completedExamples.push(action.payload)\n }\n },\n \n markCommandComplete: (state, action: PayloadAction) => {\n const FLOW_CODE_PR_COMMANDS = [\n CommandType.GENERATE_ADD_FLOW_CODE_PR,\n CommandType.GENERATE_REPO_ADD_FLOW_CODE_PR\n ] as UsedCommandType[]\n\n const DWL_COMMANDS = [\n CommandType.GENERATE_DATAWEAVE,\n CommandType.INPUT_OUTPUT_EXAMPLE_TO_DWL_GENERATION,\n CommandType.INPUT_OUTPUT_EXAMPLE_TO_DWL_GENERATION_REPO_AWARE\n ] as UsedCommandType[]\n\n const DATA_CREATION_COMMANDS = [\n CommandType.DATAWEAVE_TO_DATA_CREATION,\n CommandType.DATAWEAVE_TO_DATA_CREATION_REPO_AWARE\n ] as UsedCommandType[]\n \n if (!state._currentUserEmail) return\n const userState = state.userStates[state._currentUserEmail]\n\n if (!userState.completedCommands) {\n userState.completedCommands = []\n }\n\n const getCommandType = (command: UsedCommandType): string => {\n switch (true) {\n case FLOW_CODE_PR_COMMANDS.includes(command):\n return 'FLOW_CODE_PR'\n case DWL_COMMANDS.includes(command):\n return 'DWL'\n case DATA_CREATION_COMMANDS.includes(command):\n return 'DATA_CREATION'\n default:\n return 'SINGLE'\n }\n }\n\n switch (getCommandType(action.payload)) {\n case 'FLOW_CODE_PR':\n FLOW_CODE_PR_COMMANDS.forEach(command => {\n if (!userState.completedCommands.includes(command)) {\n userState.completedCommands.push(command)\n }\n })\n break\n case 'DWL':\n DWL_COMMANDS.forEach(command => {\n if (!userState.completedCommands.includes(command)) {\n userState.completedCommands.push(command)\n }\n })\n break\n case 'DATA_CREATION':\n DATA_CREATION_COMMANDS.forEach(command => {\n if (!userState.completedCommands.includes(command)) {\n userState.completedCommands.push(command)\n }\n })\n break\n default:\n if (!userState.completedCommands.includes(action.payload)) {\n userState.completedCommands.push(action.payload)\n }\n }\n }\n }\n})\n\nexport const {\n initializeUser,\n setHelpHubOpen,\n setHelpHubActiveTab,\n setCurrentDoc,\n markStepComplete,\n startTutorial,\n hideTour,\n setCurrentTutorial,\n resetTutorial,\n cleanupUserState,\n markSubTaskComplete,\n markExampleComplete,\n markCommandComplete\n} = tutorialSlice.actions\n\nexport const selectCurrentUserTutorialState = (state: RootState): UserTutorialState => {\n const { _currentUserEmail: currentUserId, userStates } = state.tutorial\n return currentUserId ? userStates[currentUserId] : createInitialUserState()\n}\n\nexport const selectIsExampleCompleted = (state: RootState, example: UsedCommandType): boolean => {\n const userState = selectCurrentUserTutorialState(state)\n return userState.completedExamples.includes(example)\n}\n\nexport const selectIsCommandCompleted = (state: RootState, command: UsedCommandType): boolean => {\n const userState = selectCurrentUserTutorialState(state)\n return userState.completedCommands.includes(command)\n}\n\nexport default tutorialSlice.reducer\n"],"names":["AvailableLanguages","i18n","Backend","LanguageDetector","initReactI18next","detectLanguage","settingLanguage","store","lang","localStorage","LocalStorageKey","connectionSlice","createSlice","state","action","setConnType","initialState","loadStateFromLocalStorage","containerSlice","id","position","setDividerPosition","createInitialUserState","fileHandleStore","FileHandleStore","checkPermission","dirHandle","currentPermission","requestPermission","permission","initializeUserAndHandles","createAsyncThunk","userEmail","getState","permissionStatus","existingHandleIds","userState","h","verifiedHandles","hasPrompt","hasRejected","handleId","storedHandle","error","console","currentVersion","existingHandleNames","Promise","Boolean","deleteDeviceRepo","undefined","requestAllPermissions","_","Error","updatedHandles","stored","addDirHandle","removeDirHandle","updateFolderHash","folderHash","dirHandleSlice","userId","builder","handles","shouldReset","existingIds","Set","newIds","handle","handlesToAdd","newHandle","cleanupUserState","galleryScreenSlice","setActiveExamplePopover","hideExamplePopover","setActiveNonFormPopover","hideNonFormPopover","settingsSlice","changeLanguage","changeTheme","CodeContextGroup","taskFormSlice","group","option","setGroupOption","resetGroupOption","TUTORIAL_STEPS","tutorialSlice","allSubTasks","commandTypeToJSON","CommandType","task","runTaskStep","FLOW_CODE_PR_COMMANDS","DWL_COMMANDS","DATA_CREATION_COMMANDS","getCommandType","command","initializeUser","setHelpHubOpen","setHelpHubActiveTab","setCurrentDoc","markStepComplete","startTutorial","hideTour","setCurrentTutorial","resetTutorial","markSubTaskComplete","markExampleComplete","markCommandComplete"],"mappings":"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"}