93b6aa6c02
- Add LLMProvider.isUserSelectable (default true) and filter ProviderPickerSection on it; next pass can hide non-user presets (e.g. a future DeepSeek key-preset) without changing call sites. - KeyboardRootView: hide TranslationChip when off (matches user's mental model of an opt-in feature), drop the 'warming' branch (Qwen3 download UX was removed with the backend in v0.2.0), unify chip pill height to minHeight 28 + vertical 6 for visual rhythm across all topbar chips. - TranslationChip: drop isLocal warning path — both engines now run the translate-and-polish step (local routes through DeepSeek via ProviderConfig.localModeProviderId). - OnboardingView: cloud engine branch now wraps the translation row in the same surface card chrome as the local branch. - Strings: drop keyboard.models.warming (no longer referenced). DeepSeek key pre-fill deferred to a follow-up.
137 lines
5.2 KiB
Swift
137 lines
5.2 KiB
Swift
// TranslationChip.swift
|
|
// OSGKeyboard · Keyboard Extension
|
|
//
|
|
// Compact chip rendered to the right of `LocaleChip` on the keyboard
|
|
// top bar. Doubles as both the on/off switch and the target-language
|
|
// picker — same Menu pattern as `LocaleChip` so muscle memory transfers.
|
|
//
|
|
// v0.2.1 follow-up: removed the explicit on/off toggle entry. The
|
|
// chip is now a pure picker over the 11 catalog rows (off + 10
|
|
// locales); selecting "不翻译" turns translation off, selecting any
|
|
// locale turns it on with that target. `translationEnabled` is
|
|
// derived from the locale id so the chip / pipeline read the same
|
|
// source of truth.
|
|
//
|
|
// v0.2.1 final review: dropped the "needs cloud" warning state —
|
|
// both engines now run the translate-and-polish step (the local
|
|
// engine routes through DeepSeek via
|
|
// `ProviderConfig.localModeProviderId`). The chip is therefore just
|
|
// off / on, with the same accent treatment either way.
|
|
//
|
|
// Visual states:
|
|
// • off → dim outline, "翻译" label
|
|
// • on (any engine) → accent fill, "→ EN" / "→ 日本語" style label
|
|
//
|
|
// Stays in the same visual family as `CloudEngineChip` / `LocaleChip`
|
|
// (Capsule + 28 pt min height + 6 pt vertical padding) so the top bar
|
|
// doesn't grow when translation is enabled.
|
|
|
|
import SwiftUI
|
|
import OSGKeyboardShared
|
|
|
|
struct TranslationChip: View {
|
|
@Environment(\.themePalette) private var palette: ThemePalette
|
|
|
|
@ObservedObject var state: KeyboardViewController.State
|
|
|
|
var body: some View {
|
|
Menu {
|
|
// v0.2.1 follow-up: pure picker over the full catalog,
|
|
// including `offLocaleId` at the top so "turn off" is one
|
|
// tap from any enabled state. Picking a row writes
|
|
// `translationTargetLocaleId`; `translationEnabled` is
|
|
// derived from it.
|
|
ForEach(TranslationLanguageCatalog.all) { language in
|
|
Button {
|
|
state.setTranslationTargetLocaleId(language.id)
|
|
} label: {
|
|
if language.id == currentSelectionId {
|
|
Label(displayLabel(for: language), systemImage: "checkmark")
|
|
} else {
|
|
Text(displayLabel(for: language))
|
|
}
|
|
}
|
|
}
|
|
} label: {
|
|
label
|
|
}
|
|
.menuStyle(.button)
|
|
.accessibilityLabel(ExtL10n.text("keyboard.translation.a11y"))
|
|
.accessibilityHint(ExtL10n.text("keyboard.translation.a11yHint"))
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var label: some View {
|
|
let target = TranslationLanguageCatalog.resolve(state.translationTargetLocaleId)
|
|
let enabled = state.translationEnabled
|
|
|
|
HStack(spacing: 4) {
|
|
Image(systemName: enabled ? "character.bubble" : "character.bubble.fill")
|
|
Text(chipLabel(target: target, enabled: enabled))
|
|
Image(systemName: "chevron.down")
|
|
.font(.system(size: 8, weight: .bold))
|
|
}
|
|
.font(TypeStyle.caption2)
|
|
.foregroundStyle(foreground(enabled: enabled))
|
|
.padding(.horizontal, Spacing.xs + 2)
|
|
.padding(.vertical, 6)
|
|
.frame(minHeight: 28)
|
|
.background(background(enabled: enabled), in: Capsule())
|
|
.overlay(Capsule().stroke(stroke(enabled: enabled), lineWidth: 0.5))
|
|
}
|
|
|
|
/// Active selection id — the chip derives "on" from a non-off
|
|
/// locale id, so reading `translationTargetLocaleId` is enough.
|
|
private var currentSelectionId: String {
|
|
state.translationTargetLocaleId
|
|
}
|
|
|
|
private func displayLabel(for language: TranslationLanguage) -> String {
|
|
if language.id == TranslationLanguageCatalog.offLocaleId {
|
|
return ExtL10n.string("keyboard.translation.off")
|
|
}
|
|
return language.nativeName
|
|
}
|
|
|
|
private func chipLabel(target: TranslationLanguage, enabled: Bool) -> String {
|
|
if !enabled {
|
|
return ExtL10n.string("keyboard.translation.off")
|
|
}
|
|
// Short form: "→EN" / "→日" style. Falls back to the prompt
|
|
// language name for languages without a chip-style abbreviation
|
|
// (e.g. French → "FR" via the 2-letter prefix).
|
|
let short = shortLabel(for: target)
|
|
return "→\(short)"
|
|
}
|
|
|
|
private func shortLabel(for target: TranslationLanguage) -> String {
|
|
switch target.id {
|
|
case "en": return "EN"
|
|
case "zh-Hans": return "中"
|
|
case "zh-Hant": return "繁"
|
|
case "ja": return "日"
|
|
case "ko": return "韩"
|
|
case "fr": return "FR"
|
|
case "de": return "DE"
|
|
case "es": return "ES"
|
|
case "ru": return "RU"
|
|
case "pt": return "PT"
|
|
default: return target.promptLanguageName
|
|
}
|
|
}
|
|
|
|
private func foreground(enabled: Bool) -> Color {
|
|
if enabled { return palette.accent }
|
|
return palette.textPrimary
|
|
}
|
|
|
|
private func background(enabled: Bool) -> Color {
|
|
if enabled { return palette.accent.opacity(0.15) }
|
|
return palette.surfaceElevated
|
|
}
|
|
|
|
private func stroke(enabled: Bool) -> Color {
|
|
if enabled { return palette.accent.opacity(0.35) }
|
|
return palette.divider
|
|
}
|
|
} |