Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lib/business/local_storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ class LocalStorage {
}
}

Future<bool> removeSecure(String key) async {
// Remove from Keychain on iOS and Keystore on Android
if (Platform.isAndroid || Platform.isIOS) {
await secureStorage.delete(key: key);
return true;
} else {
return prefs.remove(key);
}
}

Future<void> deleteAllSecure() async {
if (Platform.isAndroid || Platform.isIOS) {
secureStorage.deleteAll();
Expand Down
8 changes: 7 additions & 1 deletion lib/ui/home/cards/text_entry.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ class TextEntry extends StatelessWidget {
get enteredText => _controller.text;
final FocusNode? focusNode;
final int? maxLength;
final TextInputType inputType;

TextEntry({String placeholder: "", this.focusNode, this.maxLength}) {
TextEntry(
{String placeholder: "",
this.inputType = TextInputType.text,
this.focusNode,
this.maxLength}) {
_controller.text = placeholder;
}

Expand All @@ -26,6 +31,7 @@ class TextEntry extends StatelessWidget {
child: TextFormField(
focusNode: focusNode,
controller: _controller,
keyboardType: inputType,
maxLength: this.maxLength,
validator: (value) {
return null;
Expand Down
11 changes: 11 additions & 0 deletions lib/ui/home/settings/support_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// SPDX-License-Identifier: GPL-3.0-or-later

import 'package:envoy/ui/support/support_chat_screen.dart';
import 'package:flutter_neumorphic/flutter_neumorphic.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:envoy/generated/l10n.dart';
Expand Down Expand Up @@ -29,6 +30,16 @@ class SupportPage extends StatelessWidget {
},
),
SizedBox(height: 50),
MenuOption(
label: "Chat",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SupportChatScreen()));
},
),
SizedBox(height: 50),
MenuOption(
label: S().envoy_support_telegram,
onTap: () {
Expand Down
176 changes: 176 additions & 0 deletions lib/ui/support/support_chat_screen.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
// SPDX-FileCopyrightText: 2022 Foundation Devices Inc.
//
// SPDX-License-Identifier: GPL-3.0-or-later

import 'package:chatwoot_client_sdk/chatwoot_client_sdk.dart';
import 'package:chatwoot_client_sdk/ui/chatwoot_chat_theme.dart';
import 'package:email_validator/email_validator.dart';
import 'package:envoy/business/local_storage.dart';
import 'package:envoy/ui/envoy_button.dart';
import 'package:envoy/ui/envoy_dialog.dart';
import 'package:envoy/ui/home/cards/text_entry.dart';
import 'package:envoy/ui/widgets/blur_dialog.dart';
import 'package:envoy/ui/widgets/toast/envoy_toast.dart';
import 'package:flutter/material.dart';
import 'package:uuid/uuid.dart';

import '../envoy_colors.dart';

const CHAT_IDENTIFIER = "CHAT_IDENTIFIER";
const CHAT_EMAIL = "CHAT_EMAIL";

class SupportChatScreen extends StatefulWidget {
const SupportChatScreen({Key? key}) : super(key: key);

@override
State<SupportChatScreen> createState() => _SupportChatScreenState();
}

class _SupportChatScreenState extends State<SupportChatScreen> {
String? identifier;
String? chatEmail;

@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
onViewReady();
});
}

void onViewReady() async {
LocalStorage localStorage = LocalStorage();
String? identifierSaved = await localStorage.readSecure(CHAT_IDENTIFIER);
String? chatEmailSaved = await localStorage.readSecure(CHAT_EMAIL);
if (chatEmailSaved == null) {
FocusNode focusNode = FocusNode();
bool isKeyboardShown = false;
await showEnvoyDialog(
context: context,
dismissible: false,
dialog: Builder(
builder: (context) {
var textEntry = TextEntry(
focusNode: focusNode,
inputType: TextInputType.emailAddress,
);
if (!isKeyboardShown) {
Future.delayed(Duration(milliseconds: 200)).then((value) {
FocusScope.of(context).requestFocus(focusNode);
});
isKeyboardShown = true;
}
return EnvoyDialog(
title: "Give the team a way to reach you",
content: textEntry,
actions: [
EnvoyButton(
"Submit",
light: false,
onTap: () async {
if (textEntry.enteredText.isEmpty ||
!EmailValidator.validate(textEntry.enteredText)) {
EnvoyToast(
backgroundColor: Colors.lightBlue,
message: "Invalid email address",
icon: Icon(
Icons.error_outline_rounded,
color: EnvoyColors.darkCopper,
),
duration: Duration(milliseconds: 2000),
onActionTap: () {
Navigator.pop(context);
},
).show(context);
return;
}
Navigator.pop(context);
String uuid = Uuid().v4();
await localStorage.saveSecure(CHAT_IDENTIFIER, uuid);
await localStorage.saveSecure(
CHAT_EMAIL, textEntry.enteredText);
identifierSaved = uuid;
setState(() {
chatEmail = textEntry.enteredText;
identifier = identifierSaved;
});
},
),
],
);
},
),
);
await Future.delayed(Duration(milliseconds: 400));
if (chatEmail == null) {
Navigator.pop(context);
}
}

if (identifierSaved != null && chatEmailSaved != null) {
setState(() {
identifier = identifierSaved;
chatEmail = chatEmailSaved;
});
}
}

@override
Widget build(BuildContext context) {
if (chatEmail == null || identifier == null) {
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
leading: BackButton(
color: Colors.black,
),
elevation: 0,
title: Text(
"Foundation Support",
style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
),
backgroundColor: Colors.white,
),
body: Center(
child: CircularProgressIndicator(),
),
);
}
return ChatwootChat(
showUserNames: true,
theme: ChatwootChatTheme(
userAvatarImageBackgroundColor: EnvoyColors.darkCopper,
),
baseUrl: "https://chatwoot.foundationdevices.com",
inboxIdentifier: "1JpMBndDbngR2iDFhV5fWH1G",
user: ChatwootUser(
identifier: identifier,
name: null,
email: chatEmail,
),
appBar: AppBar(
leading: BackButton(
color: Colors.black,
),
elevation: 0,
title: GestureDetector(
onLongPress: () {
try {
LocalStorage().removeSecure(CHAT_EMAIL);
LocalStorage().removeSecure(CHAT_IDENTIFIER);
ChatwootClient.clearAllData();
} catch (e) {
print(e);
}
Navigator.pop(context);
},
child: Text(
"Foundation Support",
style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
),
),
backgroundColor: Colors.white,
),
);
}
}
Loading