mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-01 16:19:19 +08:00
d3050e154f
修改配置为pushdeer官方配置(包名,团队标识,api域名); 补充新添加的文字的英文翻译 (国际化); 设备和key是空列表时,加一个提示,让用户知道可以新增; 尝试解决列表删除项后UI偶尔没刷新的bug; 首次打开提示注册设备; 首次自动生成一个 key; 消息列表放到第一个位置; 推送测试时自动生成一个key; 后台进入前台后, 刷新本地消息列表; 键盘上方添加完成按钮, 用于收键盘; 发送推送测试后 自动收键盘; 及时清角标, 拯救强迫症; 为了保持一致, 设置页也改为可滑动; 添加SelfHosted配置, 可以直接一套代码跑出两种版本; 支持服务自建; 添加Env统一管理环境变量.
85 lines
2.1 KiB
Swift
85 lines
2.1 KiB
Swift
//
|
|
// EndpointView.swift
|
|
// PushDeer
|
|
//
|
|
// Created by Easy on 2022/2/1.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct EndpointView: View {
|
|
@EnvironmentObject private var store: AppState
|
|
@State private var endpoint = ""
|
|
|
|
var body: some View {
|
|
VStack{
|
|
Spacer()
|
|
|
|
Image("logo-SH")
|
|
.resizable()
|
|
.scaledToFit()
|
|
.frame(height: 200)
|
|
|
|
Spacer()
|
|
|
|
TextField(
|
|
"请输入API服务的 endpoint url",
|
|
text: $endpoint
|
|
)
|
|
.frame(maxWidth: 400, maxHeight: 48)
|
|
.padding(.horizontal, 6)
|
|
.cornerRadius(5)
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 5)
|
|
.stroke(lineWidth: 1.0)
|
|
)
|
|
|
|
Text("您在此应用中的数据都将发送到 endpoint 指向的服务器")
|
|
|
|
Button("保存") {
|
|
|
|
if endpoint.isEmpty {
|
|
HToast.showError(NSLocalizedString("Endpoint 不能为空", comment: ""))
|
|
return
|
|
}
|
|
|
|
if URL(string: endpoint) == nil {
|
|
HToast.showError(NSLocalizedString("Endpoint 格式不正确", comment: ""))
|
|
return
|
|
}
|
|
|
|
if !endpoint.lowercased().hasPrefix("http") {
|
|
HToast.showError(NSLocalizedString("请输入协议前缀: http:// 或 https://", comment: ""))
|
|
return
|
|
}
|
|
|
|
if endpoint.last == "/" {
|
|
endpoint = String(endpoint.dropLast())
|
|
}
|
|
|
|
if endpoint == Env.onlineApiEndpoint {
|
|
HToast.showError(NSLocalizedString("请输入自架服务器的 Endpoint 或者使用非自架版PushDeer", comment: ""))
|
|
return
|
|
}
|
|
|
|
store.api_endpoint = endpoint
|
|
}
|
|
.font(.system(size: 20))
|
|
.frame(width: 104, height: 42)
|
|
.foregroundColor(Color.white)
|
|
.background(Color("BtnBgColor"))
|
|
.cornerRadius(8)
|
|
.padding(EdgeInsets(top: 12, leading: 26, bottom: 0, trailing: 24))
|
|
|
|
Spacer()
|
|
}
|
|
.padding(.horizontal, 16)
|
|
}
|
|
}
|
|
|
|
struct EndpointView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
EndpointView().environmentObject(AppState.shared)
|
|
}
|
|
}
|