-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathFunctionMessage.swift
More file actions
98 lines (87 loc) · 3.37 KB
/
FunctionMessage.swift
File metadata and controls
98 lines (87 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import Foundation
import SwiftUI
import ChatService
import SharedUIComponents
import ComposableArchitecture
import ChatTab
import GitHubCopilotService
struct FunctionMessage: View {
let text: String
let chat: StoreOf<Chat>
@AppStorage(\.chatFontSize) var chatFontSize
@Environment(\.openURL) private var openURL
private var isFreePlanUser: Bool {
text.contains("30-day free trial")
}
private var isOrgUser: Bool {
text.contains("reach out to your organization's Copilot admin")
}
private var switchToFallbackModelText: String {
if let fallbackModelName = CopilotModelManager.getFallbackLLM(
scope: chat.isAgentMode ? .agentPanel : .chatPanel
)?.modelName {
return "We have automatically switched you to \(fallbackModelName) which is included with your plan."
} else {
return ""
}
}
private var errorContent: Text {
switch (isFreePlanUser, isOrgUser) {
case (true, _):
return Text("Monthly message limit reached. Upgrade to Copilot Pro (30-day free trial) or wait for your limit to reset.")
case (_, true):
let parts = [
"You have exceeded your free request allowance.",
switchToFallbackModelText,
"To enable additional paid premium requests, contact your organization admin."
].filter { !$0.isEmpty }
return Text(attributedString(from: parts))
default:
let parts = [
"You have exceeded your premium request allowance.",
switchToFallbackModelText,
"[Enable additional paid premium requests](https://aka.ms/github-copilot-manage-overage) to continue using premium models."
].filter { !$0.isEmpty }
return Text(attributedString(from: parts))
}
}
private func attributedString(from parts: [String]) -> AttributedString {
do {
return try AttributedString(markdown: parts.joined(separator: " "))
} catch {
return AttributedString(parts.joined(separator: " "))
}
}
var body: some View {
NotificationBanner(style: .warning) {
errorContent
if isFreePlanUser {
Button("Update to Copilot Pro") {
if let url = URL(string: "https://aka.ms/github-copilot-upgrade-plan") {
openURL(url)
}
}
.buttonStyle(.borderedProminent)
.controlSize(.regular)
.onHover { isHovering in
if isHovering {
NSCursor.pointingHand.push()
} else {
NSCursor.pop()
}
}
}
}
}
}
struct FunctionMessage_Previews: PreviewProvider {
static var previews: some View {
let chatTabInfo = ChatTabInfo(id: "id", workspacePath: "path", username: "name")
FunctionMessage(
text: "You've reached your monthly chat limit. Upgrade to Copilot Pro (30-day free trial) or wait until 1/17/2025, 8:00:00 AM for your limit to reset.",
chat: .init(initialState: .init(), reducer: { Chat(service: ChatService.service(for: chatTabInfo)) })
)
.padding()
.fixedSize()
}
}