Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e71e83088 | ||
|
|
867d9b3251 | ||
|
|
1e3f75455c | ||
|
|
f4b48dd2a4 | ||
|
|
29d544a09e | ||
|
|
718d9838b9 | ||
|
|
3ba5dced83 | ||
|
|
a770934b71 | ||
|
|
798985f309 | ||
|
|
7fa5d5872d | ||
|
|
c639b614fd | ||
|
|
972b11da90 | ||
|
|
707c4c74f3 | ||
|
|
65f209a853 | ||
|
|
443508e354 | ||
|
|
1161712038 | ||
|
|
60cdebfa01 |
@@ -1,43 +0,0 @@
|
||||
name: Deploy Marketing Site
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'site/**'
|
||||
- '.github/workflows/deploy-site.yml'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: pages
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: npm
|
||||
cache-dependency-path: site/package-lock.json
|
||||
- run: cd site && npm install && VITE_BASE=/multi-casual-android/ npm run build
|
||||
- uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: site/dist
|
||||
|
||||
deploy:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
steps:
|
||||
- id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
@@ -9,15 +9,6 @@ This repository publishes an Android app that works with the Multica backend ser
|
||||
The app exists for users who already use Multica and want the core workspace workflow on Android: issue browsing, issue details, comments, projects, agents, skills, labels, and settings.
|
||||
|
||||
- Multica website: https://multica.ai
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><b>cn</b></td><td><a href="https://multi-casual-china-8temdtzs.zh-cn.edgeone.cool/">multi-casual-china-8temdtzs.zh-cn.edgeone.cool</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>global</b></td><td><a href="https://multi-casual-android.pages.dev/">multi-casual-android.pages.dev</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
- Multica web app: https://app.multica.ai
|
||||
- Service API used by this app: `https://api.multica.ai`
|
||||
- Android package: `ai.multicasual.app`
|
||||
@@ -28,7 +19,7 @@ Multica is the original product and backend service. Multi-Casual Android is an
|
||||
|
||||
The name “Multi-Casual” is used here to describe this Android client and its compatibility with Multica workflows. Product ownership, trademarks, service availability, and backend behavior remain with the Multica project and its maintainers.
|
||||
|
||||
This project follows the public guidance shared by the Multica maintainers about keeping Android app work independent and clearly attributed. See the related discussion: https://github.com/multica-ai/multica/issues/2285#issuecomment-4414513596
|
||||
If you represent Multica and would like wording or attribution adjusted, please open an issue. The goal is to keep the relationship accurate, respectful, and clear.
|
||||
|
||||
## What this app does
|
||||
|
||||
@@ -49,16 +40,6 @@ After consent, the public Android build reports only the `app_open` event:
|
||||
|
||||
You can also build the app without analytics keys. In that case, analytics providers will not start.
|
||||
|
||||
## Download signed APK
|
||||
|
||||
For normal installation, download the signed release APK from GitHub Releases:
|
||||
|
||||
- Latest release: https://github.com/park0er/multi-casual-android/releases/latest
|
||||
- Current signed APK: `Multi-Casual-Android-v0.1.4.apk`
|
||||
- SHA256: `35705dcc46fdc5fd9d0d718f50844f94bd55e49e236e4ca8c8b7b2e4f89b6c2f`
|
||||
|
||||
The debug APK produced by local development commands is not intended for public distribution.
|
||||
|
||||
## Build
|
||||
|
||||
Requirements:
|
||||
@@ -74,7 +55,7 @@ cp local.properties.example local.properties
|
||||
|
||||
Optional analytics keys can be filled in locally. Do not commit real keys.
|
||||
|
||||
Build a local debug APK for development:
|
||||
Build the Android APK:
|
||||
|
||||
```bash
|
||||
JAVA_HOME="/Applications/Android Studio.app/Contents/jbr/Contents/Home" \
|
||||
@@ -144,7 +125,7 @@ Multica 是原始产品和后端服务。Multi-Casual Android 是面向该服务
|
||||
|
||||
这里使用 “Multi-Casual” 名称,是为了说明这个 Android 客户端及其与 Multica 工作流的兼容关系。产品归属、商标、服务可用性和后端行为都仍属于 Multica 项目及其维护者。
|
||||
|
||||
这个项目遵循了 Multica maintainers 在公开 issue 中给出的 guidance:Android app 工作应保持独立维护、清晰署名并尊重原项目边界。相关讨论见:https://github.com/multica-ai/multica/issues/2285#issuecomment-4414513596
|
||||
如果你代表 Multica,并希望调整措辞或署名方式,欢迎开 issue。这个仓库希望把关系说明得准确、礼貌、清楚。
|
||||
|
||||
## App 能做什么
|
||||
|
||||
@@ -165,16 +146,6 @@ Analytics 是 opt-in。App 会先请求用户同意,然后才会上报 analyti
|
||||
|
||||
如果本地不配置 analytics key,analytics provider 不会启动。
|
||||
|
||||
## 下载签名 APK
|
||||
|
||||
普通用户安装时,请从 GitHub Releases 下载签名 release APK:
|
||||
|
||||
- 最新 release:https://github.com/park0er/multi-casual-android/releases/latest
|
||||
- 当前签名 APK:`Multi-Casual-Android-v0.1.4.apk`
|
||||
- SHA256:`35705dcc46fdc5fd9d0d718f50844f94bd55e49e236e4ca8c8b7b2e4f89b6c2f`
|
||||
|
||||
本地开发命令生成的 debug APK 不用于公开分发。
|
||||
|
||||
## 构建
|
||||
|
||||
环境要求:
|
||||
@@ -190,7 +161,7 @@ cp local.properties.example local.properties
|
||||
|
||||
可选 analytics key 只填在本地。不要提交真实 key。
|
||||
|
||||
构建本地开发用 debug APK:
|
||||
构建 Android APK:
|
||||
|
||||
```bash
|
||||
JAVA_HOME="/Applications/Android Studio.app/Contents/jbr/Contents/Home" \
|
||||
|
||||
@@ -19,6 +19,12 @@ This notice is informational and does not replace the license text shipped by ea
|
||||
| PostHog Android SDK | `com.posthog:posthog-android`, `com.posthog:posthog` | MIT |
|
||||
| Guava listenablefuture placeholder | `com.google.guava:listenablefuture` | Apache-2.0; Maven POM has limited license metadata |
|
||||
|
||||
## Website dependencies
|
||||
|
||||
The website source uses React, Vite, Motion, TypeScript, Lightning CSS, and related build-time packages. The lockfile currently contains MIT, Apache-2.0, MPL-2.0, ISC, BSD-3-Clause, and 0BSD packages.
|
||||
|
||||
These website dependencies are not bundled into the Android APK.
|
||||
|
||||
## Notes for redistributors
|
||||
|
||||
If you redistribute a binary build, keep this file, the GPL-3.0-only `LICENSE`, and any dependency notices required by the upstream libraries you include.
|
||||
|
||||
@@ -51,8 +51,8 @@ android {
|
||||
applicationId "ai.multicasual.app"
|
||||
minSdk 24
|
||||
targetSdk 36
|
||||
versionCode 5
|
||||
versionName "0.1.4"
|
||||
versionCode 2
|
||||
versionName "0.1.1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
|
||||
@@ -259,14 +259,19 @@ final class ApiClient {
|
||||
Models.Issue createIssue(String title, String description, String workspaceId, String projectId,
|
||||
String status, String priority, Models.Assignee assignee, String dueDate,
|
||||
String parentIssueId) throws Exception {
|
||||
return createIssue(title, description, workspaceId, projectId, null, status, priority, assignee, dueDate, parentIssueId);
|
||||
}
|
||||
|
||||
Models.Issue createIssue(String title, String description, String workspaceId, String projectId,
|
||||
String teamId, String status, String priority, Models.Assignee assignee, String dueDate,
|
||||
String parentIssueId) throws Exception {
|
||||
JSONObject body = IssuePayloads.createIssue(title, description, workspaceId, projectId, teamId, status, priority,
|
||||
assignee, dueDate, parentIssueId);
|
||||
JSONObject body = new JSONObject();
|
||||
body.put("title", title);
|
||||
body.put("description", description == null || description.isEmpty() ? JSONObject.NULL : description);
|
||||
body.put("workspace_id", workspaceId);
|
||||
if (projectId != null) body.put("project_id", projectId);
|
||||
if (parentIssueId != null && !parentIssueId.isEmpty()) body.put("parent_issue_id", parentIssueId);
|
||||
if (status != null) body.put("status", status);
|
||||
if (priority != null) body.put("priority", priority);
|
||||
if (dueDate != null && !dueDate.isEmpty()) body.put("due_date", dueDate); else body.put("due_date", JSONObject.NULL);
|
||||
if (assignee != null && assignee.id != null) {
|
||||
body.put("assignee_id", assignee.id);
|
||||
body.put("assignee_type", assignee.type);
|
||||
}
|
||||
return new Models.Issue(requestObject("POST", "/api/issues", query(null, "workspace_id", workspaceId), body));
|
||||
}
|
||||
|
||||
@@ -521,31 +526,6 @@ final class ApiClient {
|
||||
return new Models.Attachment(json);
|
||||
}
|
||||
|
||||
String downloadAttachmentText(String url) throws Exception {
|
||||
if (url == null || url.trim().isEmpty()) return "";
|
||||
HttpURLConnection conn = (HttpURLConnection) new URL(url.trim()).openConnection();
|
||||
conn.setRequestMethod("GET");
|
||||
conn.setConnectTimeout(15000);
|
||||
conn.setReadTimeout(30000);
|
||||
conn.setRequestProperty("Accept", "text/markdown,text/html,application/xhtml+xml,application/xml,text/xml,text/*,*/*;q=0.8");
|
||||
conn.setRequestProperty("X-Client-Platform", "android");
|
||||
conn.setRequestProperty("X-Client-Version", "debug");
|
||||
String token = authStore.token();
|
||||
if (token != null && !token.isEmpty() && url.startsWith(BuildConfig.MULTICA_API_BASE_URL)) {
|
||||
conn.setRequestProperty("Authorization", "Bearer " + token);
|
||||
}
|
||||
String cookieHeader = authStore.cloudFrontCookieHeader();
|
||||
if (cookieHeader != null && !cookieHeader.isEmpty() && url.contains("static.multica.ai")) {
|
||||
conn.setRequestProperty("Cookie", cookieHeader);
|
||||
}
|
||||
int code = conn.getResponseCode();
|
||||
saveResponseCookies(conn);
|
||||
InputStream stream = code >= 200 && code < 300 ? conn.getInputStream() : conn.getErrorStream();
|
||||
String text = readTextPreservingLines(stream);
|
||||
if (code < 200 || code >= 300) throw new ApiException(code, text);
|
||||
return text;
|
||||
}
|
||||
|
||||
void deleteAttachment(String workspaceId, String attachmentId) throws Exception {
|
||||
requestObject("DELETE", "/api/attachments/" + encPath(attachmentId),
|
||||
query(null, "workspace_id", workspaceId), null);
|
||||
@@ -768,18 +748,6 @@ final class ApiClient {
|
||||
return parseArray(extractArray(json, "agents"), Models.Agent::new);
|
||||
}
|
||||
|
||||
|
||||
List<Models.Squad> squads(String workspaceId) throws Exception {
|
||||
return squads(workspaceId, false);
|
||||
}
|
||||
|
||||
List<Models.Squad> squads(String workspaceId, boolean includeArchived) throws Exception {
|
||||
JSONObject query = query(null, "workspace_id", workspaceId);
|
||||
if (includeArchived) query.put("include_archived", "true");
|
||||
JSONObject json = requestObject("GET", "/api/squads", query, null, workspaceIdHeaders(workspaceId));
|
||||
return parseArray(extractArray(json, "squads"), Models.Squad::new);
|
||||
}
|
||||
|
||||
List<Models.Runtime> runtimes(String workspaceId) throws Exception {
|
||||
JSONObject json = requestObject("GET", "/api/runtimes", query(null, "workspace_id", workspaceId), null);
|
||||
return parseArray(extractArray(json, "runtimes"), Models.Runtime::new);
|
||||
@@ -1531,17 +1499,6 @@ final class ApiClient {
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
private static String readTextPreservingLines(InputStream stream) throws Exception {
|
||||
if (stream == null) return "";
|
||||
StringBuilder sb = new StringBuilder();
|
||||
char[] buffer = new char[4096];
|
||||
try (InputStreamReader reader = new InputStreamReader(stream, StandardCharsets.UTF_8)) {
|
||||
int count;
|
||||
while ((count = reader.read(buffer)) != -1) sb.append(buffer, 0, count);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
private static String queryString(JSONObject query) throws Exception {
|
||||
if (query == null || query.length() == 0) return "";
|
||||
StringBuilder sb = new StringBuilder("?");
|
||||
@@ -1593,14 +1550,6 @@ final class ApiClient {
|
||||
throw new IllegalArgumentException("workspace_id is required. Select a workspace first.");
|
||||
}
|
||||
|
||||
static Map<String, String> workspaceIdHeaders(String workspaceId) {
|
||||
String id = workspaceId == null ? "" : workspaceId.trim();
|
||||
if (!id.isEmpty()) {
|
||||
return Collections.singletonMap("X-Workspace-ID", id);
|
||||
}
|
||||
throw new IllegalArgumentException("workspace_id is required. Select a workspace first.");
|
||||
}
|
||||
|
||||
private static boolean isBlankQueryValue(Object value) {
|
||||
if (value == null || value == JSONObject.NULL) return true;
|
||||
return String.valueOf(value).trim().isEmpty();
|
||||
|
||||
@@ -1,86 +0,0 @@
|
||||
package ai.multica.app;
|
||||
|
||||
import java.net.URI;
|
||||
|
||||
final class AttachmentPreview {
|
||||
static final String BASE_URL = "https://attachment-preview.local/";
|
||||
|
||||
enum Kind {
|
||||
MARKDOWN,
|
||||
HTML,
|
||||
XML,
|
||||
DOWNLOAD
|
||||
}
|
||||
|
||||
private AttachmentPreview() {}
|
||||
|
||||
static Kind kindFor(String contentType, String filename) {
|
||||
String type = mediaType(contentType);
|
||||
if (isMarkdownType(type)) return Kind.MARKDOWN;
|
||||
if (isHtmlType(type)) return Kind.HTML;
|
||||
if (isXmlType(type)) return Kind.XML;
|
||||
|
||||
String name = filename == null ? "" : filename.trim().toLowerCase(java.util.Locale.ROOT);
|
||||
if (name.endsWith(".md") || name.endsWith(".markdown")) return Kind.MARKDOWN;
|
||||
if (name.endsWith(".html") || name.endsWith(".htm")) return Kind.HTML;
|
||||
if (name.endsWith(".xml")) return Kind.XML;
|
||||
return Kind.DOWNLOAD;
|
||||
}
|
||||
|
||||
static boolean isLocalPreviewUrl(String url) {
|
||||
if (url == null || url.trim().isEmpty()) return false;
|
||||
try {
|
||||
URI uri = URI.create(url.trim());
|
||||
String scheme = uri.getScheme();
|
||||
String host = uri.getHost();
|
||||
return "https".equalsIgnoreCase(scheme) && "attachment-preview.local".equalsIgnoreCase(host);
|
||||
} catch (IllegalArgumentException ignored) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static boolean isWebViewInternalDocumentUrl(String url) {
|
||||
if (url == null) return false;
|
||||
String value = url.trim().toLowerCase(java.util.Locale.ROOT);
|
||||
return value.equals("about:blank") || value.startsWith("data:text/html");
|
||||
}
|
||||
|
||||
static String xmlPreviewDocument(String xml) {
|
||||
return "<!doctype html><html><head><meta charset=\"utf-8\">"
|
||||
+ "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
|
||||
+ "<style>body{margin:0;padding:16px;background:#fff;color:#111;font:14px/1.55 ui-monospace,SFMono-Regular,Menlo,monospace;}pre{white-space:pre-wrap;word-break:break-word;margin:0;}</style>"
|
||||
+ "</head><body><pre>"
|
||||
+ escapeHtml(xml == null ? "" : xml)
|
||||
+ "</pre></body></html>";
|
||||
}
|
||||
|
||||
private static String mediaType(String contentType) {
|
||||
if (contentType == null) return "";
|
||||
int semicolon = contentType.indexOf(';');
|
||||
String value = semicolon >= 0 ? contentType.substring(0, semicolon) : contentType;
|
||||
return value.trim().toLowerCase(java.util.Locale.ROOT);
|
||||
}
|
||||
|
||||
private static boolean isMarkdownType(String type) {
|
||||
return "text/markdown".equals(type)
|
||||
|| "text/x-markdown".equals(type)
|
||||
|| "application/markdown".equals(type)
|
||||
|| "application/x-markdown".equals(type);
|
||||
}
|
||||
|
||||
private static boolean isHtmlType(String type) {
|
||||
return "text/html".equals(type) || "application/xhtml+xml".equals(type);
|
||||
}
|
||||
|
||||
private static boolean isXmlType(String type) {
|
||||
return "text/xml".equals(type) || "application/xml".equals(type) || type.endsWith("+xml");
|
||||
}
|
||||
|
||||
private static String escapeHtml(String value) {
|
||||
return value.replace("&", "&")
|
||||
.replace("<", "<")
|
||||
.replace(">", ">")
|
||||
.replace("\"", """)
|
||||
.replace("'", "'");
|
||||
}
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
package ai.multica.app;
|
||||
|
||||
final class ChatExperiencePolicy {
|
||||
private static final float CHAT_FOCUSED_COMPOSER_RATIO = 0.22f;
|
||||
private static final float ISSUE_FOCUSED_COMPOSER_RATIO = 0.18f;
|
||||
private static final int MIN_CHAT_FOCUSED_COMPOSER_HEIGHT = 132;
|
||||
private static final int MAX_CHAT_FOCUSED_COMPOSER_HEIGHT = 184;
|
||||
private static final int MIN_ISSUE_FOCUSED_COMPOSER_HEIGHT = 112;
|
||||
private static final int MAX_ISSUE_FOCUSED_COMPOSER_HEIGHT = 152;
|
||||
|
||||
enum Route {
|
||||
CHAT,
|
||||
ISSUE_COMMENT,
|
||||
ISSUE_REPLY
|
||||
}
|
||||
|
||||
private ChatExperiencePolicy() {
|
||||
}
|
||||
|
||||
static String newChatInitialTitle() {
|
||||
return "";
|
||||
}
|
||||
|
||||
static String firstChatTitle(String content) {
|
||||
String clean = content == null ? "" : content.trim();
|
||||
if (clean.isEmpty()) return "";
|
||||
StringBuilder title = new StringBuilder();
|
||||
clean.codePoints().limit(15).forEach(title::appendCodePoint);
|
||||
return title.toString();
|
||||
}
|
||||
|
||||
static boolean requiresTitleBeforeEnteringChat() {
|
||||
return false;
|
||||
}
|
||||
|
||||
static int focusedComposerHeightPx(Route route, int usableHeightPx) {
|
||||
int height = Math.max(0, usableHeightPx);
|
||||
if (route == Route.ISSUE_COMMENT || route == Route.ISSUE_REPLY) {
|
||||
int target = Math.round(height * ISSUE_FOCUSED_COMPOSER_RATIO);
|
||||
return clamp(target, MIN_ISSUE_FOCUSED_COMPOSER_HEIGHT, MAX_ISSUE_FOCUSED_COMPOSER_HEIGHT);
|
||||
}
|
||||
int target = Math.round(height * CHAT_FOCUSED_COMPOSER_RATIO);
|
||||
return clamp(target, MIN_CHAT_FOCUSED_COMPOSER_HEIGHT, MAX_CHAT_FOCUSED_COMPOSER_HEIGHT);
|
||||
}
|
||||
|
||||
static int focusedComposerHeightPx(int usableHeightPx) {
|
||||
return focusedComposerHeightPx(Route.CHAT, usableHeightPx);
|
||||
}
|
||||
|
||||
static boolean isFocusedComposerRoute(Route route) {
|
||||
return route == Route.CHAT || route == Route.ISSUE_COMMENT || route == Route.ISSUE_REPLY;
|
||||
}
|
||||
|
||||
private static int clamp(int value, int min, int max) {
|
||||
return Math.max(min, Math.min(max, value));
|
||||
}
|
||||
}
|
||||
@@ -13,83 +13,44 @@ import java.util.regex.Pattern;
|
||||
|
||||
final class AgentMentionMarkdown {
|
||||
static String markdown(String name, String agentId) {
|
||||
return mentionMarkdown("agent", name, agentId);
|
||||
String cleanName = name == null ? "" : name.trim()
|
||||
.replace("[", "\\[")
|
||||
.replace("]", "\\]");
|
||||
if (cleanName.isEmpty()) cleanName = Models.shortId(agentId);
|
||||
return "[@" + cleanName + "](mention://agent/" + agentId + ")";
|
||||
}
|
||||
|
||||
static String memberMarkdown(String name, String memberId) {
|
||||
return mentionMarkdown("member", name, memberId);
|
||||
}
|
||||
|
||||
static String squadMarkdown(String name, String squadId) {
|
||||
return mentionMarkdown("squad", name, squadId);
|
||||
}
|
||||
|
||||
static String displayText(String name, String id) {
|
||||
static String displayText(String name, String agentId) {
|
||||
String cleanName = cleanName(name);
|
||||
if (cleanName.isEmpty()) cleanName = Models.shortId(id);
|
||||
if (cleanName.isEmpty()) cleanName = Models.shortId(agentId);
|
||||
return "@" + cleanName;
|
||||
}
|
||||
|
||||
static String markdownFromDraft(String draft, List<Models.Agent> agents) {
|
||||
return markdownFromDraft(draft, agents, Collections.emptyList(), Collections.emptyList());
|
||||
}
|
||||
|
||||
static String markdownFromDraft(String draft, List<Models.Agent> agents,
|
||||
List<Models.Member> members, List<Models.Squad> squads) {
|
||||
String content = draft == null ? "" : draft.trim();
|
||||
if (content.isEmpty() || content.contains("mention://")) return content;
|
||||
ArrayList<MentionReplacement> replacements = new ArrayList<>();
|
||||
if (agents != null) {
|
||||
for (Models.Agent agent : agents) {
|
||||
replacements.add(new MentionReplacement(displayText(agent.name, agent.id), markdown(agent.name, agent.id)));
|
||||
}
|
||||
if (content.isEmpty() || content.contains("mention://agent/") || agents == null || agents.isEmpty()) {
|
||||
return content;
|
||||
}
|
||||
if (members != null) {
|
||||
for (Models.Member member : members) {
|
||||
replacements.add(new MentionReplacement(displayText(member.displayName, member.id), memberMarkdown(member.displayName, member.id)));
|
||||
if (member.userId != null && !member.userId.isEmpty() && !member.userId.equals(member.id)) {
|
||||
replacements.add(new MentionReplacement(displayText(member.displayName, member.userId), memberMarkdown(member.displayName, member.userId)));
|
||||
}
|
||||
}
|
||||
}
|
||||
if (squads != null) {
|
||||
for (Models.Squad squad : squads) {
|
||||
replacements.add(new MentionReplacement(displayText(squad.name, squad.id), squadMarkdown(squad.name, squad.id)));
|
||||
}
|
||||
}
|
||||
replacements.sort((left, right) -> Integer.compare(right.display.length(), left.display.length()));
|
||||
ArrayList<Models.Agent> sortedAgents = new ArrayList<>(agents);
|
||||
sortedAgents.sort((left, right) -> Integer.compare(
|
||||
displayText(right.name, right.id).length(),
|
||||
displayText(left.name, left.id).length()
|
||||
));
|
||||
String normalized = content;
|
||||
for (MentionReplacement replacement : replacements) {
|
||||
if (replacement.display.length() <= 1) continue;
|
||||
normalized = normalized.replace(replacement.display, replacement.markdown);
|
||||
for (Models.Agent agent : sortedAgents) {
|
||||
String display = displayText(agent.name, agent.id);
|
||||
if (display.length() <= 1) continue;
|
||||
normalized = normalized.replace(display, markdown(agent.name, agent.id));
|
||||
}
|
||||
return normalized;
|
||||
}
|
||||
|
||||
private static String mentionMarkdown(String type, String name, String id) {
|
||||
String cleanName = cleanName(name)
|
||||
.replace("[", "\\[")
|
||||
.replace("]", "\\]");
|
||||
if (cleanName.isEmpty()) cleanName = Models.shortId(id);
|
||||
return "[@" + cleanName + "](mention://" + type + "/" + id + ")";
|
||||
}
|
||||
|
||||
private static String cleanName(String name) {
|
||||
if (name == null) return "";
|
||||
String trimmed = name.trim();
|
||||
return "null".equalsIgnoreCase(trimmed) ? "" : trimmed;
|
||||
}
|
||||
|
||||
private static final class MentionReplacement {
|
||||
final String display;
|
||||
final String markdown;
|
||||
|
||||
MentionReplacement(String display, String markdown) {
|
||||
this.display = display;
|
||||
this.markdown = markdown;
|
||||
}
|
||||
}
|
||||
|
||||
private AgentMentionMarkdown() {
|
||||
}
|
||||
}
|
||||
@@ -99,19 +60,13 @@ final class IssueCommentRichText {
|
||||
|
||||
static String mentionDisplayLabel(String mentionType, String mentionId, String fallbackLabel,
|
||||
List<Models.Member> members, List<Models.Agent> agents,
|
||||
List<Models.Squad> squads, Models.User currentUser) {
|
||||
String resolved = resolveMentionName(mentionType, mentionId, members, agents, squads, currentUser);
|
||||
Models.User currentUser) {
|
||||
String resolved = resolveMentionName(mentionType, mentionId, members, agents, currentUser);
|
||||
String label = resolved.isEmpty() ? cleanMentionFallback(fallbackLabel, mentionId) : resolved;
|
||||
if (label.startsWith("@")) return label;
|
||||
return "@" + label;
|
||||
}
|
||||
|
||||
static String mentionDisplayLabel(String mentionType, String mentionId, String fallbackLabel,
|
||||
List<Models.Member> members, List<Models.Agent> agents,
|
||||
Models.User currentUser) {
|
||||
return mentionDisplayLabel(mentionType, mentionId, fallbackLabel, members, agents, Collections.emptyList(), currentUser);
|
||||
}
|
||||
|
||||
static int issueIdentifierEndAt(String value, int start) {
|
||||
if (value == null || start < 0 || start >= value.length()) return -1;
|
||||
Matcher matcher = ISSUE_IDENTIFIER.matcher(value);
|
||||
@@ -150,7 +105,7 @@ final class IssueCommentRichText {
|
||||
|
||||
private static String resolveMentionName(String mentionType, String mentionId,
|
||||
List<Models.Member> members, List<Models.Agent> agents,
|
||||
List<Models.Squad> squads, Models.User currentUser) {
|
||||
Models.User currentUser) {
|
||||
String type = mentionType == null ? "" : mentionType.toLowerCase(Locale.US);
|
||||
String id = mentionId == null ? "" : mentionId;
|
||||
if ("agent".equals(type)) {
|
||||
@@ -164,11 +119,6 @@ final class IssueCommentRichText {
|
||||
if (id.equals(member.id) || id.equals(member.userId)) return clean(member.displayName);
|
||||
}
|
||||
}
|
||||
if ("squad".equals(type)) {
|
||||
for (Models.Squad squad : squads) {
|
||||
if (id.equals(squad.id)) return clean(squad.name);
|
||||
}
|
||||
}
|
||||
for (Models.Agent agent : agents) {
|
||||
if (id.equals(agent.id)) return clean(agent.name);
|
||||
}
|
||||
@@ -176,9 +126,6 @@ final class IssueCommentRichText {
|
||||
for (Models.Member member : members) {
|
||||
if (id.equals(member.id) || id.equals(member.userId)) return clean(member.displayName);
|
||||
}
|
||||
for (Models.Squad squad : squads) {
|
||||
if (id.equals(squad.id)) return clean(squad.name);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
@@ -253,9 +200,7 @@ final class IssueCommentThreads {
|
||||
ArrayList<Thread> threads = new ArrayList<>();
|
||||
for (Models.Comment root : roots) {
|
||||
ArrayList<Models.Comment> replies = repliesByRoot.getOrDefault(clean(root.id), new ArrayList<>());
|
||||
replies.sort((left, right) -> descending
|
||||
? compareCreatedAt(right, left)
|
||||
: compareCreatedAt(left, right));
|
||||
replies.sort(IssueCommentThreads::compareCreatedAt);
|
||||
threads.add(new Thread(root, replies));
|
||||
}
|
||||
return threads;
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
package ai.multica.app;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
||||
final class IssuePayloads {
|
||||
private IssuePayloads() {
|
||||
}
|
||||
|
||||
static JSONObject createIssue(String title, String description, String workspaceId, String projectId,
|
||||
String teamId, String status, String priority, Models.Assignee assignee,
|
||||
String dueDate, String parentIssueId) throws Exception {
|
||||
JSONObject body = new JSONObject();
|
||||
body.put("title", title);
|
||||
body.put("description", description == null || description.isEmpty() ? JSONObject.NULL : description);
|
||||
body.put("workspace_id", workspaceId);
|
||||
if (projectId != null) body.put("project_id", projectId);
|
||||
if (teamId != null && !teamId.trim().isEmpty()) body.put("team_id", teamId.trim());
|
||||
if (parentIssueId != null && !parentIssueId.isEmpty()) body.put("parent_issue_id", parentIssueId);
|
||||
if (status != null) body.put("status", status);
|
||||
if (priority != null) body.put("priority", priority);
|
||||
if (dueDate != null && !dueDate.isEmpty()) body.put("due_date", dueDate); else body.put("due_date", JSONObject.NULL);
|
||||
if (assignee != null && assignee.id != null) {
|
||||
body.put("assignee_id", assignee.id);
|
||||
body.put("assignee_type", assignee.type);
|
||||
}
|
||||
return body;
|
||||
}
|
||||
}
|
||||
@@ -62,7 +62,6 @@ public final class MainActivity extends Activity {
|
||||
private List<Models.Project> projectCache = new ArrayList<>();
|
||||
private List<Models.Member> memberCache = new ArrayList<>();
|
||||
private List<Models.Agent> agentCache = new ArrayList<>();
|
||||
private List<Models.Squad> squadCache = new ArrayList<>();
|
||||
private List<Models.Runtime> runtimeCache = new ArrayList<>();
|
||||
private List<Models.Skill> skillCache = new ArrayList<>();
|
||||
private List<Models.Autopilot> autopilotCache = new ArrayList<>();
|
||||
@@ -267,7 +266,6 @@ public final class MainActivity extends Activity {
|
||||
projectCache = new ArrayList<>();
|
||||
memberCache = new ArrayList<>();
|
||||
agentCache = new ArrayList<>();
|
||||
squadCache = new ArrayList<>();
|
||||
runtimeCache = new ArrayList<>();
|
||||
skillCache = new ArrayList<>();
|
||||
autopilotCache = new ArrayList<>();
|
||||
@@ -567,7 +565,6 @@ public final class MainActivity extends Activity {
|
||||
projectCache = data.projects;
|
||||
memberCache = data.members;
|
||||
agentCache = data.agents;
|
||||
try { squadCache = safeSquads(); } catch (Exception ignored) { squadCache = new ArrayList<>(); }
|
||||
LinearLayout screen = vertical();
|
||||
LinearLayout scrollBody = vertical();
|
||||
scrollBody.setPadding(dp(14), dp(8), dp(14), dp(14));
|
||||
@@ -810,7 +807,6 @@ public final class MainActivity extends Activity {
|
||||
String statusValue = Models.STATUS_VALUES[Math.max(0, status.getSelectedItemPosition())];
|
||||
String priorityValue = Models.PRIORITY_VALUES[Math.max(0, priority.getSelectedItemPosition())];
|
||||
Models.Assignee selectedAssignee = assigneeAt(assignee.getSelectedItemPosition(), true);
|
||||
String teamId = selectedAssignee != null && "squad".equals(selectedAssignee.type) ? selectedAssignee.id : null;
|
||||
if (demoMode) {
|
||||
upsertDemoIssue(
|
||||
editing ? issue.id : "demo-issue-" + (demoIssues.size() + 1),
|
||||
@@ -829,7 +825,7 @@ public final class MainActivity extends Activity {
|
||||
return api.updateIssue(issue, titleText, desc.getText().toString(), projectId, statusValue, priorityValue, selectedAssignee);
|
||||
}
|
||||
if (currentWorkspace == null) throw new IllegalStateException(t("workspaceRequired"));
|
||||
return api.createIssue(titleText, desc.getText().toString(), currentWorkspace.id, projectId, teamId, statusValue, priorityValue, selectedAssignee, null, null);
|
||||
return api.createIssue(titleText, desc.getText().toString(), currentWorkspace.id, projectId, statusValue, priorityValue, selectedAssignee);
|
||||
}, saved -> afterSave.run(), error -> toast(t("saveFailed") + ": " + error.getMessage()));
|
||||
}).show();
|
||||
}
|
||||
@@ -1837,10 +1833,6 @@ public final class MainActivity extends Activity {
|
||||
}
|
||||
}
|
||||
|
||||
private List<Models.Squad> safeSquads() {
|
||||
try { return api.squads(currentWorkspace.id); } catch (Exception e) { return new ArrayList<>(); }
|
||||
}
|
||||
|
||||
private List<Models.Agent> safeAgents() {
|
||||
if (currentWorkspace == null) return Models.emptyList();
|
||||
try {
|
||||
@@ -1862,9 +1854,7 @@ public final class MainActivity extends Activity {
|
||||
private List<Models.Assignee> assignees(boolean includeEmpty) {
|
||||
if (memberCache.isEmpty()) memberCache = safeMembers();
|
||||
if (agentCache.isEmpty()) agentCache = safeAgents();
|
||||
if (squadCache.isEmpty()) squadCache = safeSquads();
|
||||
if (includeEmpty) return Models.issueFormAssigneeOptions(t("unassigned"), currentUser, memberCache, agentCache, squadCache);
|
||||
return Models.issueAssignees(false, t("unassigned"), currentUser, memberCache, agentCache, squadCache);
|
||||
return Models.issueAssignees(includeEmpty, t("unassigned"), currentUser, memberCache, agentCache);
|
||||
}
|
||||
|
||||
private String assigneeName(String id, String type) {
|
||||
@@ -1872,10 +1862,7 @@ public final class MainActivity extends Activity {
|
||||
if (currentUser != null && currentUser.id.equals(id)) return currentUser.name;
|
||||
for (Models.Member member : memberCache) if (member.id.equals(id)) return member.displayName;
|
||||
for (Models.Agent agent : agentCache) if (agent.id.equals(id)) return agent.name;
|
||||
String prefix;
|
||||
if ("agent".equals(type)) prefix = t("agent");
|
||||
else if ("squad".equals(type)) prefix = t("squad");
|
||||
else prefix = t("member");
|
||||
String prefix = "agent".equals(type) ? t("agent") : t("member");
|
||||
return prefix + " " + Models.shortId(id);
|
||||
}
|
||||
|
||||
@@ -2265,7 +2252,6 @@ public final class MainActivity extends Activity {
|
||||
case "unassigned": return "未分配";
|
||||
case "member": return "成员";
|
||||
case "agent": return "Agent";
|
||||
case "squad": return "小队";
|
||||
case "archive": return "归档";
|
||||
case "archived": return "已归档";
|
||||
case "archiveAgent": return "归档 Agent";
|
||||
@@ -2378,7 +2364,6 @@ public final class MainActivity extends Activity {
|
||||
case "unassigned": return "Unassigned";
|
||||
case "member": return "Member";
|
||||
case "agent": return "Agent";
|
||||
case "squad": return "Squad";
|
||||
case "archive": return "Archive";
|
||||
case "archived": return "Archived";
|
||||
case "archiveAgent": return "Archive Agent";
|
||||
|
||||
@@ -166,17 +166,13 @@ final class Models {
|
||||
return subscriber.userType == null ? "" : subscriber.userType;
|
||||
}
|
||||
|
||||
static String issueAssigneeDisplayName(Issue issue, List<Member> members, List<Agent> agents, List<Squad> squads, User currentUser) {
|
||||
static String issueAssigneeDisplayName(Issue issue, List<Member> members, List<Agent> agents, User currentUser) {
|
||||
if (issue == null || issue.assigneeId == null || issue.assigneeId.isEmpty()) return "";
|
||||
String assigneeId = issue.assigneeId;
|
||||
if ("agent".equals(issue.assigneeType)) {
|
||||
for (Agent agent : agents) {
|
||||
if (assigneeId.equals(agent.id)) return agent.name;
|
||||
}
|
||||
} else if ("squad".equals(issue.assigneeType)) {
|
||||
for (Squad squad : squads) {
|
||||
if (assigneeId.equals(squad.id)) return squad.name;
|
||||
}
|
||||
} else {
|
||||
if (currentUser != null && assigneeId.equals(currentUser.id)) return currentUser.name;
|
||||
for (Member member : members) {
|
||||
@@ -189,16 +185,11 @@ final class Models {
|
||||
for (Member member : members) {
|
||||
if (assigneeId.equals(member.id) || assigneeId.equals(member.userId)) return member.displayName;
|
||||
}
|
||||
for (Squad squad : squads) {
|
||||
if (assigneeId.equals(squad.id)) return squad.name;
|
||||
}
|
||||
String prefix;
|
||||
if ("agent".equals(issue.assigneeType)) {
|
||||
prefix = "Agent ";
|
||||
} else if ("member".equals(issue.assigneeType)) {
|
||||
prefix = "Member ";
|
||||
} else if ("squad".equals(issue.assigneeType)) {
|
||||
prefix = "Squad ";
|
||||
} else {
|
||||
prefix = "";
|
||||
}
|
||||
@@ -206,7 +197,7 @@ final class Models {
|
||||
}
|
||||
|
||||
static List<Assignee> issueAssignees(boolean includeEmpty, String emptyLabel, User currentUser,
|
||||
List<Member> members, List<Agent> agents, List<Squad> squads) {
|
||||
List<Member> members, List<Agent> agents) {
|
||||
List<Assignee> list = new ArrayList<>();
|
||||
List<String> seenMemberIds = new ArrayList<>();
|
||||
if (includeEmpty) list.add(new Assignee(null, null, emptyLabel));
|
||||
@@ -223,35 +214,6 @@ final class Models {
|
||||
if (agent.id == null || agent.id.isEmpty()) continue;
|
||||
list.add(new Assignee(agent.id, "agent", agent.name));
|
||||
}
|
||||
for (Squad squad : squads) {
|
||||
if (squad.id == null || squad.id.isEmpty()) continue;
|
||||
list.add(new Assignee(squad.id, "squad", squad.name));
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
static List<Assignee> issueFormAssigneeOptions(String emptyLabel, User currentUser,
|
||||
List<Member> members, List<Agent> agents, List<Squad> squads) {
|
||||
List<Assignee> list = new ArrayList<>();
|
||||
list.add(new Assignee(null, null, emptyLabel));
|
||||
for (Squad squad : squads) {
|
||||
if (squad.id == null || squad.id.isEmpty()) continue;
|
||||
list.add(new Assignee(squad.id, "squad", squad.name));
|
||||
}
|
||||
for (Agent agent : agents) {
|
||||
if (agent.id == null || agent.id.isEmpty()) continue;
|
||||
list.add(new Assignee(agent.id, "agent", agent.name));
|
||||
}
|
||||
List<String> seenMemberIds = new ArrayList<>();
|
||||
if (currentUser != null && currentUser.id != null && !currentUser.id.isEmpty()) {
|
||||
list.add(new Assignee(currentUser.id, "member", currentUser.name));
|
||||
seenMemberIds.add(currentUser.id);
|
||||
}
|
||||
for (Member member : members) {
|
||||
if (member.id == null || member.id.isEmpty() || seenMemberIds.contains(member.id)) continue;
|
||||
list.add(new Assignee(member.id, "member", member.displayName));
|
||||
seenMemberIds.add(member.id);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
@@ -794,27 +756,6 @@ final class Models {
|
||||
}
|
||||
}
|
||||
|
||||
static final class Squad {
|
||||
final String id;
|
||||
final String name;
|
||||
final String description;
|
||||
final String avatarUrl;
|
||||
final String archivedAt;
|
||||
final List<String> agentIds;
|
||||
final List<String> memberIds;
|
||||
|
||||
Squad(JSONObject json) {
|
||||
id = json.optString("id");
|
||||
name = json.optString("name", shortId(id));
|
||||
description = json.optString("description", "");
|
||||
avatarUrl = cleanString(json, "avatar_url", cleanString(json, "avatarUrl", ""));
|
||||
archivedAt = cleanString(json, "archived_at", "");
|
||||
agentIds = stringList(json.optJSONArray("agent_ids"));
|
||||
memberIds = stringList(json.optJSONArray("member_ids"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static final class Runtime {
|
||||
final String id;
|
||||
final String workspaceId;
|
||||
|
||||
@@ -61,7 +61,6 @@ import com.airbnb.lottie.compose.rememberLottieComposition
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.focus.onFocusChanged
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.graphics.SolidColor
|
||||
import androidx.compose.ui.graphics.graphicsLayer
|
||||
@@ -1021,8 +1020,6 @@ data class MulticaCupertinoActionSheetItem(
|
||||
val title: String,
|
||||
val subtitle: String? = null,
|
||||
val icon: ImageVector? = null,
|
||||
val badgeText: String? = null,
|
||||
val badgeColor: Color = MulticaColors.Accent,
|
||||
val contentDescription: String? = null,
|
||||
val selected: Boolean = false,
|
||||
val destructive: Boolean = false,
|
||||
@@ -1058,40 +1055,78 @@ fun MulticaCupertinoActionSheet(
|
||||
)
|
||||
},
|
||||
message = {
|
||||
Column(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
horizontalAlignment = Alignment.CenterHorizontally,
|
||||
) {
|
||||
if (!message.isNullOrBlank()) {
|
||||
Text(
|
||||
text = message,
|
||||
style = MaterialTheme.typography.bodySmall.copy(fontSize = 12.sp, lineHeight = 16.sp),
|
||||
color = MulticaColors.TextTertiary,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
}
|
||||
LazyColumn(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.heightIn(max = 420.dp),
|
||||
) {
|
||||
items(items.size) { index ->
|
||||
val item = items[index]
|
||||
MulticaCupertinoActionSheetItemContent(
|
||||
item = item,
|
||||
onClick = {
|
||||
if (!item.enabled) return@MulticaCupertinoActionSheetItemContent
|
||||
performMulticaTapFeedback(haptic)
|
||||
item.onClick()
|
||||
onDismissRequest()
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
if (!message.isNullOrBlank()) {
|
||||
Text(
|
||||
text = message,
|
||||
style = MaterialTheme.typography.bodySmall.copy(fontSize = 12.sp, lineHeight = 16.sp),
|
||||
color = MulticaColors.TextTertiary,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
}
|
||||
},
|
||||
buttons = {
|
||||
items.forEach { item ->
|
||||
action(
|
||||
onClick = {
|
||||
performMulticaTapFeedback(haptic)
|
||||
item.onClick()
|
||||
onDismissRequest()
|
||||
},
|
||||
style = if (item.destructive) AlertActionStyle.Destructive else AlertActionStyle.Default,
|
||||
enabled = item.enabled,
|
||||
) {
|
||||
Row(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.semantics(mergeDescendants = true) {
|
||||
contentDescription = "Multica Cupertino Action Sheet ${item.contentDescription ?: item.title}"
|
||||
},
|
||||
horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally),
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
item.icon?.let { icon ->
|
||||
Icon(
|
||||
imageVector = icon,
|
||||
contentDescription = null,
|
||||
tint = if (item.destructive) MulticaColors.Danger else MulticaColors.TextTertiary,
|
||||
modifier = Modifier.size(16.dp),
|
||||
)
|
||||
}
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Text(
|
||||
text = item.title,
|
||||
style = MaterialTheme.typography.bodyMedium.copy(
|
||||
fontSize = 15.sp,
|
||||
lineHeight = 19.sp,
|
||||
fontWeight = if (item.selected) FontWeight.SemiBold else FontWeight.Normal,
|
||||
),
|
||||
color = if (item.destructive) MulticaColors.Danger else MulticaColors.TextPrimary,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
if (!item.subtitle.isNullOrBlank()) {
|
||||
Text(
|
||||
text = item.subtitle,
|
||||
style = MaterialTheme.typography.labelSmall.copy(fontSize = 11.sp, lineHeight = 13.sp),
|
||||
color = MulticaColors.TextTertiary,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
}
|
||||
}
|
||||
if (item.selected) {
|
||||
Icon(
|
||||
imageVector = Icons.Outlined.CheckCircle,
|
||||
contentDescription = null,
|
||||
tint = MulticaColors.Accent,
|
||||
modifier = Modifier.size(16.dp),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!cancelText.isNullOrBlank()) {
|
||||
action(
|
||||
onClick = {
|
||||
@@ -1112,83 +1147,6 @@ fun MulticaCupertinoActionSheet(
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun MulticaCupertinoActionSheetItemContent(
|
||||
item: MulticaCupertinoActionSheetItem,
|
||||
onClick: () -> Unit,
|
||||
) {
|
||||
Row(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.clickable(enabled = item.enabled, onClick = onClick)
|
||||
.padding(horizontal = 12.dp, vertical = 11.dp)
|
||||
.semantics(mergeDescendants = true) {
|
||||
contentDescription = "Multica Cupertino Action Sheet ${item.contentDescription ?: item.title}"
|
||||
},
|
||||
horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally),
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
item.icon?.let { icon ->
|
||||
Icon(
|
||||
imageVector = icon,
|
||||
contentDescription = null,
|
||||
tint = if (item.destructive) MulticaColors.Danger else MulticaColors.TextTertiary,
|
||||
modifier = Modifier.size(16.dp),
|
||||
)
|
||||
}
|
||||
if (!item.badgeText.isNullOrBlank()) {
|
||||
Text(
|
||||
text = item.badgeText,
|
||||
modifier = Modifier
|
||||
.clip(RoundedCornerShape(999.dp))
|
||||
.background(item.badgeColor.copy(alpha = 0.16f))
|
||||
.border(1.dp, item.badgeColor.copy(alpha = 0.32f), RoundedCornerShape(999.dp))
|
||||
.padding(horizontal = 7.dp, vertical = 3.dp),
|
||||
style = MaterialTheme.typography.labelSmall.copy(
|
||||
fontSize = 10.sp,
|
||||
lineHeight = 12.sp,
|
||||
fontWeight = FontWeight.SemiBold,
|
||||
),
|
||||
color = item.badgeColor,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
)
|
||||
}
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Text(
|
||||
text = item.title,
|
||||
style = MaterialTheme.typography.bodyMedium.copy(
|
||||
fontSize = 15.sp,
|
||||
lineHeight = 19.sp,
|
||||
fontWeight = if (item.selected) FontWeight.SemiBold else FontWeight.Normal,
|
||||
),
|
||||
color = if (item.destructive) MulticaColors.Danger else MulticaColors.TextPrimary,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
if (!item.subtitle.isNullOrBlank()) {
|
||||
Text(
|
||||
text = item.subtitle,
|
||||
style = MaterialTheme.typography.labelSmall.copy(fontSize = 11.sp, lineHeight = 13.sp),
|
||||
color = MulticaColors.TextTertiary,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
}
|
||||
}
|
||||
if (item.selected) {
|
||||
Icon(
|
||||
imageVector = Icons.Outlined.CheckCircle,
|
||||
contentDescription = null,
|
||||
tint = MulticaColors.Accent,
|
||||
modifier = Modifier.size(16.dp),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
@OptIn(ExperimentalCupertinoApi::class)
|
||||
fun MulticaCupertinoAlertDialog(
|
||||
@@ -1654,7 +1612,6 @@ fun MulticaCupertinoTextField(
|
||||
singleLine: Boolean = false,
|
||||
minLines: Int = 1,
|
||||
maxLines: Int = if (singleLine) 1 else Int.MAX_VALUE,
|
||||
onFocusedChange: ((Boolean) -> Unit)? = null,
|
||||
) {
|
||||
val fieldDescription = contentDescription ?: "Multica Cupertino Text Field $label"
|
||||
val centerSingleLineContent = singleLine || minLines <= 1
|
||||
@@ -1694,8 +1651,7 @@ fun MulticaCupertinoTextField(
|
||||
onValueChange = onValueChange,
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.wrapContentHeight()
|
||||
.onFocusChanged { onFocusedChange?.invoke(it.isFocused) },
|
||||
.wrapContentHeight(),
|
||||
enabled = enabled,
|
||||
singleLine = singleLine,
|
||||
minLines = minLines,
|
||||
@@ -1738,7 +1694,6 @@ fun MulticaTextField(
|
||||
singleLine: Boolean = false,
|
||||
minLines: Int = 1,
|
||||
maxLines: Int = if (singleLine) 1 else Int.MAX_VALUE,
|
||||
onFocusedChange: ((Boolean) -> Unit)? = null,
|
||||
) {
|
||||
MulticaCupertinoTextField(
|
||||
value = value,
|
||||
@@ -1752,7 +1707,6 @@ fun MulticaTextField(
|
||||
singleLine = singleLine,
|
||||
minLines = minLines,
|
||||
maxLines = maxLines,
|
||||
onFocusedChange = onFocusedChange,
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Multi-Casual Android</title>
|
||||
<link rel="canonical" href="https://park0er.github.io/multi-casual-android/">
|
||||
<meta name="description" content="Main landing page for Multi-Casual Android, an independent Android companion app for Multica users.">
|
||||
<style>body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:#fff;color:#111}a{color:#2563eb}main{max-width:960px;margin:0 auto;padding:48px 24px}h1{font-size:2rem}p{line-height:1.6;margin:12px 0}footer{margin-top:64px;color:#555}</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Multi-Casual Android</h1>
|
||||
<p>Main site is published at <a href="https://multi-casual-android.pages.dev">https://multi-casual-android.pages.dev</a> and <a href="https://multi-casual-china-8temdtzs.zh-cn.edgeone.cool/">https://multi-casual-china-8temdtzs.zh-cn.edgeone.cool/</a>.</p>
|
||||
<p>You can also install the signed APK directly from <a href="https://github.com/park0er/multi-casual-android/releases/download/v0.1.4/Multi-Casual-Android-v0.1.4.apk">GitHub Releases</a>.</p>
|
||||
</main>
|
||||
<footer>
|
||||
<p>Site placeholder published from the public Android source repository.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="Multi-Casual Android is an independent Android companion app for Multica users." />
|
||||
<link rel="icon" href="./favicon.png" type="image/png" />
|
||||
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='18' fill='%231647ff'/%3E%3Ctext x='32' y='41' text-anchor='middle' font-family='Arial,sans-serif' font-size='30' font-weight='800' fill='white'%3EM%3C/text%3E%3C/svg%3E" />
|
||||
<title>Multi-Casual Android</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@emnapi/wasi-threads": {
|
||||
"version": "1.2.2",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
|
||||
"integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
|
||||
"integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
@@ -264,37 +264,6 @@
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/core": {
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
|
||||
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
"@emnapi/wasi-threads": "1.2.1",
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/runtime": {
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
|
||||
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
|
||||
"integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
|
||||
|
||||
|
Before Width: | Height: | Size: 5.0 KiB |
@@ -1,629 +1,318 @@
|
||||
import logoImg from "./assets/logo.png";
|
||||
import { useState, useEffect, useRef, useCallback, useMemo } from "react";
|
||||
import { motion, AnimatePresence, useMotionValue, useTransform, useReducedMotion } from "motion/react";
|
||||
import inboxImg from "./assets/screenshots/01-inbox.jpg";
|
||||
import issuesListImg from "./assets/screenshots/02-issues-list.jpg";
|
||||
import issuesBoardImg from "./assets/screenshots/03-issues-board.jpg";
|
||||
import issueDetailImg from "./assets/screenshots/04-issue-detail.jpg";
|
||||
import issueSubImg from "./assets/screenshots/05-issue-detail-subissues.jpg";
|
||||
import commentImg from "./assets/screenshots/06-comment-composer.jpg";
|
||||
import mentionImg from "./assets/screenshots/07-mention-picker.jpg";
|
||||
import projectsImg from "./assets/screenshots/08-projects-list.jpg";
|
||||
import projectDetailImg from "./assets/screenshots/09-project-detail.jpg";
|
||||
import agentsImg from "./assets/screenshots/10-agents-list.jpg";
|
||||
import runtimesImg from "./assets/screenshots/11-runtimes-list.jpg";
|
||||
import skillsImg from "./assets/screenshots/12-skills-list.jpg";
|
||||
import skillDetailImg from "./assets/screenshots/13-skill-detail.jpg";
|
||||
import settingsImg from "./assets/screenshots/14-settings.jpg";
|
||||
import promoVideo from "./assets/video/multica-android-promo-draft.mp4";
|
||||
import { useState } from "react";
|
||||
import { motion, useReducedMotion, type MotionProps } from "motion/react";
|
||||
import issueDetail from "./assets/screenshots/02-issue-detail.png";
|
||||
import commentFocused from "./assets/screenshots/03-comment-focused.png";
|
||||
import promoVideo from "./assets/video/multica-android-promo-funk-final.mp4";
|
||||
|
||||
const release = {
|
||||
packageName: "ai.multicasual.app",
|
||||
sha256: "35705dcc46fdc5fd9d0d718f50844f94bd55e49e236e4ca8c8b7b2e4f89b6c2f",
|
||||
sha256: "f724e2e18dcf429e4cf8ed8782507136175732ffda28a7fc89a4a14b5b603b57",
|
||||
githubUrl: "https://github.com/park0er/multi-casual-android",
|
||||
releasesUrl: "https://github.com/park0er/multi-casual-android/releases/download/v0.1.4/Multi-Casual-Android-v0.1.4.apk",
|
||||
iosUrl: "https://github.com/park0er/multi-casual-ios-app",
|
||||
releasesUrl: "https://github.com/park0er/multi-casual-android/releases/latest",
|
||||
multicaUrl: "https://multica.ai",
|
||||
serviceUrl: "https://app.multica.ai",
|
||||
apiUrl: "https://api.multica.ai",
|
||||
};
|
||||
|
||||
type Locale = "en" | "zh";
|
||||
|
||||
const copy: Record<Locale, {
|
||||
nav: { brand: string; download: string; trust: string; language: string };
|
||||
hero: { eyebrow: string; title: string; subtitle: string; download: string; github: string; multica: string; ios: string };
|
||||
relationship: { kicker: string; title: string; body1: string; body2: string };
|
||||
journey: { kicker: string; title: string; subtitle: string; cta: string; steps: Array<{ title: string; subtitle: string }> };
|
||||
workspace: { kicker: string; title: string; subtitle: string; items: Array<{ title: string; subtitle: string }> };
|
||||
video: { kicker: string; title: string; body: string };
|
||||
download: { kicker: string; title: string; package: string; api: string; sha: string; latest: string; source: string; star: string };
|
||||
trust: { kicker: string; items: string[] };
|
||||
footer: { tagline: string; multica: string; github: string; ios: string; download: string };
|
||||
}> = {
|
||||
const copy = {
|
||||
en: {
|
||||
nav: { brand: "Multi-Casual Android", download: "Download", trust: "Trust", language: "中文" },
|
||||
nav: {
|
||||
brand: "Multi-Casual Android",
|
||||
download: "Download",
|
||||
trust: "Trust",
|
||||
relationship: "Relationship",
|
||||
language: "中文",
|
||||
},
|
||||
hero: {
|
||||
eyebrow: "Independent companion app · Built for Multica workflows",
|
||||
title: "Keep your Multica workspace moving from Android.",
|
||||
subtitle: "Check inbox updates, browse issues, read full context, reply in threads, and keep agent workspace assets close — an independent Android companion app for Multica users.",
|
||||
title: "Review issues, reply faster, stay in flow on Android.",
|
||||
subtitle:
|
||||
"An independent Android companion app for people who already use Multica and want the core workspace loop on a phone.",
|
||||
download: "Download APK",
|
||||
github: "GitHub",
|
||||
github: "View GitHub",
|
||||
multica: "Visit Multica",
|
||||
ios: "iOS App",
|
||||
typing: "Looks good — verified on Android.",
|
||||
},
|
||||
relationship: {
|
||||
kicker: "Relationship to Multica",
|
||||
title: "Respectful, explicit, and independent.",
|
||||
body1: "Multi-Casual Android is an independent companion app for Multica users. It connects to Multica service APIs for compatibility, but it is not maintained, endorsed, or published by the Multica project maintainers.",
|
||||
body2: "This project was originally explored as a contribution path with the Multica community. The Multica maintainers later indicated that their own app direction would be led upstream, so this Android client is maintained independently, following that boundary while staying respectful of the original project.",
|
||||
body:
|
||||
"Multi-Casual Android is an independent companion app for Multica users. It connects to Multica service APIs for compatibility, but it is not maintained, endorsed, or published by the Multica project maintainers, and it should not be presented as a Multica Android app from the upstream project.",
|
||||
},
|
||||
journey: {
|
||||
kicker: "Interactive walkthrough",
|
||||
title: "Try the flow.",
|
||||
subtitle: "Click each step or scroll to see the app in action.",
|
||||
cta: "Start the walkthrough",
|
||||
steps: [
|
||||
{ title: "Inbox notifications", subtitle: "Stay on top of activity — new issues, comments, and agent progress show up as they happen." },
|
||||
{ title: "Browse issues", subtitle: "See all tasks in a clean list view, ready for triage. Filter, search, and tap into any issue." },
|
||||
{ title: "Switch to board view", subtitle: "Tap the view toggle to switch to a kanban board that shows status flow at a glance." },
|
||||
{ title: "Open issue detail", subtitle: "Tap an issue card to see the full detail: title, status, labels, assignee, and body text." },
|
||||
{ title: "Explore context", subtitle: "Context guide points zoom into focus areas — title and status, body content, then subtasks and comments — and return to the full view between each." },
|
||||
{ title: "Scroll for more", subtitle: "Keep scrolling to see subtasks, subscribers, and the comment thread — all the structured context stays on one page." },
|
||||
{ title: "Draft a comment", subtitle: "Tap the comment box. The keyboard appears and a comment types out character by character." },
|
||||
{ title: "Mention anyone", subtitle: "Type @ and a picker appears with people, agents, and squads. Choose who to notify." },
|
||||
{ title: "Workspace overview", subtitle: "Switch between Projects, Agents, Runtimes, Skills, and Settings with workspace chips." },
|
||||
],
|
||||
featuresKicker: "What it covers",
|
||||
features: [
|
||||
{
|
||||
title: "Issue workflows",
|
||||
body: "Browse inbox items, open issue details, review comments, and keep task context close while away from desktop.",
|
||||
},
|
||||
{
|
||||
title: "Mobile replies",
|
||||
body: "Tap into the comment flow, draft a response, and continue the same discussion you would normally handle on the web.",
|
||||
},
|
||||
{
|
||||
title: "Cloud-service compatible",
|
||||
body: "The Android app is designed as a companion to the Multica backend service. It does not bundle a server, and it does not add runtime backend switching for normal users.",
|
||||
},
|
||||
],
|
||||
demo: {
|
||||
kicker: "Real Android flow",
|
||||
title: "Open an issue. Read context. Draft a comment.",
|
||||
body:
|
||||
"The demo material uses emulator screenshots from a real project. Interactive moments are animated as safe overlays, so no public test comment needs to be submitted.",
|
||||
},
|
||||
workspace: {
|
||||
kicker: "Workspace assets",
|
||||
title: "Projects, agents, and everything in between.",
|
||||
subtitle: "Switch between workspace views to see the full picture.",
|
||||
items: [
|
||||
{ title: "Projects", subtitle: "Browse projects with progress tracking" },
|
||||
{ title: "Project detail", subtitle: "Task stats, status fields, and resources" },
|
||||
{ title: "Agents", subtitle: "View agent status and recent activity" },
|
||||
{ title: "Runtimes", subtitle: "Check runtime availability and versions" },
|
||||
{ title: "Skills", subtitle: "Browse the workspace agent skill library" },
|
||||
{ title: "Skill detail", subtitle: "Inspect skill structure and documentation" },
|
||||
{ title: "Settings", subtitle: "Account, workspace, and preference controls" },
|
||||
],
|
||||
video: {
|
||||
kicker: "Promo video",
|
||||
title: "A quick walkthrough of the Android issue flow.",
|
||||
body:
|
||||
"The walkthrough shows a real emulator project, issue context, a simulated typewriter-style comment draft, and a light funk-style background track.",
|
||||
},
|
||||
video: { kicker: "Product demo", title: "See it in 30 seconds.", body: "A fast walkthrough of inbox, issues, context, comments, mentions, and workspace views." },
|
||||
download: { kicker: "GitHub APK", title: "Install from GitHub Releases.", package: "Package", api: "Service API", sha: "APK SHA256", latest: "Download APK", source: "Source code", star: "Like the app? Give us a star on GitHub ⭐ — it means a lot to the maintainers." },
|
||||
trust: {
|
||||
kicker: "Trust and privacy",
|
||||
items: [
|
||||
"Community-maintained independent project; not affiliated with or endorsed by Multica maintainers.",
|
||||
"Published as its own Android app for Multica users, with explicit attribution and product boundaries.",
|
||||
"Open source under GPLv3 license — inspect, fork, or contribute.",
|
||||
"No chat content, file content, email address, tokens, or precise location are collected.",
|
||||
],
|
||||
download: {
|
||||
kicker: "GitHub APK",
|
||||
title: "Install from GitHub Releases.",
|
||||
package: "Package",
|
||||
api: "Service API",
|
||||
sha: "APK SHA256",
|
||||
latest: "Latest release",
|
||||
source: "Source code",
|
||||
},
|
||||
trustKicker: "Trust and privacy",
|
||||
trustItems: [
|
||||
"Independent companion app; no claim of Multica project ownership or maintainer endorsement.",
|
||||
"Published as its own Android app for Multica users, while keeping attribution and product boundaries explicit.",
|
||||
"Analytics requires user consent and is limited to an app_open event in the public Android build.",
|
||||
"No chat content, file content, email address, tokens, or precise location are intentionally reported.",
|
||||
],
|
||||
footer: {
|
||||
tagline: "Independent Android companion app for Multica users. GitHub-distributed APK.",
|
||||
multica: "Multica website",
|
||||
github: "GitHub",
|
||||
download: "Download APK",
|
||||
},
|
||||
footer: { tagline: "Independent Android companion app for Multica users. GitHub-distributed APK.", multica: "Multica website", github: "GitHub", ios: "iOS App", download: "Download APK" },
|
||||
},
|
||||
zh: {
|
||||
nav: { brand: "Multi-Casual Android", download: "下载", trust: "信任说明", language: "English" },
|
||||
nav: {
|
||||
brand: "Multi-Casual Android",
|
||||
download: "下载",
|
||||
trust: "信任说明",
|
||||
relationship: "项目关系",
|
||||
language: "English",
|
||||
},
|
||||
hero: {
|
||||
eyebrow: "独立 companion app · 面向 Multica 工作流",
|
||||
title: "在 Android 上跟进你的 Multica 工作现场。",
|
||||
subtitle: "查看通知、浏览 issues、阅读完整上下文、回复评论、@ 对方 —— 面向 Multica 用户的独立 Android companion app。",
|
||||
title: "在 Android 上处理 Issue。",
|
||||
subtitle: "查看任务上下文、进入评论区、草拟回复,把核心 workspace 闭环带到手机上。",
|
||||
download: "下载 APK",
|
||||
github: "GitHub",
|
||||
github: "查看 GitHub",
|
||||
multica: "访问 Multica",
|
||||
ios: "iOS App",
|
||||
typing: "已在 Android 上验证,看起来没问题。",
|
||||
},
|
||||
relationship: {
|
||||
kicker: "与 Multica 的关系",
|
||||
title: "礼貌、清楚、保持独立。",
|
||||
body1: "Multi-Casual Android 是面向 Multica 用户的独立 companion app。它为了兼容现有工作流而连接 Multica 服务 API,但并不由 Multica 项目维护者维护、背书或发布。",
|
||||
body2: "这个项目最初是作为向 Multica 社区贡献的路径来探索的。由于 Multica maintainers 后续计划推进他们自己主导的 app 体系,因此这套 Android 代码体系没有直接并入上游。我们尊重 maintainers 的边界建议,将 Multi-Casual Android 作为独立 app 继续运营和维护。",
|
||||
body:
|
||||
"Multi-Casual Android 是面向 Multica 用户的独立 companion app。它为了兼容现有工作流而连接 Multica 服务 API,但并不由 Multica 项目维护者维护、背书或发布,也不应该被表述为上游项目推出的 Multica Android App。",
|
||||
},
|
||||
journey: {
|
||||
kicker: "交互式演示",
|
||||
title: "试试这个流程。",
|
||||
subtitle: "点击每个步骤,或滚动页面查看 app 实际操作。",
|
||||
cta: "开始演示",
|
||||
steps: [
|
||||
{ title: "Inbox 通知", subtitle: "新 issues、评论和 agent 进展会实时出现在收件箱,不错过任何动态。" },
|
||||
{ title: "浏览 Issues", subtitle: "在列表视图中查看所有任务,快速筛选和进入任意 issue。" },
|
||||
{ title: "切换看板视图", subtitle: "点击视图切换按钮,看板视图让你一眼看到任务状态流。" },
|
||||
{ title: "打开 Issue 详情", subtitle: "点击 issue 卡片查看完整详情:标题、状态、标签、负责人和正文。" },
|
||||
{ title: "探索上下文", subtitle: "Context 引导点依次放大标题与状态、正文内容、子任务与评论,然后缩回全貌。" },
|
||||
{ title: "滚动查看更多", subtitle: "继续下滑查看子任务、订阅者和评论线程 —— 结构化上下文都在同一页。" },
|
||||
{ title: "草拟评论", subtitle: "点击评论框,键盘出现,评论逐字输入。" },
|
||||
{ title: "@ 提及任何人", subtitle: "输入 @ 弹出选择器,可选人、agent 或小队。" },
|
||||
{ title: "Workspace 总览", subtitle: "通过 workspace chips 切换查看 Projects、Agents、Runtimes、Skills 和 Settings。" },
|
||||
],
|
||||
featuresKicker: "覆盖能力",
|
||||
features: [
|
||||
{
|
||||
title: "Issue 工作流",
|
||||
body: "查看 Inbox 条目、打开 Issue 详情、阅读评论,在离开桌面时也能保留任务上下文。",
|
||||
},
|
||||
{
|
||||
title: "手机端回复",
|
||||
body: "进入评论输入流程,草拟回复,继续原本会在 Web 端处理的同一条讨论。",
|
||||
},
|
||||
{
|
||||
title: "兼容云服务流程",
|
||||
body: "Android App 是 Multica 后端服务的 companion;不内置服务端,也不为普通用户提供运行时后端切换。",
|
||||
},
|
||||
],
|
||||
demo: {
|
||||
kicker: "真实 Android 流程",
|
||||
title: "打开 Issue,阅读上下文,然后草拟评论。",
|
||||
body: "演示素材来自真实项目里的模拟器截图;交互部分用安全的叠加动画表现,不需要真的往公开项目里提交测试评论。",
|
||||
},
|
||||
workspace: {
|
||||
kicker: "Workspace 资产",
|
||||
title: "项目、agents,以及它们之间的一切。",
|
||||
subtitle: "切换 workspace 视图,掌握全貌。",
|
||||
items: [
|
||||
{ title: "Projects", subtitle: "浏览项目和进度追踪" },
|
||||
{ title: "项目详情", subtitle: "任务统计、状态字段和资源入口" },
|
||||
{ title: "Agents", subtitle: "查看 agent 状态和最近活动" },
|
||||
{ title: "Runtimes", subtitle: "检查运行时可用性和版本" },
|
||||
{ title: "Skills", subtitle: "浏览 workspace agent 技能库" },
|
||||
{ title: "技能详情", subtitle: "查看技能结构和文档" },
|
||||
{ title: "Settings", subtitle: "账号、工作区和偏好控制" },
|
||||
],
|
||||
video: {
|
||||
kicker: "宣传视频",
|
||||
title: "快速看一遍 Android 端 Issue 流程。",
|
||||
body:
|
||||
"这段 walkthrough 使用真实模拟器项目截图,展示 Issue 上下文、逐字输入感的评论草稿,以及一条轻快的 funk style 背景乐。",
|
||||
},
|
||||
video: { kicker: "产品演示", title: "30 秒看完核心流程。", body: "快速演示 inbox 通知、issues 看板、上下文探索、评论回复、@ 提及和 workspace 视图切换。" },
|
||||
download: { kicker: "GitHub APK", title: "从 GitHub Releases 安装。", package: "Package", api: "Service API", sha: "APK SHA256", latest: "下载APK包", source: "源代码", star: "喜欢我们的 app?请在 GitHub 上给项目点个 Star ⭐,这是对我们作者最大的支持。" },
|
||||
trust: {
|
||||
kicker: "信任与隐私",
|
||||
items: [
|
||||
"社区维护的独立项目;与 Multica maintainers 无隶属关系,无背书。",
|
||||
"作为面向 Multica 用户的独立 Android app 发布,明确标注产品边界。",
|
||||
"GPLv3 开源许可证 —— 可以查看、fork 或贡献。",
|
||||
"不收集聊天内容、文件内容、邮箱、tokens 或精确位置信息。",
|
||||
],
|
||||
download: {
|
||||
kicker: "GitHub APK",
|
||||
title: "从 GitHub Releases 安装。",
|
||||
package: "包名",
|
||||
api: "服务 API",
|
||||
sha: "APK SHA256",
|
||||
latest: "最新 Release",
|
||||
source: "源码仓库",
|
||||
},
|
||||
trustKicker: "信任与隐私",
|
||||
trustItems: [
|
||||
"这是独立 companion app,不声明拥有 Multica 项目,也不暗示维护者背书。",
|
||||
"作为独立 Android App 发布给 Multica 用户,同时明确署名和产品边界。",
|
||||
"公开 Android 版本里的 analytics 需要用户同意,并且仅限 app_open 事件。",
|
||||
"不会有意上报聊天内容、文件内容、邮箱、token 或精确位置。",
|
||||
],
|
||||
footer: {
|
||||
tagline: "面向 Multica 用户的独立 Android companion app,通过 GitHub 分发 APK。",
|
||||
multica: "Multica 网站",
|
||||
github: "GitHub",
|
||||
download: "下载 APK",
|
||||
},
|
||||
footer: { tagline: "面向 Multica 用户的独立 Android companion app。GitHub 分发 APK。", multica: "Multica 官网", github: "GitHub", ios: "iOS App", download: "下载 APK" },
|
||||
},
|
||||
};
|
||||
} satisfies Record<Locale, unknown>;
|
||||
|
||||
const JOURNEY_STEPS = 9;
|
||||
const TYPING_TEXT = "Looks good. I'll ask the agent to check the failing case and post a follow-up.";
|
||||
const MENTION_ITEMS = [
|
||||
{ name: "codex", color: "#1647ff" },
|
||||
{ name: "Opus", color: "#7c3aed" },
|
||||
{ name: "RollieOC", color: "#059669" },
|
||||
];
|
||||
|
||||
const WORKSPACE_SCREENSHOTS = [projectsImg, projectDetailImg, agentsImg, runtimesImg, skillsImg, skillDetailImg, settingsImg];
|
||||
|
||||
const fade = (reduced: boolean, delay = 0) => ({
|
||||
initial: reduced ? {} : { opacity: 0, y: 18 },
|
||||
whileInView: { opacity: 1, y: 0 },
|
||||
viewport: { once: true, margin: "-60px" },
|
||||
transition: { duration: 0.65, delay, ease: [0.25, 0.1, 0.25, 1] as const },
|
||||
});
|
||||
|
||||
const reveal = (reduced: boolean) => ({
|
||||
initial: reduced ? {} : { opacity: 0, y: 20 },
|
||||
whileInView: { opacity: 1, y: 0 },
|
||||
viewport: { once: true, margin: "-80px" },
|
||||
transition: { duration: 0.7, ease: [0.25, 0.1, 0.25, 1] as const },
|
||||
});
|
||||
|
||||
/* ── PhoneDemo ── */
|
||||
function PhoneDemo({
|
||||
src,
|
||||
reduced,
|
||||
zoomScale = 1,
|
||||
zoomX = 0,
|
||||
zoomY = 0,
|
||||
children,
|
||||
}: {
|
||||
src: string;
|
||||
reduced: boolean;
|
||||
zoomScale?: number;
|
||||
zoomX?: number;
|
||||
zoomY?: number;
|
||||
children?: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="phone-shell-compact">
|
||||
<div className="speaker" />
|
||||
<div className="phone-screen-compact">
|
||||
<AnimatePresence mode="wait">
|
||||
<motion.img
|
||||
key={src}
|
||||
src={src}
|
||||
alt="App screenshot"
|
||||
initial={reduced ? {} : { opacity: 0 }}
|
||||
animate={{
|
||||
opacity: 1,
|
||||
scale: zoomScale,
|
||||
x: zoomX,
|
||||
y: zoomY,
|
||||
}}
|
||||
exit={reduced ? {} : { opacity: 0 }}
|
||||
transition={{ duration: reduced ? 0.1 : 0.4, ease: [0.25, 0.1, 0.25, 1] as const }}
|
||||
/>
|
||||
</AnimatePresence>
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
function fade(reducedMotion: boolean | null, delay = 0): MotionProps {
|
||||
if (reducedMotion) {
|
||||
return {};
|
||||
}
|
||||
return {
|
||||
initial: { opacity: 0, y: 24 },
|
||||
animate: { opacity: 1, y: 0 },
|
||||
transition: { duration: 0.7, delay, ease: "easeOut" },
|
||||
};
|
||||
}
|
||||
|
||||
/* ── Typewriter effect ── */
|
||||
function TypewriterEffect({ active, text, reduced }: { active: boolean; text: string; reduced: boolean }) {
|
||||
const charCount = useMotionValue(0);
|
||||
const chars = useMemo(() => text.split(""), [text]);
|
||||
const charRefs = useRef<(HTMLSpanElement | null)[]>([]);
|
||||
const intervalRef = useRef<ReturnType<typeof setInterval> | null>(null);
|
||||
|
||||
// Imperatively update char opacity from motion value (no hooks in loops)
|
||||
useEffect(() => {
|
||||
const unsubscribe = charCount.on("change", (v) => {
|
||||
const count = Math.round(v);
|
||||
charRefs.current.forEach((el, i) => {
|
||||
if (el) el.style.opacity = i < count ? "1" : "0";
|
||||
});
|
||||
});
|
||||
return unsubscribe;
|
||||
}, [charCount]);
|
||||
|
||||
useEffect(() => {
|
||||
if (intervalRef.current) clearInterval(intervalRef.current);
|
||||
if (!active) { charCount.set(0); charRefs.current.forEach((el) => { if (el) el.style.opacity = "0"; }); return; }
|
||||
if (reduced) {
|
||||
charCount.set(chars.length);
|
||||
charRefs.current.forEach((el, i) => { if (el) el.style.opacity = i < chars.length ? "1" : "0"; });
|
||||
return;
|
||||
}
|
||||
let i = 0;
|
||||
const interval = setInterval(() => {
|
||||
i++;
|
||||
charCount.set(i);
|
||||
if (i >= chars.length) clearInterval(interval);
|
||||
}, 42);
|
||||
intervalRef.current = interval;
|
||||
return () => clearInterval(interval);
|
||||
}, [active, reduced, chars.length]);
|
||||
function reveal(reducedMotion: boolean | null): MotionProps {
|
||||
if (reducedMotion) {
|
||||
return {};
|
||||
}
|
||||
return {
|
||||
initial: { opacity: 0, y: 28 },
|
||||
whileInView: { opacity: 1, y: 0 },
|
||||
viewport: { once: true, margin: "-80px" },
|
||||
transition: { duration: 0.7, ease: "easeOut" },
|
||||
};
|
||||
}
|
||||
|
||||
function PhoneMockup({ typing }: { typing: string }) {
|
||||
const reducedMotion = useReducedMotion();
|
||||
return (
|
||||
<motion.div
|
||||
className="typing-line"
|
||||
animate={active ? { opacity: 1 } : { opacity: 0 }}
|
||||
transition={{ duration: 0.3 }}
|
||||
className="phone-wrap"
|
||||
animate={reducedMotion ? {} : { y: [0, -10, 0], rotate: [-1.5, -0.6, -1.5] }}
|
||||
transition={reducedMotion ? {} : { duration: 7, repeat: Infinity, ease: "easeInOut" }}
|
||||
>
|
||||
{chars.map((char, i) => (
|
||||
<span
|
||||
key={i}
|
||||
ref={(el) => { charRefs.current[i] = el; }}
|
||||
style={{ opacity: 0 }}
|
||||
>
|
||||
{char === " " ? "\u00A0" : char}
|
||||
</span>
|
||||
))}
|
||||
<motion.span
|
||||
className="typing-cursor"
|
||||
animate={active ? { opacity: [1, 0.18] } : { opacity: 0 }}
|
||||
transition={active ? { duration: 0.64, repeat: Infinity, repeatType: "reverse" } : {}}
|
||||
/>
|
||||
<div className="phone-shell">
|
||||
<div className="speaker" />
|
||||
<div className="phone-screen">
|
||||
<div className="phone-screen-shot" aria-label="Multi-Casual Android issue detail screen" />
|
||||
<motion.div
|
||||
className="typing-card"
|
||||
initial={reducedMotion ? false : { opacity: 0, y: 14, scale: 0.98 }}
|
||||
animate={reducedMotion ? { opacity: 1 } : { opacity: 1, y: 0, scale: 1 }}
|
||||
transition={{ delay: 1.05, duration: 0.55 }}
|
||||
>
|
||||
<span className="typing-dot" />
|
||||
{typing}
|
||||
</motion.div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="tap-ring" aria-hidden="true" />
|
||||
</motion.div>
|
||||
);
|
||||
}
|
||||
|
||||
/* ── PhoneMockup (hero) ── */
|
||||
function PhoneMockup({ reduced }: { reduced: boolean }) {
|
||||
return (
|
||||
<div className="hero-phone-stack">
|
||||
<motion.img
|
||||
src={inboxImg} alt="Inbox preview"
|
||||
initial={reduced ? {} : { opacity: 0, x: 60, rotate: -14 }}
|
||||
whileInView={{ opacity: 0.72, x: 0, rotate: -8 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.85, delay: 0.2, ease: [0.25, 0.1, 0.25, 1] as const }}
|
||||
/>
|
||||
<motion.img
|
||||
src={issuesListImg} alt="Issues list preview"
|
||||
initial={reduced ? {} : { opacity: 0, x: 80, rotate: 8 }}
|
||||
whileInView={{ opacity: 1, x: 0, rotate: 4 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.85, delay: 0.3, ease: [0.25, 0.1, 0.25, 1] as const }}
|
||||
/>
|
||||
<motion.img
|
||||
src={issueDetailImg} alt="Issue detail preview"
|
||||
initial={reduced ? {} : { opacity: 0, x: 60, rotate: 14 }}
|
||||
whileInView={{ opacity: 0.86, x: 0, rotate: 10 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.85, delay: 0.4, ease: [0.25, 0.1, 0.25, 1] as const }}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/* ── Main App ── */
|
||||
export default function App() {
|
||||
const reduced = useReducedMotion() ?? false;
|
||||
const [lang, setLang] = useState<Locale>("en");
|
||||
const [step, setStep] = useState(0);
|
||||
const [activeWs, setActiveWs] = useState(0);
|
||||
const [hasInteracted, setHasInteracted] = useState(false);
|
||||
const completedRef = useRef<Set<number>>(new Set());
|
||||
const journeyRef = useRef<HTMLDivElement>(null);
|
||||
const hasAutoPlayedRef = useRef(false);
|
||||
const t = copy[lang];
|
||||
|
||||
// Auto-play journey on first scroll into view
|
||||
useEffect(() => {
|
||||
if (hasInteracted || hasAutoPlayedRef.current) return;
|
||||
const el = journeyRef.current;
|
||||
if (!el) return;
|
||||
|
||||
const observer = new IntersectionObserver(
|
||||
([entry]) => {
|
||||
if (entry.isIntersecting && entry.intersectionRatio > 0.3 && !hasAutoPlayedRef.current) {
|
||||
hasAutoPlayedRef.current = true;
|
||||
let currentStep = 0;
|
||||
const advance = () => {
|
||||
currentStep++;
|
||||
if (currentStep < JOURNEY_STEPS) {
|
||||
setStep(currentStep);
|
||||
setTimeout(advance, 2200);
|
||||
}
|
||||
};
|
||||
setTimeout(advance, 2200);
|
||||
}
|
||||
},
|
||||
{ threshold: 0.3 }
|
||||
);
|
||||
observer.observe(el);
|
||||
return () => observer.disconnect();
|
||||
}, [hasInteracted]);
|
||||
|
||||
const handleStepClick = useCallback((index: number) => {
|
||||
setHasInteracted(true);
|
||||
setStep(index);
|
||||
}, []);
|
||||
|
||||
const handleWorkspaceClick = useCallback((index: number) => {
|
||||
setActiveWs(index);
|
||||
}, []);
|
||||
|
||||
// Phone screen source based on journey step
|
||||
const phoneScreenSrc = useMemo(() => {
|
||||
if (step <= 1) return step === 0 ? inboxImg : issuesListImg;
|
||||
if (step === 2) return issuesBoardImg;
|
||||
if (step <= 5) return step === 3 ? issueDetailImg : issueSubImg;
|
||||
if (step === 6) return commentImg;
|
||||
if (step === 7) return mentionImg;
|
||||
return projectsImg;
|
||||
}, [step]);
|
||||
|
||||
// Focus zoom transform for step 4 (context explore)
|
||||
const focusZones = [
|
||||
{ scale: 1.6, x: 0, y: -120 }, // title/status
|
||||
{ scale: 1.45, x: 0, y: -40 }, // body
|
||||
{ scale: 1.5, x: 0, y: 80 }, // subtasks/comments
|
||||
];
|
||||
const focusIdx = step === 4 ? 0 : -1; // simple: show first zone; cycle handled by auto-play
|
||||
const zoom = step === 4 ? focusZones[focusIdx] || focusZones[0] : { scale: 1, x: 0, y: 0 };
|
||||
const reducedMotion = useReducedMotion();
|
||||
const [locale, setLocale] = useState<Locale>("en");
|
||||
const t = copy[locale];
|
||||
|
||||
return (
|
||||
<main lang={lang === "zh" ? "zh-CN" : "en"}>
|
||||
{/* Hero */}
|
||||
<section className="hero">
|
||||
<main lang={locale === "zh" ? "zh-CN" : "en"}>
|
||||
<section className="hero section-pad">
|
||||
<div className="hero-bg" />
|
||||
<motion.nav className="topbar" {...fade(reduced, 0)}>
|
||||
<div className="brand">
|
||||
<img src={logoImg} alt="Multi-Casual" className="brand-mark" />
|
||||
<nav className="topbar" aria-label="Primary navigation">
|
||||
<a className="brand" href="#top" aria-label="Multi-Casual Android home">
|
||||
<span className="brand-mark">M</span>
|
||||
<span>{t.nav.brand}</span>
|
||||
</div>
|
||||
</a>
|
||||
<div className="nav-links">
|
||||
<a href="#download">{t.nav.download}</a>
|
||||
<a href="#trust">{t.nav.trust}</a>
|
||||
<button className="language-toggle" onClick={() => setLang((l) => (l === "en" ? "zh" : "en"))}>
|
||||
<a href="#relationship">{t.nav.relationship}</a>
|
||||
<button className="language-toggle" type="button" onClick={() => setLocale(locale === "en" ? "zh" : "en")}>
|
||||
{t.nav.language}
|
||||
</button>
|
||||
</div>
|
||||
</motion.nav>
|
||||
<div className="hero-grid">
|
||||
<div>
|
||||
<motion.p className="eyebrow" {...fade(reduced, 0.04)}>{t.hero.eyebrow}</motion.p>
|
||||
<motion.h1 {...fade(reduced, 0.14)}>{t.hero.title}</motion.h1>
|
||||
<motion.p className="hero-subtitle" {...fade(reduced, 0.24)}>{t.hero.subtitle}</motion.p>
|
||||
<motion.div className="cta-row" {...fade(reduced, 0.34)}>
|
||||
<motion.a href="#download" className="pill pill-android" whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}><span className="android-icon"></span>{t.hero.download}</motion.a>
|
||||
<motion.a className="button secondary" href={release.githubUrl} whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}><svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor" style={{verticalAlign: "middle", marginRight: 6}}><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>{t.hero.github}</motion.a>
|
||||
<motion.a className="button ghost" href={release.multicaUrl} whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}>{t.hero.multica}</motion.a>
|
||||
<motion.a href={release.iosUrl} className="pill pill-ios" whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}><span className="apple-icon"></span>{t.hero.ios}</motion.a>
|
||||
</nav>
|
||||
|
||||
<div id="top" className="hero-grid">
|
||||
<div className="hero-copy">
|
||||
<motion.p className="eyebrow" {...fade(reducedMotion, 0.05)}>
|
||||
{t.hero.eyebrow}
|
||||
</motion.p>
|
||||
<motion.h1 {...fade(reducedMotion, 0.14)}>{t.hero.title}</motion.h1>
|
||||
<motion.p className="hero-subtitle" {...fade(reducedMotion, 0.24)}>
|
||||
{t.hero.subtitle}
|
||||
</motion.p>
|
||||
<motion.div className="cta-row" {...fade(reducedMotion, 0.34)}>
|
||||
<motion.a className="button primary" href={release.releasesUrl} whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}>
|
||||
{t.hero.download}
|
||||
</motion.a>
|
||||
<motion.a className="button secondary" href={release.githubUrl} whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}>
|
||||
{t.hero.github}
|
||||
</motion.a>
|
||||
<motion.a className="button ghost" href={release.multicaUrl} whileHover={{ y: -2 }} whileTap={{ scale: 0.98 }}>
|
||||
{t.hero.multica}
|
||||
</motion.a>
|
||||
</motion.div>
|
||||
</div>
|
||||
<PhoneMockup reduced={reduced} />
|
||||
<motion.div {...fade(reducedMotion, 0.18)}>
|
||||
<PhoneMockup typing={t.hero.typing} />
|
||||
</motion.div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Relationship */}
|
||||
<motion.section id="relationship" className="relationship section-pad" {...reveal(reduced)}>
|
||||
<motion.section id="relationship" className="relationship section-pad" {...reveal(reducedMotion)}>
|
||||
<div className="section-kicker">{t.relationship.kicker}</div>
|
||||
<div className="relationship-card">
|
||||
<div className="two-col">
|
||||
<h2>{t.relationship.title}</h2>
|
||||
<p>{t.relationship.body1}</p>
|
||||
<p>{t.relationship.body2}</p>
|
||||
<p>
|
||||
<a href="https://github.com/multica-ai/multica/issues/2285#issuecomment-4414513596" target="_blank" rel="noopener noreferrer">
|
||||
View the discussion on GitHub →
|
||||
</a>
|
||||
</p>
|
||||
<p>{t.relationship.body}</p>
|
||||
</div>
|
||||
</motion.section>
|
||||
|
||||
{/* Interactive Product Journey */}
|
||||
<section ref={journeyRef} className="journey section-pad">
|
||||
<motion.div className="journey-header" {...reveal(reduced)}>
|
||||
<div className="section-kicker">{t.journey.kicker}</div>
|
||||
<h2>{t.journey.title}</h2>
|
||||
<p>{t.journey.subtitle}</p>
|
||||
</motion.div>
|
||||
|
||||
<div className="journey-layout">
|
||||
<div className="journey-steps">
|
||||
{t.journey.steps.map((s, i) => (
|
||||
<motion.div
|
||||
key={i}
|
||||
className={`journey-step ${step === i ? "journey-step-active" : ""} ${i < step ? "journey-step-completed" : ""}`}
|
||||
onClick={() => handleStepClick(i)}
|
||||
initial={reduced ? {} : { opacity: 0, x: -16 }}
|
||||
whileInView={{ opacity: 1, x: 0 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.5, delay: i * 0.06 }}
|
||||
>
|
||||
<div className="journey-step-number">{i < step ? "✓" : i + 1}</div>
|
||||
<div className="journey-step-content">
|
||||
<h3>{s.title}</h3>
|
||||
<p>{s.subtitle}</p>
|
||||
</div>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="journey-phone-area">
|
||||
<div className="journey-phone-container">
|
||||
<PhoneDemo
|
||||
src={phoneScreenSrc}
|
||||
reduced={reduced}
|
||||
zoomScale={step === 4 ? zoom.scale : 1}
|
||||
zoomX={step === 4 ? zoom.x : 0}
|
||||
zoomY={step === 4 ? zoom.y : 0}
|
||||
>
|
||||
{/* Hand + tap ripple for interactive steps */}
|
||||
{step >= 1 && step <= 3 && (
|
||||
<>
|
||||
<motion.div
|
||||
className="journey-hand"
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
exit={{ opacity: 0 }}
|
||||
style={{ top: step === 1 ? "16%" : step === 2 ? "8%" : "35%", right: step === 2 ? "18%" : "22%" }}
|
||||
>👆</motion.div>
|
||||
<motion.div
|
||||
className="journey-tap-ripple"
|
||||
animate={{ scale: [1, 1.3, 1], opacity: [0.8, 0.3, 0.8] }}
|
||||
transition={{ duration: 1.2, repeat: Infinity }}
|
||||
style={{ top: step === 1 ? "18%" : step === 2 ? "10%" : "37%", right: step === 2 ? "14%" : "18%" }}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
|
||||
{/* Typing effect for step 6 */}
|
||||
{step === 6 && <TypewriterEffect active text={TYPING_TEXT} reduced={reduced} />}
|
||||
|
||||
{/* Mention picker overlay for step 7 */}
|
||||
<AnimatePresence>
|
||||
{step === 7 && (
|
||||
<motion.div
|
||||
className="mention-overlay"
|
||||
initial={{ y: 60, opacity: 0 }}
|
||||
animate={{ y: 0, opacity: 1 }}
|
||||
exit={{ y: 60, opacity: 0 }}
|
||||
transition={{ duration: 0.35, ease: [0.25, 0.1, 0.25, 1] as const }}
|
||||
>
|
||||
<div className="mention-search">
|
||||
<span>@</span> cod
|
||||
</div>
|
||||
<div className="mention-list">
|
||||
{MENTION_ITEMS.map((m, i) => (
|
||||
<motion.div
|
||||
key={m.name}
|
||||
className={`mention-item ${i === 0 ? "mention-item-active" : ""}`}
|
||||
initial={{ opacity: 0, x: -12 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
transition={{ delay: 0.15 + i * 0.1 }}
|
||||
>
|
||||
<div className="mention-avatar" style={{ background: m.color }}>{m.name[0].toUpperCase()}</div>
|
||||
<div>
|
||||
<div className="mention-name">{m.name}</div>
|
||||
<div className="mention-role">{i === 0 ? "agent" : i === 1 ? "agent" : "squad"}</div>
|
||||
</div>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
</motion.div>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
|
||||
{/* Workspace chips overlay for step 8 */}
|
||||
{step === 8 && (
|
||||
<motion.div
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
style={{ position: "absolute", bottom: 8, left: 8, right: 8, zIndex: 6, display: "flex", gap: 4, justifyContent: "center", flexWrap: "wrap" }}
|
||||
>
|
||||
{["Projects", "Agents", "Runtimes", "Skills", "Settings"].map((label, i) => (
|
||||
<motion.div
|
||||
key={label}
|
||||
className="workspace-chip"
|
||||
style={{ fontSize: 10, padding: "4px 8px", borderRadius: 999 }}
|
||||
initial={{ scale: 0 }}
|
||||
animate={{ scale: 1 }}
|
||||
transition={{ delay: 0.1 + i * 0.08 }}
|
||||
>
|
||||
{label}
|
||||
</motion.div>
|
||||
))}
|
||||
</motion.div>
|
||||
)}
|
||||
</PhoneDemo>
|
||||
</div>
|
||||
</div>
|
||||
<section className="features section-pad">
|
||||
<div className="section-kicker">{t.featuresKicker}</div>
|
||||
<div className="feature-grid">
|
||||
{t.features.map((feature, index) => (
|
||||
<motion.article key={feature.title} className="feature-card" {...reveal(reducedMotion)} transition={{ duration: 0.7, delay: index * 0.08 }}>
|
||||
<span>{String(index + 1).padStart(2, "0")}</span>
|
||||
<h3>{feature.title}</h3>
|
||||
<p>{feature.body}</p>
|
||||
</motion.article>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Workspace Assets Grid */}
|
||||
<motion.section className="workspace-section section-pad" {...reveal(reduced)}>
|
||||
<div className="workspace-header">
|
||||
<div className="section-kicker">{t.workspace.kicker}</div>
|
||||
<h2>{t.workspace.title}</h2>
|
||||
<p>{t.workspace.subtitle}</p>
|
||||
<motion.section className="demo section-pad" {...reveal(reducedMotion)}>
|
||||
<div className="section-kicker">{t.demo.kicker}</div>
|
||||
<div className="demo-grid">
|
||||
<div>
|
||||
<h2>{t.demo.title}</h2>
|
||||
<p>{t.demo.body}</p>
|
||||
</div>
|
||||
<div className="screenshot-stack" aria-label="Issue comment flow screenshots">
|
||||
<img className="shot back" src={issueDetail} alt="Issue detail screenshot" />
|
||||
<img className="shot front" src={commentFocused} alt="Focused issue comment input screenshot" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="workspace-chips">
|
||||
{t.workspace.items.map((item, i) => (
|
||||
<button
|
||||
key={i}
|
||||
className={`workspace-chip ${activeWs === i ? "workspace-chip-active" : ""}`}
|
||||
onClick={() => handleWorkspaceClick(i)}
|
||||
>
|
||||
{item.title}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="workspace-phone-wrap">
|
||||
<AnimatePresence mode="wait">
|
||||
<motion.div
|
||||
key={activeWs}
|
||||
initial={reduced ? {} : { opacity: 0, scale: 0.96 }}
|
||||
animate={{ opacity: 1, scale: 1 }}
|
||||
exit={reduced ? {} : { opacity: 0, scale: 0.96 }}
|
||||
transition={{ duration: 0.35 }}
|
||||
>
|
||||
<PhoneDemo src={WORKSPACE_SCREENSHOTS[activeWs]} reduced={reduced} />
|
||||
</motion.div>
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
|
||||
<motion.div className="workspace-card-grid" {...reveal(reduced)}>
|
||||
{t.workspace.items.map((item, i) => (
|
||||
<motion.div
|
||||
key={i}
|
||||
className={`workspace-card ${activeWs === i ? "workspace-card-active" : ""}`}
|
||||
onClick={() => handleWorkspaceClick(i)}
|
||||
initial={reduced ? {} : { opacity: 0, y: 16 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.5, delay: i * 0.06 }}
|
||||
>
|
||||
<img src={WORKSPACE_SCREENSHOTS[i]} alt={item.title} className="workspace-card-thumb" />
|
||||
<div className="workspace-card-label">
|
||||
<strong>{item.title}</strong>
|
||||
<span>{item.subtitle}</span>
|
||||
</div>
|
||||
</motion.div>
|
||||
))}
|
||||
</motion.div>
|
||||
</motion.section>
|
||||
|
||||
{/* Video Demo */}
|
||||
<motion.section className="video-demo section-pad" {...reveal(reduced)}>
|
||||
<motion.section className="video-demo section-pad" {...reveal(reducedMotion)}>
|
||||
<div className="section-kicker">{t.video.kicker}</div>
|
||||
<div className="video-copy">
|
||||
<h2>{t.video.title}</h2>
|
||||
<p>{t.video.body}</p>
|
||||
</div>
|
||||
<video className="promo-video" src={promoVideo} controls playsInline preload="metadata" />
|
||||
<video className="promo-video" src={promoVideo} controls playsInline preload="metadata" poster={commentFocused} />
|
||||
</motion.section>
|
||||
|
||||
{/* Download */}
|
||||
<section id="download" className="download section-pad">
|
||||
<motion.div className="release-card" {...reveal(reduced)}>
|
||||
<motion.div className="release-card" {...reveal(reducedMotion)}>
|
||||
<div className="section-kicker">{t.download.kicker}</div>
|
||||
<h2>{t.download.title}</h2>
|
||||
<div className="release-grid">
|
||||
@@ -640,26 +329,19 @@ export default function App() {
|
||||
<code>{release.sha256}</code>
|
||||
</div>
|
||||
</div>
|
||||
<pre><code>{`adb install -r Multi-Casual-Android-v0.1.4.apk`}</code></pre>
|
||||
<pre><code>{`adb install -r Multi-Casual-Android.apk`}</code></pre>
|
||||
<div className="cta-row compact">
|
||||
<a href={release.releasesUrl} className="pill pill-android"><span className="android-icon"></span>{t.download.latest}</a>
|
||||
<a className="button primary" href={release.releasesUrl}>{t.download.latest}</a>
|
||||
<a className="button secondary" href={release.githubUrl}>{t.download.source}</a>
|
||||
</div>
|
||||
<p className="star-hint">
|
||||
{lang === "en"
|
||||
? <>Like the app? Give us a star on <a href={release.githubUrl} target="_blank" rel="noopener">GitHub</a> ⭐ — it means a lot to the maintainers.</>
|
||||
: <>喜欢我们的 app?请在 <a href={release.githubUrl} target="_blank" rel="noopener">GitHub</a> 上给项目点个 Star ⭐,这是对我们作者最大的支持。</>
|
||||
}
|
||||
</p>
|
||||
</motion.div>
|
||||
</section>
|
||||
|
||||
{/* Trust */}
|
||||
<section id="trust" className="trust section-pad">
|
||||
<div className="section-kicker">{t.trust.kicker}</div>
|
||||
<div className="section-kicker">{t.trustKicker}</div>
|
||||
<div className="trust-grid">
|
||||
{t.trust.items.map((item) => (
|
||||
<motion.div key={item} className="trust-item" {...reveal(reduced)}>
|
||||
{t.trustItems.map((item) => (
|
||||
<motion.div key={item} className="trust-item" {...reveal(reducedMotion)}>
|
||||
<span className="check">✓</span>
|
||||
<p>{item}</p>
|
||||
</motion.div>
|
||||
@@ -667,7 +349,6 @@ export default function App() {
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<footer className="footer section-pad">
|
||||
<div>
|
||||
<strong>Multi-Casual Android</strong>
|
||||
@@ -676,8 +357,7 @@ export default function App() {
|
||||
<div className="footer-links">
|
||||
<a href={release.multicaUrl}>{t.footer.multica}</a>
|
||||
<a href={release.githubUrl}>{t.footer.github}</a>
|
||||
<a href={release.releasesUrl} className="pill pill-android"><span className="android-icon"></span>{t.footer.download}</a>
|
||||
<a href={release.iosUrl} className="pill pill-ios"><span className="apple-icon"></span>{t.footer.ios}</a>
|
||||
<a href={release.releasesUrl}>{t.footer.download}</a>
|
||||
</div>
|
||||
</footer>
|
||||
</main>
|
||||
|
||||
|
Before Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 397 KiB |
|
After Width: | Height: | Size: 279 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 293 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 81 KiB |
@@ -20,11 +20,10 @@ html { scroll-behavior: smooth; }
|
||||
body {
|
||||
margin: 0;
|
||||
min-width: 320px;
|
||||
overflow-x: hidden;
|
||||
background:
|
||||
radial-gradient(circle at 82% 5%, rgba(255, 228, 92, 0.4), transparent 31%),
|
||||
radial-gradient(circle at 10% 30%, rgba(22, 71, 255, 0.16), transparent 30%),
|
||||
linear-gradient(180deg, #fbfcff 0%, #e8eeff 55%, #d4dff9 85%, #c4d4f5 100%);
|
||||
radial-gradient(circle at 80% 5%, rgba(255, 228, 92, 0.32), transparent 30%),
|
||||
radial-gradient(circle at 15% 25%, rgba(22, 71, 255, 0.14), transparent 28%),
|
||||
var(--paper);
|
||||
}
|
||||
|
||||
body, button, input { font: inherit; }
|
||||
@@ -40,8 +39,6 @@ a { color: inherit; text-decoration: none; }
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding-top: 26px;
|
||||
padding-left: clamp(16px, 5vw, 76px);
|
||||
padding-right: clamp(16px, 5vw, 76px);
|
||||
}
|
||||
|
||||
.hero-bg {
|
||||
@@ -79,9 +76,12 @@ a { color: inherit; text-decoration: none; }
|
||||
.brand-mark {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 10px;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
border-radius: 12px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: white;
|
||||
background: var(--blue);
|
||||
box-shadow: 0 8px 18px rgba(22, 71, 255, 0.32);
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
@@ -160,7 +160,7 @@ h3 {
|
||||
letter-spacing: -0.035em;
|
||||
}
|
||||
|
||||
.hero-subtitle, .relationship p, .demo p, .journey-desc {
|
||||
.hero-subtitle, .relationship p, .demo p {
|
||||
max-width: 650px;
|
||||
color: #343b4a;
|
||||
font-size: clamp(18px, 2vw, 23px);
|
||||
@@ -171,7 +171,6 @@ h3 {
|
||||
.cta-row.compact { margin-top: 22px; }
|
||||
|
||||
.button {
|
||||
font-size: 15px;
|
||||
display: inline-flex;
|
||||
min-height: 48px;
|
||||
align-items: center;
|
||||
@@ -187,7 +186,6 @@ h3 {
|
||||
.button.secondary { background: white; border-color: var(--line); }
|
||||
.button.ghost { color: var(--muted); background: rgba(255, 255, 255, 0.54); border-color: var(--line); }
|
||||
|
||||
/* Phone mockup */
|
||||
.phone-wrap {
|
||||
width: min(390px, 82vw);
|
||||
margin: 0 auto;
|
||||
@@ -195,28 +193,6 @@ h3 {
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.hero-phone-stack {
|
||||
min-height: 720px;
|
||||
position: relative;
|
||||
perspective: 1200px;
|
||||
}
|
||||
|
||||
.hero-phone-stack img {
|
||||
position: absolute;
|
||||
width: min(310px, 54vw);
|
||||
height: 676px;
|
||||
border-radius: 46px;
|
||||
border: 12px solid #11141d;
|
||||
background: white;
|
||||
object-fit: cover;
|
||||
object-position: top center;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.hero-phone-stack img:nth-child(1) { left: 2%; top: 48px; transform: rotate(-8deg) translateZ(-20px); }
|
||||
.hero-phone-stack img:nth-child(2) { left: 28%; top: 0; transform: rotate(4deg) translateZ(40px); }
|
||||
.hero-phone-stack img:nth-child(3) { right: 0; top: 132px; transform: rotate(10deg) translateZ(10px); }
|
||||
|
||||
.phone-shell {
|
||||
position: relative;
|
||||
padding: 14px;
|
||||
@@ -225,14 +201,6 @@ h3 {
|
||||
box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.phone-shell-compact {
|
||||
position: relative;
|
||||
padding: 12px;
|
||||
border-radius: 48px;
|
||||
background: #11141d;
|
||||
box-shadow: 0 20px 56px rgba(16, 18, 24, 0.22);
|
||||
}
|
||||
|
||||
.speaker {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
@@ -253,33 +221,43 @@ h3 {
|
||||
aspect-ratio: 9 / 19.7;
|
||||
}
|
||||
|
||||
.phone-screen-compact {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 36px;
|
||||
background: white;
|
||||
aspect-ratio: 9 / 19.7;
|
||||
}
|
||||
|
||||
.phone-screen img,
|
||||
.phone-screen-compact img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: top center;
|
||||
display: block;
|
||||
}
|
||||
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
|
||||
|
||||
.phone-screen-shot {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: top center;
|
||||
background-image: url("./assets/screenshots/02-issue-detail.png");
|
||||
background-size: cover;
|
||||
background-position: top center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.typing-card {
|
||||
position: absolute;
|
||||
left: 22px;
|
||||
right: 22px;
|
||||
bottom: 22px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 12px 14px;
|
||||
border-radius: 20px;
|
||||
color: #142142;
|
||||
background: rgba(255,255,255,0.92);
|
||||
border: 1px solid rgba(22, 71, 255, 0.22);
|
||||
box-shadow: 0 20px 38px rgba(16, 18, 24, 0.18);
|
||||
font-size: 13px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.typing-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
flex: none;
|
||||
border-radius: 999px;
|
||||
background: var(--yellow);
|
||||
box-shadow: 0 0 0 5px rgba(255, 228, 92, 0.26);
|
||||
}
|
||||
|
||||
.tap-ring {
|
||||
position: absolute;
|
||||
@@ -293,7 +271,6 @@ h3 {
|
||||
box-shadow: 0 0 0 16px rgba(255, 228, 92, 0.22);
|
||||
}
|
||||
|
||||
/* Shared content sections */
|
||||
.relationship, .features, .demo, .video-demo, .download, .trust, .footer {
|
||||
width: min(1160px, calc(100% - 44px));
|
||||
margin: 0 auto;
|
||||
@@ -308,356 +285,6 @@ h3 {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Relationship section */
|
||||
.relationship-card {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 30px;
|
||||
background: rgba(255,255,255,0.76);
|
||||
box-shadow: 0 18px 48px rgba(16,18,24,0.08);
|
||||
padding: clamp(28px, 5vw, 48px);
|
||||
}
|
||||
|
||||
.relationship-card p {
|
||||
max-width: 800px;
|
||||
margin: 0 0 16px;
|
||||
font-size: clamp(16px, 1.8vw, 20px);
|
||||
line-height: 1.65;
|
||||
color: #343b4a;
|
||||
}
|
||||
|
||||
.relationship-card p:last-child { margin-bottom: 0; }
|
||||
|
||||
.relationship-card a {
|
||||
color: var(--blue);
|
||||
text-decoration: underline;
|
||||
text-decoration-color: rgba(22, 71, 255, 0.25);
|
||||
}
|
||||
|
||||
.relationship-card a:hover { text-decoration-color: var(--blue); }
|
||||
|
||||
/* Interactive product journey */
|
||||
.journey {
|
||||
width: min(1160px, calc(100% - 44px));
|
||||
margin: 0 auto;
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
.journey-header {
|
||||
text-align: center;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.journey-header h2 {
|
||||
max-width: 800px;
|
||||
margin: 0 auto 16px;
|
||||
}
|
||||
|
||||
.journey-header p {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
color: var(--muted);
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.journey-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
|
||||
gap: clamp(24px, 5vw, 64px);
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.journey-steps {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.journey-step {
|
||||
display: flex;
|
||||
gap: 18px;
|
||||
padding: 20px 24px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(255,255,255,0.68);
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.journey-step:hover {
|
||||
background: rgba(255,255,255,0.92);
|
||||
border-color: rgba(22, 71, 255, 0.18);
|
||||
}
|
||||
|
||||
.journey-step-active {
|
||||
background: white;
|
||||
border-color: var(--blue);
|
||||
box-shadow: 0 12px 36px rgba(22, 71, 255, 0.12);
|
||||
}
|
||||
|
||||
.journey-step-completed {
|
||||
opacity: 0.65;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.journey-step-number {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 999px;
|
||||
background: rgba(22, 71, 255, 0.08);
|
||||
color: var(--blue);
|
||||
font-size: 14px;
|
||||
font-weight: 900;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
flex: none;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.journey-step-active .journey-step-number {
|
||||
background: var(--blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.journey-step-completed .journey-step-number {
|
||||
background: var(--blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.journey-step-content h3 {
|
||||
font-size: 18px;
|
||||
margin-bottom: 6px;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.journey-step-content p {
|
||||
font-size: 18px;
|
||||
line-height: 1.55;
|
||||
color: var(--muted);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.journey-phone-area {
|
||||
position: sticky;
|
||||
top: 40px;
|
||||
}
|
||||
|
||||
.journey-phone-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Journey phone overlays */
|
||||
.journey-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 6;
|
||||
border-radius: 36px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.journey-hand {
|
||||
position: absolute;
|
||||
z-index: 8;
|
||||
font-size: 28px;
|
||||
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.journey-tap-ripple {
|
||||
position: absolute;
|
||||
z-index: 7;
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
border-radius: 999px;
|
||||
border: 2px solid var(--blue);
|
||||
background: rgba(255, 228, 92, 0.55);
|
||||
box-shadow: 0 0 0 12px rgba(255, 228, 92, 0.18);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Focus zoom */
|
||||
.focus-zoom {
|
||||
position: absolute;
|
||||
z-index: 5;
|
||||
border-radius: 20px;
|
||||
border: 3px solid var(--blue);
|
||||
background: rgba(22, 71, 255, 0.06);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Workspace assets grid */
|
||||
.workspace-section {
|
||||
width: min(1160px, calc(100% - 44px));
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.workspace-header {
|
||||
text-align: center;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.workspace-header h2 {
|
||||
max-width: 700px;
|
||||
margin: 0 auto 16px;
|
||||
}
|
||||
|
||||
.workspace-header p {
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
color: var(--muted);
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.workspace-chips {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.workspace-chip {
|
||||
padding: 10px 18px;
|
||||
border-radius: 999px;
|
||||
font-size: 14px;
|
||||
font-weight: 850;
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(255,255,255,0.72);
|
||||
color: var(--muted);
|
||||
transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
|
||||
}
|
||||
|
||||
.workspace-chip:hover {
|
||||
background: white;
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.workspace-chip-active {
|
||||
background: var(--blue);
|
||||
color: white;
|
||||
border-color: var(--blue);
|
||||
box-shadow: 0 10px 24px rgba(22, 71, 255, 0.28);
|
||||
}
|
||||
|
||||
.workspace-phone-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.workspace-phone-wrap .phone-shell-compact {
|
||||
width: min(260px, 60vw);
|
||||
}
|
||||
|
||||
/* Mention picker overlay */
|
||||
.mention-overlay {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
background: rgba(255,255,255,0.97);
|
||||
backdrop-filter: blur(12px);
|
||||
border-top: 1px solid var(--line);
|
||||
border-radius: 24px 24px 36px 36px;
|
||||
padding: 16px 14px;
|
||||
box-shadow: 0 -12px 36px rgba(16, 18, 24, 0.1);
|
||||
}
|
||||
|
||||
.mention-search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 10px 14px;
|
||||
border-radius: 14px;
|
||||
background: #f4f6fa;
|
||||
margin-bottom: 14px;
|
||||
font-size: 14px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.mention-search span {
|
||||
color: var(--blue);
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.mention-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.mention-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 10px 12px;
|
||||
border-radius: 14px;
|
||||
transition: background 0.12s;
|
||||
}
|
||||
|
||||
.mention-item-active {
|
||||
background: rgba(22, 71, 255, 0.07);
|
||||
}
|
||||
|
||||
.mention-avatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 999px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 13px;
|
||||
font-weight: 900;
|
||||
color: white;
|
||||
flex: none;
|
||||
}
|
||||
|
||||
.mention-name {
|
||||
font-size: 14px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.mention-role {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.mention-highlight {
|
||||
position: absolute;
|
||||
z-index: 5;
|
||||
border-radius: 16px;
|
||||
border: 2px solid var(--blue);
|
||||
background: rgba(22, 71, 255, 0.06);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Typing demo */
|
||||
.typing-line {
|
||||
position: absolute;
|
||||
z-index: 6;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: var(--ink);
|
||||
letter-spacing: -0.01em;
|
||||
line-height: 1;
|
||||
white-space: pre;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.typing-cursor {
|
||||
display: inline-block;
|
||||
width: 2px;
|
||||
height: 18px;
|
||||
background: var(--blue);
|
||||
border-radius: 999px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
/* Features grid (legacy, kept for reference) */
|
||||
.feature-grid, .trust-grid, .release-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
@@ -719,7 +346,7 @@ h3 {
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.promo-video { object-fit: cover; z-index: 1; position: relative; }
|
||||
.promo-video { object-fit: cover; }
|
||||
|
||||
.video-placeholder {
|
||||
display: grid;
|
||||
@@ -799,33 +426,16 @@ pre {
|
||||
.footer strong { color: var(--ink); }
|
||||
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; color: var(--ink); }
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 900px) {
|
||||
.topbar { border-radius: 24px; align-items: flex-start; flex-direction: column; }
|
||||
.nav-links { flex-wrap: wrap; }
|
||||
.hero-grid, .two-col, .demo-grid, .video-copy, .feature-grid, .trust-grid, .release-grid { grid-template-columns: 1fr; }
|
||||
.hero { padding-left: 16px; padding-right: 16px; padding-top: 20px; min-height: auto; }
|
||||
.hero-grid { width: 100%; }
|
||||
.hero-grid > div:first-child { padding-right: 0; }
|
||||
.hero-phone-stack { min-height: 400px; overflow: visible; }
|
||||
.hero-phone-stack img { height: 480px; width: min(240px, 42vw); border-radius: 36px; border-width: 10px; }
|
||||
.hero-phone-stack img:nth-child(1) { left: -5%; top: 36px; transform: rotate(-8deg) translateZ(-20px); }
|
||||
.hero-phone-stack img:nth-child(2) { left: 22%; top: 0; transform: rotate(4deg) translateZ(40px); }
|
||||
.hero-phone-stack img:nth-child(3) { right: -5%; top: 100px; transform: rotate(10deg) translateZ(10px); }
|
||||
.eyebrow { font-size: 11px; letter-spacing: 0.1em; }
|
||||
h1 { font-size: clamp(32px, 8vw, 52px) !important; }
|
||||
.hero-subtitle { font-size: 15px; }
|
||||
.journey-layout { grid-template-columns: 1fr; }
|
||||
.journey-phone-area { position: relative; top: 0; order: -1; }
|
||||
.journey-phone-container { justify-content: center; }
|
||||
.section-pad { padding: 48px 16px; }
|
||||
.hash-cell { grid-column: auto; }
|
||||
.screenshot-stack { min-height: 680px; }
|
||||
.shot { width: min(300px, 74vw); }
|
||||
.shot.back { right: auto; left: 4%; }
|
||||
.shot.front { right: 4%; top: 160px; }
|
||||
.footer { flex-direction: column; }
|
||||
.workspace-chips { justify-content: flex-start; }
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
@@ -835,137 +445,3 @@ pre {
|
||||
scroll-behavior: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Workspace card grid */
|
||||
.workspace-card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
|
||||
gap: 14px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.workspace-card {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 18px;
|
||||
background: rgba(255, 255, 255, 0.72);
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
|
||||
}
|
||||
|
||||
.workspace-card:hover {
|
||||
background: white;
|
||||
border-color: rgba(22, 71, 255, 0.18);
|
||||
}
|
||||
|
||||
.workspace-card-active {
|
||||
border-color: var(--blue);
|
||||
box-shadow: 0 10px 28px rgba(22, 71, 255, 0.12);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.workspace-card-thumb {
|
||||
width: 100%;
|
||||
aspect-ratio: 9 / 19.7;
|
||||
object-fit: cover;
|
||||
object-position: top center;
|
||||
display: block;
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.workspace-card-label {
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.workspace-card-label strong {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
font-weight: 850;
|
||||
letter-spacing: -0.01em;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.workspace-card-label span {
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
color: var(--muted);
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.workspace-card-grid {
|
||||
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
.star-hint {
|
||||
margin-top: 20px;
|
||||
font-size: 18px;
|
||||
color: var(--muted);
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.star-hint a {
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
|
||||
/* ── Footer pills ── */
|
||||
.pill {
|
||||
display: inline-flex; align-items: center; gap: 7px;
|
||||
padding: 10px 22px; border-radius: 999px;
|
||||
font-weight: 850; font-size: 15px; letter-spacing: -0.01em;
|
||||
text-decoration: none; transition: all 0.22s;
|
||||
}
|
||||
.pill-android {
|
||||
background: var(--blue); color: #fff;
|
||||
box-shadow: 0 12px 30px rgba(22,71,255,0.30);
|
||||
}
|
||||
.pill-android:hover { background: var(--blue-2); transform: translateY(-1px); }
|
||||
.pill-android .android-icon {
|
||||
width: 15px; height: 15px; display: inline-block; background: #fff;
|
||||
-webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYgMThjMCAuNTUuNDUgMSAxIDFoMXYzLjVjMCAuODMuNjcgMS41IDEuNSAxLjVzMS41LS42NyAxLjUtMS41VjE5aDJ2My41YzAgLjgzLjY3IDEuNSAxLjUgMS41czEuNS0uNjcgMS41LTEuNVYxOWgxYy41NSAwIDEtLjQ1IDEtMVY4SDZ2MTB6TTMuNSA4QzIuNjcgOCAyIDguNjcgMiA5LjV2N2MwIC44My42NyAxLjUgMS41IDEuNVM1IDE3LjMzIDUgMTYuNXYtN0M1IDguNjcgNC4zMyA4IDMuNSA4em0xNyAwYy0uODMgMC0xLjUuNjctMS41IDEuNXY3YzAgLjgzLjY3IDEuNSAxLjUgMS41czEuNS0uNjcgMS41LTEuNXYtN2MwLS44My0uNjctMS41LTEuNS0xLjV6bS00Ljk3LTUuODRsMS4zLTEuM2MuMi0uMi4yLS41MSAwLS43MS0uMi0uMi0uNTEtLjItLjcxIDBsLTEuNDggMS40OEE1Ljg0IDUuODQgMCAwMDEyIDFjLS45NiAwLTEuODYuMjMtMi42Ni42M0w3Ljg1LjE1Yy0uMi0uMi0uNTEtLjItLjcxIDAtLjIuMi0uMi41MSAwIC43MWwxLjMxIDEuMzFBNS45ODMgNS45ODMgMCAwMDYgN2gxMmMwLTIuMTItMS4xLTMuOTgtMi40Ny00Ljg0ek0xMCA1SDlWNGgxdjF6bTUgMGgtMVY0aDF2MXoiLz48L3N2Zz4=) center/contain no-repeat;
|
||||
mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYgMThjMCAuNTUuNDUgMSAxIDFoMXYzLjVjMCAuODMuNjcgMS41IDEuNSAxLjVzMS41LS42NyAxLjUtMS41VjE5aDJ2My41YzAgLjgzLjY3IDEuNSAxLjUgMS41czEuNS0uNjcgMS41LTEuNVYxOWgxYy41NSAwIDEtLjQ1IDEtMVY4SDZ2MTB6TTMuNSA4QzIuNjcgOCAyIDguNjcgMiA5LjV2N2MwIC44My42NyAxLjUgMS41IDEuNVM1IDE3LjMzIDUgMTYuNXYtN0M1IDguNjcgNC4zMyA4IDMuNSA4em0xNyAwYy0uODMgMC0xLjUuNjctMS41IDEuNXY3YzAgLjgzLjY3IDEuNSAxLjUgMS41czEuNS0uNjcgMS41LTEuNXYtN2MwLS44My0uNjctMS41LTEuNS0xLjV6bS00Ljk3LTUuODRsMS4zLTEuM2MuMi0uMi4yLS41MSAwLS43MS0uMi0uMi0uNTEtLjItLjcxIDBsLTEuNDggMS40OEE1Ljg0IDUuODQgMCAwMDEyIDFjLS45NiAwLTEuODYuMjMtMi42Ni42M0w3Ljg1LjE1Yy0uMi0uMi0uNTEtLjItLjcxIDAtLjIuMi0uMi41MSAwIC43MWwxLjMxIDEuMzFBNS45ODMgNS45ODMgMCAwMDYgN2gxMmMwLTIuMTItMS4xLTMuOTgtMi40Ny00Ljg0ek0xMCA1SDlWNGgxdjF6bTUgMGgtMVY0aDF2MXoiLz48L3N2Zz4=) center/contain no-repeat;
|
||||
}
|
||||
|
||||
.pill-ios {
|
||||
position: relative; overflow: hidden;
|
||||
background: rgba(255,255,255,0.22);
|
||||
backdrop-filter: blur(20px) saturate(1.8);
|
||||
-webkit-backdrop-filter: blur(20px) saturate(1.8);
|
||||
color: #1a1a2e; font-weight: 850;
|
||||
border: 1px solid rgba(255,255,255,0.55);
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.08),
|
||||
inset 0 1px 0 rgba(255,255,255,0.9),
|
||||
inset 0 -1px 0 rgba(0,0,0,0.04);
|
||||
}
|
||||
.pill-ios:hover {
|
||||
background: rgba(255,255,255,0.38);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 8px 28px rgba(0,0,0,0.12),
|
||||
inset 0 1px 0 rgba(255,255,255,1),
|
||||
inset 0 -1px 0 rgba(0,0,0,0.04);
|
||||
}
|
||||
.pill-ios::before {
|
||||
content: "";
|
||||
position: absolute; top: 0; left: -40%; width: 180%; height: 50%;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
|
||||
border-radius: 999px; pointer-events: none;
|
||||
}
|
||||
.pill-ios::after {
|
||||
content: "";
|
||||
position: absolute; bottom: -2px; left: 10%; width: 80%; height: 6px;
|
||||
background: linear-gradient(90deg, #ff6b9d, #c44dff, #6b9dff, #45d4a8);
|
||||
filter: blur(5px); opacity: 0.4; border-radius: 999px;
|
||||
pointer-events: none; z-index: -1;
|
||||
}
|
||||
.pill-ios .apple-icon {
|
||||
width: 14px; height: 14px; display: inline-block; background: #1a1a2e;
|
||||
-webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE4LjcxIDE5LjVjLS44MyAxLjI0LTEuNzEgMi40NS0zLjA1IDIuNDctMS4zNC4wMy0xLjc3LS43OS0zLjI5LS43OS0xLjUzIDAtMiAuNzctMy4yNy44Mi0xLjMxLjA1LTIuMy0xLjMyLTMuMTQtMi41M0M0LjI1IDE3IDIuOTQgMTIuNDUgNC43IDkuMzljLjg3LTEuNTIgMi40My0yLjQ4IDQuMTItMi41MSAxLjI4LS4wMiAyLjUuODcgMy4yOS44Ny43OCAwIDIuMjYtMS4wNyAzLjgxLS45MS42NS4wMyAyLjQ3LjI2IDMuNjQgMS45OC0uMDkuMDYtMi4xNyAxLjI4LTIuMTUgMy44MS4wMyAzLjAyIDIuNjUgNC4wMyAyLjY4IDQuMDQtLjAzLjA3LS40MiAxLjQ0LTEuMzggMi44M00xMyAzLjVjLjczLS44MyAxLjk0LTEuNDYgMi45NC0xLjUuMTMgMS4xNy0uMzQgMi4zNS0xLjA0IDMuMTktLjY5Ljg1LTEuODMgMS41MS0yLjk1IDEuNDItLjE1LTEuMTUuNDEtMi4zNSAxLjA1LTMuMTF6Ii8+PC9zdmc+) center/contain no-repeat;
|
||||
mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE4LjcxIDE5LjVjLS44MyAxLjI0LTEuNzEgMi40NS0zLjA1IDIuNDctMS4zNC4wMy0xLjc3LS43OS0zLjI5LS43OS0xLjUzIDAtMiAuNzctMy4yNy44Mi0xLjMxLjA1LTIuMy0xLjMyLTMuMTQtMi41M0M0LjI1IDE3IDIuOTQgMTIuNDUgNC43IDkuMzljLjg3LTEuNTIgMi40My0yLjQ4IDQuMTItMi41MSAxLjI4LS4wMiAyLjUuODcgMy4yOS44Ny43OCAwIDIuMjYtMS4wNyAzLjgxLS45MS42NS4wMyAyLjQ3LjI2IDMuNjQgMS45OC0uMDkuMDYtMi4xNyAxLjI4LTIuMTUgMy44MS4wMyAzLjAyIDIuNjUgNC4wMyAyLjY4IDQuMDQtLjAzLjA3LS40MiAxLjQ0LTEuMzggMi44M00xMyAzLjVjLjczLS44MyAxLjk0LTEuNDYgMi45NC0xLjUuMTMgMS4xNy0uMzQgMi4zNS0xLjA0IDMuMTktLjY5Ljg1LTEuODMgMS41MS0yLjk1IDEuNDItLjE1LTEuMTUuNDEtMi4zNSAxLjA1LTMuMTF6Ii8+PC9zdmc+) center/contain no-repeat;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.pill { padding: 8px 16px; font-size: 14px; }
|
||||
}
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig(() => ({
|
||||
plugins: [react()],
|
||||
base: process.env.VITE_BASE || '/',
|
||||
build: {
|
||||
outDir: 'dist',
|
||||
},
|
||||
server: {
|
||||
host: '127.0.0.1',
|
||||
},
|
||||
}));
|
||||