mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
[IFT] Add balloon to run step in Java onboarding
IJ-CR-26892 GitOrigin-RevId: 2ac9a1d57a32d983c74e06cbea29478257a4bc85
This commit is contained in:
committed by
intellij-monorepo-bot
parent
491cf0fcb0
commit
4eebad88d0
@@ -22,11 +22,12 @@ java.onboarding.balloon.open.learn.toolbar=Switch to the {0} tool window to cont
|
||||
java.onboarding.indexing.description=When you open a project for the first time, <ide/> scans the JDK and the project itself \
|
||||
to collect details required for coding assistance. To continue, wait until indexing completes.
|
||||
java.onboarding.wait.indexing=Please wait while the IDE indexes JDK files
|
||||
java.onboarding.temporary.configuration.description=You have opened the demo sample. Now, let''s run it! In the highlighted area of the toolbar, \
|
||||
java.onboarding.temporary.configuration.description=You have opened the demo sample. Now, let's run it! In the highlighted area of the toolbar, \
|
||||
you can see popular running actions for the selected configuration.
|
||||
java.onboarding.run.options.community=For example, you can run your code {0}, debug it {1}, and run with coverage {2}.
|
||||
java.onboarding.run.options.ultimate=For example, you can run your code {0}, debug it {1}, profile {2}, and run with coverage {3}.
|
||||
java.onboarding.run.sample=For now, let''s run the current file, click {0} or press {1}.
|
||||
java.onboarding.run.sample.balloon=Let''s run the current file, click {0} or press {1}.
|
||||
java.onboarding.balloon.click.here=Click here to set a breakpoint
|
||||
java.onboarding.toggle.breakpoint.1=You may notice that instead of the expected value of {0}, the {1} method returns {2}. \
|
||||
Let''s stop at the return statement to debug the problematic code.
|
||||
|
||||
@@ -14,9 +14,11 @@ import com.intellij.ide.util.gotoByName.GotoActionModel
|
||||
import com.intellij.idea.ActionsBundle
|
||||
import com.intellij.java.ift.JavaLessonsBundle
|
||||
import com.intellij.java.ift.JavaProjectUtil
|
||||
import com.intellij.openapi.actionSystem.ActionManager
|
||||
import com.intellij.openapi.actionSystem.ActionPlaces
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent
|
||||
import com.intellij.openapi.actionSystem.ex.ActionUtil
|
||||
import com.intellij.openapi.actionSystem.impl.ActionButton
|
||||
import com.intellij.openapi.application.invokeLater
|
||||
import com.intellij.openapi.application.runWriteAction
|
||||
import com.intellij.openapi.diagnostic.thisLogger
|
||||
@@ -383,7 +385,13 @@ class JavaOnboardingTourLesson : KLesson("java.onboarding", JavaLessonsBundle.me
|
||||
}
|
||||
|
||||
private fun LessonContext.runTasks() {
|
||||
highlightRunToolbar()
|
||||
highlightRunToolbar(usePulsation = false)
|
||||
|
||||
task {
|
||||
triggerUI {
|
||||
clearPreviousHighlights = false
|
||||
}.component { ui: ActionButton -> ActionManager.getInstance().getId(ui.action) == "Run" }
|
||||
}
|
||||
|
||||
task {
|
||||
val runOptionsText = if (PlatformUtils.isIdeaUltimate()) {
|
||||
@@ -401,6 +409,8 @@ class JavaOnboardingTourLesson : KLesson("java.onboarding", JavaLessonsBundle.me
|
||||
}
|
||||
text(JavaLessonsBundle.message("java.onboarding.temporary.configuration.description") + " $runOptionsText")
|
||||
text(JavaLessonsBundle.message("java.onboarding.run.sample", icon(AllIcons.Actions.Execute), action("Run")))
|
||||
text(JavaLessonsBundle.message("java.onboarding.run.sample.balloon", icon(AllIcons.Actions.Execute), action("Run")),
|
||||
LearningBalloonConfig(Balloon.Position.below, 0))
|
||||
checkToolWindowState("Run", true)
|
||||
restoreIfModified(sample)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user