3474967700
- Support for api's that use keys - Removed idle instances. --------- Co-authored-by: Viktor Kalyniuk <@> Co-authored-by: Simon Rieger <simono41@brothertec.eu>
73 lines
2.6 KiB
Swift
73 lines
2.6 KiB
Swift
//
|
|
// ChooseLanguagesView.swift
|
|
// LiTranslate
|
|
//
|
|
// Created by Viktor Kalyniuk on 12.08.2022.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ChooseLanguagesView: View {
|
|
@EnvironmentObject private var selection: LanguagesSelection
|
|
@EnvironmentObject private var textData: TextData
|
|
@EnvironmentObject private var instance: InstanceURL
|
|
|
|
var body: some View {
|
|
HStack {
|
|
NavigationLink {
|
|
LanguagesListView(textMethod: .input)
|
|
} label: {
|
|
FlagImageView(language: $selection.input, color: Colors.Background.chooseLanguageView)
|
|
Text(selection.input.getCountryName())
|
|
}
|
|
Spacer()
|
|
Button {
|
|
(selection.input, selection.output) = (selection.output, selection.input)
|
|
TranslationParsing
|
|
.parse(url: instance.getURL(),
|
|
text: textData.input,
|
|
inputLanguage: selection.input,
|
|
outputLanguage: selection.output,
|
|
key: instance.getKey()
|
|
) { data in
|
|
DispatchQueue.main.async {
|
|
textData.output = data.translatedText
|
|
}
|
|
}
|
|
} label: {
|
|
Image(systemName: SystemNames.swap)
|
|
.rotationEffect(.degrees(-Double(Numbers.ninety)))
|
|
}
|
|
Spacer()
|
|
NavigationLink {
|
|
LanguagesListView(textMethod: .output)
|
|
} label: {
|
|
Text(selection.output.getCountryName())
|
|
FlagImageView(language: $selection.output, color: Colors.Background.chooseLanguageView)
|
|
}
|
|
.onChange(of: selection.output) { newValue in
|
|
TranslationParsing
|
|
.parse(url: instance.getURL(),
|
|
text: textData.input,
|
|
inputLanguage: selection.input,
|
|
outputLanguage: selection.output,
|
|
key: instance.getKey()
|
|
) { data in
|
|
DispatchQueue.main.async {
|
|
textData.output = data.translatedText
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.foregroundColor(Colors.Foreground.chooseLanguageView)
|
|
.padding(.horizontal)
|
|
}
|
|
}
|
|
|
|
struct ChooseLanguagesView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ChooseLanguagesView()
|
|
.environmentObject(LanguagesSelection())
|
|
.environmentObject(TextData())
|
|
}
|
|
}
|