AX Agent 코드 탭 저장소 요약줄과 리뷰 진입 UX 개선\n\n- 코드 탭 입력부 위 저장소 요약줄에 로컬/워크트리, upstream 배지를 추가해 repo context를 더 명확히 표시\n- 변경 상태에 따라 액션 문구를 동적으로 바꾸고 /review slash 명령으로 바로 이어지는 리뷰 배지 추가\n- 코드 탭 입력 워터마크와 안내 문구를 저장소 배너 흐름에 맞게 정리\n\n검증:\n- dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\\n- 경고 0 / 오류 0
Some checks failed
Release Gate / gate (push) Has been cancelled

This commit is contained in:
2026-04-06 21:37:07 +09:00
parent a19f69b2ff
commit d9309b45fa
5 changed files with 118 additions and 12 deletions

View File

@@ -1750,6 +1750,34 @@
Orientation="Horizontal"
VerticalAlignment="Center"
Margin="12,0,0,0">
<Border x:Name="CodeRepoSummaryWorkspacePill"
Visibility="Collapsed"
Background="{DynamicResource ItemBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="999"
Padding="8,3"
Margin="0,0,6,0">
<TextBlock x:Name="CodeRepoSummaryWorkspaceText"
Text="로컬"
FontSize="11"
FontWeight="SemiBold"
Foreground="{DynamicResource SecondaryText}"/>
</Border>
<Border x:Name="CodeRepoSummaryUpstreamPill"
Visibility="Collapsed"
Background="{DynamicResource ItemBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="999"
Padding="8,3"
Margin="0,0,6,0">
<TextBlock x:Name="CodeRepoSummaryUpstreamText"
Text="upstream"
FontSize="11"
FontWeight="SemiBold"
Foreground="{DynamicResource SecondaryText}"/>
</Border>
<Border x:Name="CodeRepoSummaryAddedPill"
Visibility="Collapsed"
Background="#E8F7EC"
@@ -1778,12 +1806,26 @@
FontWeight="SemiBold"
Foreground="#B91C1C"/>
</Border>
<Border x:Name="CodeRepoSummaryReviewPill"
Background="{DynamicResource ItemBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="999"
Padding="9,4"
Margin="0,0,6,0"
Cursor="Hand"
MouseLeftButtonUp="CodeRepoSummaryReviewPill_MouseLeftButtonUp">
<TextBlock Text="리뷰"
FontSize="11.5"
Foreground="{DynamicResource PrimaryText}"/>
</Border>
<Border Background="{DynamicResource ItemBackground}"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
CornerRadius="999"
Padding="9,4">
<TextBlock Text="브랜치 보기"
<TextBlock x:Name="CodeRepoSummaryActionText"
Text="브랜치 · 변경 보기"
FontSize="11.5"
Foreground="{DynamicResource PrimaryText}"/>
</Border>