Add structured session chat view
This commit is contained in:
@@ -0,0 +1,85 @@
|
|||||||
|
package com.neatstudio.tmuxandroid;
|
||||||
|
|
||||||
|
import org.json.JSONObject;
|
||||||
|
|
||||||
|
final class ConversationMessage {
|
||||||
|
final String messageId;
|
||||||
|
final String sessionName;
|
||||||
|
final String role;
|
||||||
|
final String contentType;
|
||||||
|
final String content;
|
||||||
|
final String status;
|
||||||
|
final String toolName;
|
||||||
|
final String parentMessageId;
|
||||||
|
final String createdAt;
|
||||||
|
final boolean local;
|
||||||
|
|
||||||
|
ConversationMessage(
|
||||||
|
String messageId,
|
||||||
|
String sessionName,
|
||||||
|
String role,
|
||||||
|
String contentType,
|
||||||
|
String content,
|
||||||
|
String status,
|
||||||
|
String toolName,
|
||||||
|
String parentMessageId,
|
||||||
|
String createdAt,
|
||||||
|
boolean local
|
||||||
|
) {
|
||||||
|
this.messageId = messageId;
|
||||||
|
this.sessionName = sessionName;
|
||||||
|
this.role = role;
|
||||||
|
this.contentType = contentType;
|
||||||
|
this.content = content;
|
||||||
|
this.status = status;
|
||||||
|
this.toolName = toolName;
|
||||||
|
this.parentMessageId = parentMessageId;
|
||||||
|
this.createdAt = createdAt;
|
||||||
|
this.local = local;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ConversationMessage fromJson(JSONObject object) {
|
||||||
|
return new ConversationMessage(
|
||||||
|
value(object, "messageId", object.optString("id", "")),
|
||||||
|
object.optString("sessionName", ""),
|
||||||
|
object.optString("role", "assistant"),
|
||||||
|
object.optString("contentType", "text"),
|
||||||
|
object.optString("content", ""),
|
||||||
|
object.optString("status", "complete"),
|
||||||
|
object.optString("toolName", ""),
|
||||||
|
value(object, "parentMessageId", ""),
|
||||||
|
object.optString("createdAt", ""),
|
||||||
|
false
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ConversationMessage localUser(String sessionName, String content) {
|
||||||
|
long now = System.currentTimeMillis();
|
||||||
|
return new ConversationMessage(
|
||||||
|
"local-" + now,
|
||||||
|
sessionName,
|
||||||
|
"user",
|
||||||
|
"text",
|
||||||
|
content,
|
||||||
|
"sending",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"~" + now,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean isTool() {
|
||||||
|
return "tool".equals(role)
|
||||||
|
|| "tool".equals(contentType)
|
||||||
|
|| "command".equals(contentType)
|
||||||
|
|| "code".equals(contentType);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String value(JSONObject object, String key, String fallback) {
|
||||||
|
if (!object.has(key) || object.isNull(key)) {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
return object.optString(key, fallback);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -72,6 +72,9 @@ public final class MainActivity extends Activity {
|
|||||||
private static final int STATUS_BUSY = 1;
|
private static final int STATUS_BUSY = 1;
|
||||||
private static final int STATUS_SUCCESS = 2;
|
private static final int STATUS_SUCCESS = 2;
|
||||||
private static final int STATUS_ERROR = 3;
|
private static final int STATUS_ERROR = 3;
|
||||||
|
private static final int TERMINAL_VIEW_CHAT = 0;
|
||||||
|
private static final int TERMINAL_VIEW_READING = 1;
|
||||||
|
private static final int TERMINAL_VIEW_FULL = 2;
|
||||||
private static final long TERMINAL_RENDER_INTERVAL_MS = 80L;
|
private static final long TERMINAL_RENDER_INTERVAL_MS = 80L;
|
||||||
private static final long[] SOCKET_RECONNECT_DELAYS_MS = {1000L, 2000L, 4000L, 8000L, 15000L};
|
private static final long[] SOCKET_RECONNECT_DELAYS_MS = {1000L, 2000L, 4000L, 8000L, 15000L};
|
||||||
private static final int COLOR_APP_BG = Color.rgb(18, 20, 24);
|
private static final int COLOR_APP_BG = Color.rgb(18, 20, 24);
|
||||||
@@ -128,6 +131,7 @@ public final class MainActivity extends Activity {
|
|||||||
private TextView terminalConnectionText;
|
private TextView terminalConnectionText;
|
||||||
private Button terminalReadingButton;
|
private Button terminalReadingButton;
|
||||||
private ScrollView terminalScroll;
|
private ScrollView terminalScroll;
|
||||||
|
private LinearLayout terminalChatList;
|
||||||
private EditText inputField;
|
private EditText inputField;
|
||||||
private final Button[] terminalAccessoryTabButtons = new Button[4];
|
private final Button[] terminalAccessoryTabButtons = new Button[4];
|
||||||
private View terminalAccessoryBar;
|
private View terminalAccessoryBar;
|
||||||
@@ -148,12 +152,14 @@ public final class MainActivity extends Activity {
|
|||||||
private TerminalScreenBuffer terminalScreen = new TerminalScreenBuffer(DEFAULT_TERMINAL_COLS, DEFAULT_TERMINAL_ROWS);
|
private TerminalScreenBuffer terminalScreen = new TerminalScreenBuffer(DEFAULT_TERMINAL_COLS, DEFAULT_TERMINAL_ROWS);
|
||||||
private final StringBuilder queuedTerminalInput = new StringBuilder();
|
private final StringBuilder queuedTerminalInput = new StringBuilder();
|
||||||
private final Set<String> terminalExpandedBlocks = new HashSet<>();
|
private final Set<String> terminalExpandedBlocks = new HashSet<>();
|
||||||
|
private final Set<String> terminalExpandedMessages = new HashSet<>();
|
||||||
|
private final List<ConversationMessage> terminalConversationMessages = new ArrayList<>();
|
||||||
private boolean terminalConnected;
|
private boolean terminalConnected;
|
||||||
private boolean terminalConnecting;
|
private boolean terminalConnecting;
|
||||||
private boolean terminalRenderPending;
|
private boolean terminalRenderPending;
|
||||||
private boolean terminalSelectionEnabled;
|
private boolean terminalSelectionEnabled;
|
||||||
private boolean terminalFollowOutput = true;
|
private boolean terminalFollowOutput = true;
|
||||||
private boolean terminalReadingMode = true;
|
private int terminalViewMode = TERMINAL_VIEW_CHAT;
|
||||||
private int terminalKeyPage;
|
private int terminalKeyPage;
|
||||||
private int terminalReconnectAttempt;
|
private int terminalReconnectAttempt;
|
||||||
private int terminalConnectionGeneration;
|
private int terminalConnectionGeneration;
|
||||||
@@ -1606,6 +1612,8 @@ public final class MainActivity extends Activity {
|
|||||||
terminalFollowOutput = true;
|
terminalFollowOutput = true;
|
||||||
terminalKeyPage = 0;
|
terminalKeyPage = 0;
|
||||||
terminalExpandedBlocks.clear();
|
terminalExpandedBlocks.clear();
|
||||||
|
terminalExpandedMessages.clear();
|
||||||
|
terminalConversationMessages.clear();
|
||||||
terminalImagePath = "";
|
terminalImagePath = "";
|
||||||
terminalImagePreviewBar = null;
|
terminalImagePreviewBar = null;
|
||||||
terminalImagePreview = null;
|
terminalImagePreview = null;
|
||||||
@@ -1631,16 +1639,17 @@ public final class MainActivity extends Activity {
|
|||||||
terminalText.setTextSize(11);
|
terminalText.setTextSize(11);
|
||||||
terminalText.setTypeface(Typeface.MONOSPACE);
|
terminalText.setTypeface(Typeface.MONOSPACE);
|
||||||
terminalText.setIncludeFontPadding(false);
|
terminalText.setIncludeFontPadding(false);
|
||||||
terminalText.setHorizontallyScrolling(!terminalReadingMode);
|
terminalText.setHorizontallyScrolling(true);
|
||||||
terminalText.setLineSpacing(0, 1.05f);
|
terminalText.setLineSpacing(0, 1.05f);
|
||||||
terminalText.setGravity((terminalReadingMode ? Gravity.TOP : Gravity.BOTTOM) | Gravity.START);
|
terminalText.setGravity(Gravity.BOTTOM | Gravity.START);
|
||||||
terminalText.setTextIsSelectable(terminalSelectionEnabled);
|
terminalText.setTextIsSelectable(terminalSelectionEnabled);
|
||||||
terminalText.setPadding(dp(2), dp(8), dp(2), dp(8));
|
terminalText.setPadding(dp(2), dp(8), dp(2), dp(8));
|
||||||
terminalText.setBackgroundColor(COLOR_TERMINAL_BG);
|
terminalText.setBackgroundColor(COLOR_TERMINAL_BG);
|
||||||
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
terminalChatList = new LinearLayout(this);
|
||||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
terminalChatList.setOrientation(LinearLayout.VERTICAL);
|
||||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
terminalChatList.setPadding(dp(10), dp(12), dp(10), dp(18));
|
||||||
));
|
terminalChatList.addView(projectStateText("Loading conversation..."), matchWrap());
|
||||||
|
showTerminalView(terminalViewMode, false);
|
||||||
terminalScroll.addOnLayoutChangeListener((view, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom) ->
|
terminalScroll.addOnLayoutChangeListener((view, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom) ->
|
||||||
resizeTerminalToViewport(false));
|
resizeTerminalToViewport(false));
|
||||||
terminalScroll.setOnScrollChangeListener((view, scrollX, scrollY, oldScrollX, oldScrollY) ->
|
terminalScroll.setOnScrollChangeListener((view, scrollX, scrollY, oldScrollX, oldScrollY) ->
|
||||||
@@ -1662,6 +1671,7 @@ public final class MainActivity extends Activity {
|
|||||||
connectTerminal(sessionName);
|
connectTerminal(sessionName);
|
||||||
refreshTerminalGroupSessions(sessionName);
|
refreshTerminalGroupSessions(sessionName);
|
||||||
refreshTerminalSessionMeta(sessionName);
|
refreshTerminalSessionMeta(sessionName);
|
||||||
|
refreshTerminalConversation(sessionName);
|
||||||
});
|
});
|
||||||
inputField.post(() -> {
|
inputField.post(() -> {
|
||||||
inputField.requestFocus();
|
inputField.requestFocus();
|
||||||
@@ -1752,34 +1762,66 @@ public final class MainActivity extends Activity {
|
|||||||
dp(13)
|
dp(13)
|
||||||
));
|
));
|
||||||
bar.addView(titleBlock, new LinearLayout.LayoutParams(0, dp(32), 1));
|
bar.addView(titleBlock, new LinearLayout.LayoutParams(0, dp(32), 1));
|
||||||
terminalReadingButton = terminalToolButton("读", view ->
|
terminalReadingButton = terminalToolButton("聊", view -> showTerminalViewPicker());
|
||||||
setTerminalReadingMode(!terminalReadingMode));
|
terminalReadingButton.setContentDescription("Choose chat or terminal view");
|
||||||
terminalReadingButton.setContentDescription("Toggle Chinese reading mode");
|
|
||||||
styleTerminalReadingButton();
|
styleTerminalReadingButton();
|
||||||
bar.addView(terminalReadingButton);
|
bar.addView(terminalReadingButton);
|
||||||
bar.addView(terminalToolButton("☰", view -> showTerminalActions(sessionName)));
|
bar.addView(terminalToolButton("☰", view -> showTerminalActions(sessionName)));
|
||||||
return bar;
|
return bar;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setTerminalReadingMode(boolean reading) {
|
private void showTerminalViewPicker() {
|
||||||
terminalReadingMode = reading;
|
String[] items = {"Chat", "Chinese reading", "Full terminal"};
|
||||||
if (terminalText != null) {
|
new AlertDialog.Builder(this)
|
||||||
|
.setTitle("Session view")
|
||||||
|
.setSingleChoiceItems(items, terminalViewMode, (dialog, which) -> {
|
||||||
|
showTerminalView(which, true);
|
||||||
|
dialog.dismiss();
|
||||||
|
})
|
||||||
|
.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showTerminalView(int mode, boolean announce) {
|
||||||
|
terminalViewMode = mode;
|
||||||
|
if (terminalScroll == null || terminalText == null || terminalChatList == null) {
|
||||||
|
styleTerminalReadingButton();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
terminalScroll.removeAllViews();
|
||||||
|
if (mode == TERMINAL_VIEW_CHAT) {
|
||||||
|
terminalScroll.addView(terminalChatList, new ScrollView.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||||
|
));
|
||||||
|
renderTerminalConversation();
|
||||||
|
} else {
|
||||||
|
boolean reading = mode == TERMINAL_VIEW_READING;
|
||||||
terminalText.setHorizontallyScrolling(!reading);
|
terminalText.setHorizontallyScrolling(!reading);
|
||||||
terminalText.setGravity((reading ? Gravity.TOP : Gravity.BOTTOM) | Gravity.START);
|
terminalText.setGravity((reading ? Gravity.TOP : Gravity.BOTTOM) | Gravity.START);
|
||||||
terminalText.setMovementMethod(reading ? LinkMovementMethod.getInstance() : null);
|
terminalText.setMovementMethod(reading ? LinkMovementMethod.getInstance() : null);
|
||||||
|
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||||
|
));
|
||||||
|
renderTerminalNow();
|
||||||
}
|
}
|
||||||
styleTerminalReadingButton();
|
styleTerminalReadingButton();
|
||||||
renderTerminalNow();
|
if (announce) {
|
||||||
setStatus(reading ? "Chinese reading mode" : "Full terminal mode");
|
setStatus(mode == TERMINAL_VIEW_CHAT
|
||||||
|
? "Chat view"
|
||||||
|
: mode == TERMINAL_VIEW_READING ? "Chinese reading mode" : "Full terminal mode");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void styleTerminalReadingButton() {
|
private void styleTerminalReadingButton() {
|
||||||
if (terminalReadingButton == null) {
|
if (terminalReadingButton == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
terminalReadingButton.setText(terminalReadingMode ? "读" : "终");
|
terminalReadingButton.setText(terminalViewMode == TERMINAL_VIEW_CHAT
|
||||||
terminalReadingButton.setTextColor(terminalReadingMode ? Color.rgb(14, 38, 24) : COLOR_TEXT_MUTED);
|
? "聊" : terminalViewMode == TERMINAL_VIEW_READING ? "读" : "终");
|
||||||
terminalReadingButton.setBackground(terminalReadingMode
|
terminalReadingButton.setTextColor(terminalViewMode != TERMINAL_VIEW_FULL
|
||||||
|
? Color.rgb(14, 38, 24) : COLOR_TEXT_MUTED);
|
||||||
|
terminalReadingButton.setBackground(terminalViewMode != TERMINAL_VIEW_FULL
|
||||||
? rounded(COLOR_ACCENT, 7, COLOR_ACCENT, 1)
|
? rounded(COLOR_ACCENT, 7, COLOR_ACCENT, 1)
|
||||||
: buttonBackground());
|
: buttonBackground());
|
||||||
}
|
}
|
||||||
@@ -1848,6 +1890,185 @@ public final class MainActivity extends Activity {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void refreshTerminalConversation(String sessionName) {
|
||||||
|
executor.execute(() -> {
|
||||||
|
try {
|
||||||
|
JSONObject rootObject = new JSONObject(api.timeline(200));
|
||||||
|
JSONArray events = rootObject.optJSONArray("events");
|
||||||
|
List<ConversationMessage> loaded = new ArrayList<>();
|
||||||
|
for (int index = 0; events != null && index < events.length(); index++) {
|
||||||
|
JSONObject event = events.optJSONObject(index);
|
||||||
|
if (event != null
|
||||||
|
&& "conversation-message".equals(event.optString("type"))
|
||||||
|
&& sessionName.equals(event.optString("sessionName"))) {
|
||||||
|
loaded.add(ConversationMessage.fromJson(event));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Collections.sort(loaded, (left, right) -> left.createdAt.compareTo(right.createdAt));
|
||||||
|
runOnUiThread(() -> {
|
||||||
|
if (!sessionName.equals(activeSessionName)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
terminalConversationMessages.clear();
|
||||||
|
terminalConversationMessages.addAll(loaded);
|
||||||
|
renderTerminalConversation();
|
||||||
|
});
|
||||||
|
} catch (Exception error) {
|
||||||
|
runOnUiThread(() -> {
|
||||||
|
if (sessionName.equals(activeSessionName) && terminalChatList != null) {
|
||||||
|
terminalChatList.removeAllViews();
|
||||||
|
terminalChatList.addView(projectStateText(
|
||||||
|
"Conversation unavailable\n" + error.getMessage()), matchWrap());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void upsertConversationMessage(ConversationMessage message) {
|
||||||
|
if (message.sessionName.isEmpty() || !message.sessionName.equals(activeSessionName)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!message.local && "user".equals(message.role)) {
|
||||||
|
for (int index = terminalConversationMessages.size() - 1; index >= 0; index--) {
|
||||||
|
ConversationMessage existing = terminalConversationMessages.get(index);
|
||||||
|
if (existing.local && existing.content.equals(message.content)) {
|
||||||
|
terminalConversationMessages.remove(index);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int index = 0; index < terminalConversationMessages.size(); index++) {
|
||||||
|
if (terminalConversationMessages.get(index).messageId.equals(message.messageId)) {
|
||||||
|
terminalConversationMessages.set(index, message);
|
||||||
|
renderTerminalConversation();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
terminalConversationMessages.add(message);
|
||||||
|
Collections.sort(terminalConversationMessages,
|
||||||
|
(left, right) -> left.createdAt.compareTo(right.createdAt));
|
||||||
|
renderTerminalConversation();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void renderTerminalConversation() {
|
||||||
|
if (terminalChatList == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
terminalChatList.removeAllViews();
|
||||||
|
if (terminalConversationMessages.isEmpty()) {
|
||||||
|
TextView empty = bodyText("No structured messages yet");
|
||||||
|
empty.setGravity(Gravity.CENTER);
|
||||||
|
empty.setPadding(dp(12), dp(32), dp(12), dp(32));
|
||||||
|
terminalChatList.addView(empty, matchWrap());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (ConversationMessage message : terminalConversationMessages) {
|
||||||
|
terminalChatList.addView(conversationMessageRow(message));
|
||||||
|
}
|
||||||
|
if (terminalViewMode == TERMINAL_VIEW_CHAT && terminalFollowOutput && terminalScroll != null) {
|
||||||
|
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private View conversationMessageRow(ConversationMessage message) {
|
||||||
|
boolean user = "user".equals(message.role);
|
||||||
|
boolean tool = message.isTool();
|
||||||
|
LinearLayout row = new LinearLayout(this);
|
||||||
|
row.setOrientation(LinearLayout.HORIZONTAL);
|
||||||
|
row.setGravity(user ? Gravity.END : Gravity.START);
|
||||||
|
|
||||||
|
LinearLayout bubble = new LinearLayout(this);
|
||||||
|
bubble.setOrientation(LinearLayout.VERTICAL);
|
||||||
|
bubble.setPadding(dp(12), dp(9), dp(12), dp(10));
|
||||||
|
bubble.setBackground(tool
|
||||||
|
? rounded(COLOR_PANEL, 8, COLOR_BORDER, 1)
|
||||||
|
: user
|
||||||
|
? rounded(COLOR_ACCENT_DARK, 8, COLOR_ACCENT, 1)
|
||||||
|
: rounded(COLOR_CARD, 8, COLOR_BORDER_SOFT, 1));
|
||||||
|
|
||||||
|
TextView meta = new TextView(this);
|
||||||
|
meta.setTextColor(user ? COLOR_ACCENT : tool ? COLOR_ACCENT_WARM : COLOR_TEXT_MUTED);
|
||||||
|
meta.setTextSize(9);
|
||||||
|
meta.setTypeface(Typeface.MONOSPACE, Typeface.BOLD);
|
||||||
|
meta.setSingleLine(true);
|
||||||
|
meta.setEllipsize(TextUtils.TruncateAt.END);
|
||||||
|
meta.setText(tool
|
||||||
|
? conversationToolTitle(message)
|
||||||
|
: (user ? "You" : "Assistant") + conversationStatusPart(message));
|
||||||
|
bubble.addView(meta, matchWrap());
|
||||||
|
|
||||||
|
boolean expanded = terminalExpandedMessages.contains(message.messageId);
|
||||||
|
if (!tool || expanded) {
|
||||||
|
bubble.addView(conversationContent(message, tool), matchWrap());
|
||||||
|
} else {
|
||||||
|
TextView collapsed = bodyText("Tap to show " + message.content.length() + " characters");
|
||||||
|
collapsed.setTextSize(10);
|
||||||
|
collapsed.setPadding(0, dp(5), 0, 0);
|
||||||
|
bubble.addView(collapsed, matchWrap());
|
||||||
|
}
|
||||||
|
if (tool) {
|
||||||
|
bubble.setOnClickListener(view -> {
|
||||||
|
if (!terminalExpandedMessages.add(message.messageId)) {
|
||||||
|
terminalExpandedMessages.remove(message.messageId);
|
||||||
|
}
|
||||||
|
renderTerminalConversation();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
LinearLayout.LayoutParams bubbleParams = new LinearLayout.LayoutParams(
|
||||||
|
0,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||||
|
tool ? 1f : 0.82f
|
||||||
|
);
|
||||||
|
if (!tool) {
|
||||||
|
View spacer = new View(this);
|
||||||
|
LinearLayout.LayoutParams spacerParams = new LinearLayout.LayoutParams(
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0.18f
|
||||||
|
);
|
||||||
|
if (user) {
|
||||||
|
row.addView(spacer, spacerParams);
|
||||||
|
row.addView(bubble, bubbleParams);
|
||||||
|
} else {
|
||||||
|
row.addView(bubble, bubbleParams);
|
||||||
|
row.addView(spacer, spacerParams);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
row.addView(bubble, bubbleParams);
|
||||||
|
}
|
||||||
|
LinearLayout.LayoutParams rowParams = new LinearLayout.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||||
|
);
|
||||||
|
rowParams.bottomMargin = dp(9);
|
||||||
|
row.setLayoutParams(rowParams);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
|
||||||
|
private TextView conversationContent(ConversationMessage message, boolean tool) {
|
||||||
|
TextView content = new TextView(this);
|
||||||
|
content.setText(message.content.isEmpty() ? "(empty)" : message.content);
|
||||||
|
content.setTextColor(COLOR_TEXT);
|
||||||
|
content.setTextSize(tool ? 11 : 14);
|
||||||
|
content.setTypeface(tool ? Typeface.MONOSPACE : Typeface.DEFAULT);
|
||||||
|
content.setTextIsSelectable(true);
|
||||||
|
content.setLineSpacing(dp(2), 1f);
|
||||||
|
content.setPadding(0, dp(6), 0, 0);
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String conversationToolTitle(ConversationMessage message) {
|
||||||
|
String name = defaultValue(message.toolName, message.contentType);
|
||||||
|
return defaultValue(name, "Tool output") + conversationStatusPart(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String conversationStatusPart(ConversationMessage message) {
|
||||||
|
String status = message.status.trim();
|
||||||
|
return status.isEmpty() || "complete".equals(status) ? "" : " · " + status;
|
||||||
|
}
|
||||||
|
|
||||||
private void updateTerminalMeta() {
|
private void updateTerminalMeta() {
|
||||||
if (terminalMetaText == null || terminalConnectionText == null) {
|
if (terminalMetaText == null || terminalConnectionText == null) {
|
||||||
return;
|
return;
|
||||||
@@ -3143,6 +3364,9 @@ public final class MainActivity extends Activity {
|
|||||||
normalized = normalized + TERMINAL_ENTER;
|
normalized = normalized + TERMINAL_ENTER;
|
||||||
}
|
}
|
||||||
terminalFollowOutput = true;
|
terminalFollowOutput = true;
|
||||||
|
if (activeSessionName != null) {
|
||||||
|
upsertConversationMessage(ConversationMessage.localUser(activeSessionName, text));
|
||||||
|
}
|
||||||
sendTerminalInput(normalized);
|
sendTerminalInput(normalized);
|
||||||
inputField.setText("");
|
inputField.setText("");
|
||||||
setStatus("Sent " + text.length() + " chars");
|
setStatus("Sent " + text.length() + " chars");
|
||||||
@@ -3310,7 +3534,7 @@ public final class MainActivity extends Activity {
|
|||||||
terminalRenderPending = true;
|
terminalRenderPending = true;
|
||||||
long now = System.currentTimeMillis();
|
long now = System.currentTimeMillis();
|
||||||
long delay = Math.max(0L, TERMINAL_RENDER_INTERVAL_MS - (now - lastTerminalRenderMs));
|
long delay = Math.max(0L, TERMINAL_RENDER_INTERVAL_MS - (now - lastTerminalRenderMs));
|
||||||
terminalText.postDelayed(() -> {
|
mainHandler.postDelayed(() -> {
|
||||||
terminalRenderPending = false;
|
terminalRenderPending = false;
|
||||||
renderTerminalNow();
|
renderTerminalNow();
|
||||||
}, delay);
|
}, delay);
|
||||||
@@ -3321,7 +3545,7 @@ public final class MainActivity extends Activity {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
lastTerminalRenderMs = System.currentTimeMillis();
|
lastTerminalRenderMs = System.currentTimeMillis();
|
||||||
if (terminalReadingMode) {
|
if (terminalViewMode == TERMINAL_VIEW_READING) {
|
||||||
terminalText.setMovementMethod(LinkMovementMethod.getInstance());
|
terminalText.setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
terminalText.setHighlightColor(Color.TRANSPARENT);
|
terminalText.setHighlightColor(Color.TRANSPARENT);
|
||||||
terminalText.setText(terminalScreen.renderFocused(terminalExpandedBlocks, key -> {
|
terminalText.setText(terminalScreen.renderFocused(terminalExpandedBlocks, key -> {
|
||||||
@@ -3334,7 +3558,7 @@ public final class MainActivity extends Activity {
|
|||||||
terminalText.setMovementMethod(null);
|
terminalText.setMovementMethod(null);
|
||||||
terminalText.setText(terminalScreen.render());
|
terminalText.setText(terminalScreen.render());
|
||||||
}
|
}
|
||||||
if (terminalFollowOutput) {
|
if (terminalViewMode != TERMINAL_VIEW_CHAT && terminalFollowOutput) {
|
||||||
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3870,6 +4094,12 @@ public final class MainActivity extends Activity {
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if ("conversation-message".equals(type)) {
|
||||||
|
upsertConversationMessage(ConversationMessage.fromJson(event));
|
||||||
|
terminalEventStatus = "message received";
|
||||||
|
updateTerminalMeta();
|
||||||
|
return;
|
||||||
|
}
|
||||||
if ("hook-event".equals(type)) {
|
if ("hook-event".equals(type)) {
|
||||||
terminalEventStatus = "hook event";
|
terminalEventStatus = "hook event";
|
||||||
updateTerminalMeta();
|
updateTerminalMeta();
|
||||||
|
|||||||
Reference in New Issue
Block a user