|
|
@ -16,34 +16,26 @@ |
|
|
|
|
|
|
|
|
|
|
|
package com.android.tools.compose |
|
|
|
package com.android.tools.compose |
|
|
|
|
|
|
|
|
|
|
|
import com.android.tools.modules.* |
|
|
|
|
|
|
|
import com.intellij.lang.annotation.AnnotationHolder |
|
|
|
|
|
|
|
import com.intellij.lang.annotation.Annotator |
|
|
|
|
|
|
|
import com.intellij.lang.annotation.HighlightSeverity |
|
|
|
|
|
|
|
import com.intellij.openapi.editor.DefaultLanguageHighlighterColors |
|
|
|
import com.intellij.openapi.editor.DefaultLanguageHighlighterColors |
|
|
|
import com.intellij.openapi.editor.colors.TextAttributesKey |
|
|
|
import com.intellij.openapi.editor.colors.TextAttributesKey |
|
|
|
import com.intellij.openapi.progress.ProcessCanceledException |
|
|
|
|
|
|
|
import com.intellij.openapi.roots.ProjectFileIndex |
|
|
|
|
|
|
|
import com.intellij.openapi.util.Key |
|
|
|
|
|
|
|
import com.intellij.psi.PsiElement |
|
|
|
import com.intellij.psi.PsiElement |
|
|
|
import org.jetbrains.kotlin.analyzer.AnalysisResult |
|
|
|
import org.jetbrains.kotlin.descriptors.DeclarationDescriptor |
|
|
|
import org.jetbrains.kotlin.idea.caches.resolve.analyzeWithAllCompilerChecks |
|
|
|
import org.jetbrains.kotlin.idea.highlighter.HighlighterExtension |
|
|
|
import org.jetbrains.kotlin.psi.KtCallExpression |
|
|
|
import org.jetbrains.kotlin.resolve.calls.model.ResolvedCall |
|
|
|
import org.jetbrains.kotlin.psi.KtFile |
|
|
|
|
|
|
|
import org.jetbrains.kotlin.resolve.BindingContext |
|
|
|
|
|
|
|
import org.jetbrains.kotlin.resolve.calls.util.getResolvedCall |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Used to apply styles for calls to @Composable functions. |
|
|
|
// Used to apply styles for calls to @Composable functions. |
|
|
|
class ComposableAnnotator : Annotator { |
|
|
|
class ComposableHighlighter : HighlighterExtension() { |
|
|
|
|
|
|
|
override fun highlightDeclaration(elementToHighlight: PsiElement, descriptor: DeclarationDescriptor): TextAttributesKey? { |
|
|
|
|
|
|
|
return null |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
override fun highlightCall(elementToHighlight: PsiElement, resolvedCall: ResolvedCall<*>): TextAttributesKey? { |
|
|
|
|
|
|
|
return if (resolvedCall.isComposableInvocation()) COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY else null |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
companion object TextAttributeRegistry { |
|
|
|
companion object TextAttributeRegistry { |
|
|
|
val COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY: TextAttributesKey |
|
|
|
val COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY: TextAttributesKey |
|
|
|
val COMPOSABLE_CALL_TEXT_ATTRIBUTES_NAME = "ComposableCallTextAttributes" |
|
|
|
const val COMPOSABLE_CALL_TEXT_ATTRIBUTES_NAME = "ComposableCallTextAttributes" |
|
|
|
private val ANALYSIS_RESULT_KEY = Key<AnalysisResult>( |
|
|
|
|
|
|
|
"ComposableAnnotator.DidAnnotateKey" |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
private val CAN_CONTAIN_COMPOSABLE_KEY = Key<Boolean>( |
|
|
|
|
|
|
|
"ComposableAnnotator.CanContainComposable" |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init { |
|
|
|
init { |
|
|
|
COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY = TextAttributesKey.createTextAttributesKey( |
|
|
|
COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY = TextAttributesKey.createTextAttributesKey( |
|
|
@ -51,43 +43,5 @@ class ComposableAnnotator : Annotator { |
|
|
|
DefaultLanguageHighlighterColors.FUNCTION_CALL) |
|
|
|
DefaultLanguageHighlighterColors.FUNCTION_CALL) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
override fun annotate(element: PsiElement, holder: AnnotationHolder) { |
|
|
|
|
|
|
|
if (element !is KtCallExpression) return |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// AnnotationHolder.currentAnnotationSession applies to a single file. |
|
|
|
|
|
|
|
var canContainComposable = holder.currentAnnotationSession.getUserData(CAN_CONTAIN_COMPOSABLE_KEY) |
|
|
|
|
|
|
|
if (canContainComposable == null) { |
|
|
|
|
|
|
|
// isComposeEnabled doesn't work for library sources, we check all kt library sources files. File check only once on opening. |
|
|
|
|
|
|
|
canContainComposable = element.inComposeModule() || |
|
|
|
|
|
|
|
(element.containingFile.virtualFile != null && |
|
|
|
|
|
|
|
ProjectFileIndex.getInstance(element.project) |
|
|
|
|
|
|
|
.isInLibrarySource(element.containingFile.virtualFile)) |
|
|
|
|
|
|
|
holder.currentAnnotationSession.putUserData(CAN_CONTAIN_COMPOSABLE_KEY, canContainComposable) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!canContainComposable) return |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// AnnotationHolder.currentAnnotationSession applies to a single file. |
|
|
|
|
|
|
|
var analysisResult = holder.currentAnnotationSession.getUserData( |
|
|
|
|
|
|
|
ANALYSIS_RESULT_KEY |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
if (analysisResult == null) { |
|
|
|
|
|
|
|
val ktFile = element.containingFile as? KtFile ?: return |
|
|
|
|
|
|
|
analysisResult = ktFile.analyzeWithAllCompilerChecks() |
|
|
|
|
|
|
|
holder.currentAnnotationSession.putUserData( |
|
|
|
|
|
|
|
ANALYSIS_RESULT_KEY, analysisResult |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (analysisResult.isError()) { |
|
|
|
|
|
|
|
throw ProcessCanceledException(analysisResult.error) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (!shouldStyleCall(analysisResult.bindingContext, element)) return |
|
|
|
|
|
|
|
val elementToStyle = element.calleeExpression ?: return |
|
|
|
|
|
|
|
holder.newSilentAnnotation(HighlightSeverity.INFORMATION).range(elementToStyle).textAttributes(COMPOSABLE_CALL_TEXT_ATTRIBUTES_KEY).create() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private fun shouldStyleCall(bindingContext: BindingContext, element: KtCallExpression): Boolean { |
|
|
|
|
|
|
|
return element.getResolvedCall(bindingContext)?.isComposableInvocation() == true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|