You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
import 'package:bytedesk_kefu/blocs/message_bloc/bloc.dart';
|
|
import 'package:bytedesk_kefu/blocs/thread_bloc/bloc.dart';
|
|
import 'package:bytedesk_kefu/ui/chat/page/chat_kf_page.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
// 需要请求会话
|
|
class ChatKFProvider extends StatelessWidget {
|
|
final String? wid;
|
|
final String? aid;
|
|
final String? type;
|
|
final String? title;
|
|
final String? custom;
|
|
final String? postscript;
|
|
final bool? isV2Robot;
|
|
final ValueSetter<String>? customCallback;
|
|
final Function? btnBack;
|
|
//
|
|
const ChatKFProvider(
|
|
{Key? key,
|
|
this.wid,
|
|
this.aid,
|
|
this.type,
|
|
this.title,
|
|
this.custom,
|
|
this.postscript,
|
|
this.isV2Robot,
|
|
this.customCallback, this.btnBack})
|
|
: super(key: key);
|
|
//
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
//
|
|
return MultiBlocProvider(
|
|
providers: [
|
|
BlocProvider<ThreadBloc>(
|
|
create: (BuildContext context) => ThreadBloc()
|
|
..add(RequestThreadEvent(wid: wid, aid: aid, type: type, isV2Robot: isV2Robot)),
|
|
),
|
|
BlocProvider<MessageBloc>(
|
|
create: (BuildContext context) => MessageBloc(),
|
|
),
|
|
],
|
|
child: ChatKFPage(
|
|
wid: wid,
|
|
aid: aid,
|
|
type: type,
|
|
title: title,
|
|
custom: custom,
|
|
postscript: postscript,
|
|
isV2Robot: isV2Robot,
|
|
isThread: false,
|
|
customCallback: customCallback,
|
|
btnBack: btnBack,
|
|
),
|
|
);
|
|
}
|
|
}
|