mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
dbf8d47b29
* Start workspace onboarding * Add pictures to tutorial steps * Remove unecessary step * Continue tutorial by creating a flow together * Add image into the Create Flow tutorial pop up * Generate flow from frontend * Set pause between each node * Add automatic scripts overview * Simplify tutorial, and add step to show the code * Add input step * Autoremove last step after 5 seconds * Add flow typing when opening code editor * Remove lock field from json file * Add Guides tab on left menu * Add /guides page * Add tutorial card in Guides tab * Add step to show data connector * Add second text input to show 2 types of inputs and fill them dynamically * Improve tutorial chronology * Add flow input connexion with first sctript * Improve overlay * Improve wording * Add new tutorial step to show node b * Add test step * Add cursor to pick typescript * Improve end of tutorial * Refactor * Highlight bottom right corner for 5 and 6 * Fix last step overlay * change home tutorial button * guidelines nits * Automate onNext() trigger on step 3 * Improve fakr cursor for Test this step button * Improve overlay transitions * Merge data connectors and test step steps * Improve live code writing in step 3 * Add a step to complete the flow * Improve the step where we generate remaining scripts * Refactor * Add blocking behavior on step 3 * nit about delay * Prevent clicking on Next while code not generated * Sharpen wordings * Remove Svelte 4 and migrate to Svelte 5 * Remove unecesary helper function * Add toast if the user clicks on Next button before code finished generating * Add toasts to each step * Improve tutorial trigger timing * Improve delays * Add cursor movement to Test Flow button * Block previous on certain steps to prevent bug * Fix for github npm check * Fix for github npm check * Unlike workspace onboarding and flow tutorial * Rename flow tutorial with better name * Remove the automatic trigger for flow previous and broken tutorial * Push tutorials to Help sectionof the sidebar * Fix redirection t /tutorials page * Add tutorials page and update workspace onboarding flow - Rename guides to tutorials page (/tutorials) - Add workspace onboarding tutorial to tutorials page - Remove Tutorial button from homepage - Add welcome cards for empty workspace with 3 tutorial options - Update workspace onboarding to redirect to homepage before starting - Clean up URL parameter after tutorial completion - Move Tutorials to Help menu in sidebar - Remove automatic "action" tutorial trigger for new flows - Add flow-live-tutorial (renamed from workspace-onboarding-continue) - Add Previous button blocking with toast notifications in flow tutorial 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Add tutorials to workspace homepage 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Start tutorials for Run/logs section * Fix data connector * Add flow execution graph from Run drawer * Add tabs highlighting in drawer * Improve tutorial on run drawer * Add mouse cursor moving from graph tab * Add cursor click on script in Drawer Graph tabs * Add troubleshooting flow in tutorial * Add step to show logs of failed step * add step 7 to invite the user to fix by himself and se the new results * Improve wording * Nit improvements * Nits * Refactor * Refactor * Rename the tutorial * Remove deleted file * Improve wording * Improve first step of troubleshooting flow tutorial * Add tutorials to /tutorials page and create component * Remove previous Flow tutorials * Fixes, and improve tutorial button design * Improve status in Tutorial button * Align tutorial button to brand guidelines * Add skip all to onboarding workspace tutorial * Add skipped_all to tutorial_progress * Connect backend and frontend for tutorial progress * Add store and helper to display or not Tutorials from left menu * Add reminder at the end of each tutorial * Add tutorial banner * Remove tutorials from elpty workspace * Improve Tutorials page * Align banner to guidelines * Add reset tutorials buttons * Refactor * Refactor to make it easy to add new tutorials and tabs * Improve tutorial config to make it easy to add new tutorials * Refactor and remove hardcoded indexes * Add getTutorialIndex in tutorial config file * Nit * Add Mark all as complete button in tutorial page * Add skip tutorial button in banner toast * Replace if else in tutorials router by map to make it easier to maintain and scale * Delete broken simple app tutorial * Add Guide flow guide buttons inside the Create Flow page * Add flow editor tutorials into flow builder page * Update existing app tutorials with new tutorial system * Create a dedicated tutorial category for app editor * Add global progress bar * Add Reset & Skip at tutorial category level * Add progress to tab title * Nits on design * Make progress bar a props and design nits * Add active props for Tutorial Category * Display tutorials according to the user role * Adapt progress bar to the user role * Add roles array for each tutorial * Add Tutorials tab in Operator menu * Edge case if no Category and no Tutorial available for my role * Allow the user to reset a single tutorial * Allow a user to mark as completed a single tutorial * Nit on hoovering tutorial status * Allow admins to see which tutorials are available per role * Create utils that allow admins to see which tutorials can access other roles of their organization * Refactor resetSingleTutorial and completeSingleTutorial into one function * Improve role system * Remove hardcoded MAX_TUTORIAL_ID * Fix type assertion * Remove console log * Reduce recalculations when unrelated state changes * Add console.error * Remove unused function * Add tutorial wrapper and better router * Nits to pass npm checks * Fix typescripts and lint errors * Add SQLx query cache for tutorial_progress queries * Improve wording for workspace tutorial --------- Co-authored-by: Diego Imbert <diego@windmill.dev> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
132 lines
3.8 KiB
TypeScript
132 lines
3.8 KiB
TypeScript
import type { ComponentType } from 'svelte'
|
|
import { Workflow, GraduationCap, Wrench, PlayCircle, Link2 } from 'lucide-svelte'
|
|
import { base } from '$lib/base'
|
|
import type { Role } from './roleUtils'
|
|
|
|
export interface TutorialConfig {
|
|
id: string
|
|
icon: ComponentType
|
|
title: string
|
|
description: string
|
|
onClick: () => void
|
|
index?: number // Bitmask index in the database (for progress tracking)
|
|
active?: boolean // Whether this tutorial is active and should be displayed (default: true)
|
|
comingSoon?: boolean
|
|
roles?: Role[] // Roles that can access this tutorial (if not specified, available to everyone)
|
|
order?: number
|
|
}
|
|
|
|
export interface TabConfig {
|
|
label: string
|
|
tutorials: TutorialConfig[]
|
|
roles?: Role[] // Roles that can access this tab category (if not specified, available to everyone)
|
|
progressBar?: boolean // Whether to display the progress bar for this tab (default: true)
|
|
active?: boolean // Whether this tab category is active and should be displayed (default: true)
|
|
}
|
|
|
|
export type TabId = 'quickstart' | 'app_editor'
|
|
|
|
/**
|
|
* Get tutorial index from config by tutorial ID.
|
|
* Throws an error if the tutorial or its index is not found.
|
|
*/
|
|
export function getTutorialIndex(id: string): number {
|
|
for (const tab of Object.values(TUTORIALS_CONFIG)) {
|
|
const tutorial = tab.tutorials.find((t) => t.id === id)
|
|
if (tutorial?.index !== undefined) return tutorial.index
|
|
}
|
|
throw new Error(`Tutorial index not found for id: ${id}. Make sure the tutorial has an index defined in config.`)
|
|
}
|
|
|
|
// Available roles : developer, admin, operator
|
|
|
|
export const TUTORIALS_CONFIG: Record<TabId, TabConfig> = {
|
|
quickstart: {
|
|
label: 'Quickstart',
|
|
roles: ['admin', 'developer'],
|
|
progressBar: true,
|
|
active: true,
|
|
tutorials: [
|
|
{
|
|
id: 'workspace-onboarding',
|
|
icon: GraduationCap,
|
|
title: 'Workspace onboarding',
|
|
description: 'Discover the basics of Windmill with a quick tour of the workspace.',
|
|
onClick: () => {
|
|
window.location.href = `${base}/?tutorial=workspace-onboarding`
|
|
},
|
|
index: 1,
|
|
active: true,
|
|
comingSoon: false,
|
|
roles: ['developer', 'admin'],
|
|
order: 1
|
|
},
|
|
{
|
|
id: 'flow-live-tutorial',
|
|
icon: Workflow,
|
|
title: 'Build a flow',
|
|
description: 'Learn how to build workflows in Windmill with our interactive tutorial.',
|
|
onClick: () => {
|
|
window.location.href = `${base}/flows/add?tutorial=flow-live-tutorial&nodraft=true`
|
|
},
|
|
index: 2,
|
|
active: true,
|
|
comingSoon: false,
|
|
roles: ['developer', 'admin'],
|
|
order: 2
|
|
},
|
|
{
|
|
id: 'troubleshoot-flow',
|
|
icon: Wrench,
|
|
title: 'Fix a broken flow',
|
|
description: 'Learn how to monitor and debug your script and flow executions.',
|
|
onClick: () => {
|
|
window.location.href = `${base}/flows/add?tutorial=troubleshoot-flow&nodraft=true`
|
|
},
|
|
index: 3,
|
|
active: true,
|
|
comingSoon: false,
|
|
roles: ['admin','developer'],
|
|
order: 3
|
|
}
|
|
]
|
|
},
|
|
app_editor: {
|
|
label: 'App Editor',
|
|
roles: ['developer', 'admin'],
|
|
progressBar: false,
|
|
active: true,
|
|
tutorials: [
|
|
{
|
|
id: 'backgroundrunnables',
|
|
icon: PlayCircle,
|
|
title: 'Background runnables',
|
|
description: 'Learn how to create and use background runnables in your apps.',
|
|
onClick: () => {
|
|
window.location.href = `${base}/apps/add?tutorial=backgroundrunnables&nodraft=true`
|
|
},
|
|
index: 4,
|
|
active: true,
|
|
comingSoon: false,
|
|
roles: ['developer','admin'],
|
|
order: 4
|
|
},
|
|
{
|
|
id: 'connection',
|
|
icon: Link2,
|
|
title: 'Connection',
|
|
description: 'Learn how to connect component inputs to outputs in your apps.',
|
|
onClick: () => {
|
|
window.location.href = `${base}/apps/add?tutorial=connection&nodraft=true`
|
|
},
|
|
index: 5,
|
|
active: true,
|
|
comingSoon: false,
|
|
roles: ['developer', 'admin'],
|
|
order: 5
|
|
}
|
|
]
|
|
}
|
|
} as const
|
|
|