-
Notifications
You must be signed in to change notification settings - Fork 423
/
Copy pathContentView.swift
72 lines (63 loc) · 1.61 KB
/
ContentView.swift
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
//
// ContentView.swift
// Demo
//
// Created by Sihao Lu on 4/7/23.
//
import DemoChat
import OpenAI
import SwiftUI
struct ContentView: View {
@ObservedObject var chatStore: ChatStore
@ObservedObject var imageStore: ImageStore
@ObservedObject var assistantStore: AssistantStore
@ObservedObject var miscStore: MiscStore
@State private var selectedTab = 0
@Environment(\.idProviderValue) var idProvider
var body: some View {
TabView(selection: $selectedTab) {
ChatView(
store: chatStore,
assistantStore: assistantStore
)
.tabItem {
Label("Chats", systemImage: "message")
}
.tag(0)
AssistantsView(
store: chatStore,
assistantStore: assistantStore
)
.tabItem {
Label("Assistants", systemImage: "eyeglasses")
}
.tag(1)
TranscribeView(
)
.tabItem {
Label("Transcribe", systemImage: "mic")
}
.tag(2)
ImageView(
store: imageStore
)
.tabItem {
Label("Image", systemImage: "photo")
}
.tag(3)
MiscView(
store: miscStore
)
.tabItem {
Label("Misc", systemImage: "ellipsis")
}
.tag(4)
}
}
}
struct TranscribeView: View {
var body: some View {
Text("Transcribe: TBD")
.font(.largeTitle)
}
}