simple support for nip07

This commit is contained in:
DASHU
2024-09-04 19:22:38 +08:00
parent 666c546d93
commit 633a29cd79
20 changed files with 1078 additions and 111 deletions

View File

@@ -1,14 +1,39 @@
import 'package:flutter/material.dart';
import 'package:nostr_sdk/utils/string_util.dart';
import 'package:nowser/component/auth_dialog/auth_dialog_base_componnet.dart';
import 'package:nowser/const/auth_result.dart';
import 'package:nowser/data/app.dart';
import 'package:nowser/util/router_util.dart';
import '../../const/base.dart';
class AuthDialog extends StatefulWidget {
static void show(BuildContext context) {
showDialog(
App app;
int authType;
int? eventKind;
String? authDetail;
AuthDialog({
required this.app,
required this.authType,
this.eventKind,
this.authDetail,
});
static Future<int?> show(BuildContext context, App app, int authType,
{int? eventKind, String? authDetail}) {
return showDialog(
context: context,
builder: (context) {
return AuthDialog();
return AuthDialog(
app: app,
authType: authType,
eventKind: eventKind,
authDetail: authDetail,
);
},
);
}
@@ -31,49 +56,54 @@ class _AuthDialog extends State<AuthDialog> {
);
var hintColor = themeData.hintColor;
// handle this title and des with widget.authType
String authTitle = "Sign Event";
String authDes = "Allow web.nostrmo.com to sign a authenticate event";
authTitle = "AuthType ${widget.authType}";
List<Widget> list = [];
list.add(Container(
margin: baseMargin,
child: Text(
"Allow web.nostrmo.com to sign a authenticate event",
authDes,
),
));
var showDetailWidget = GestureDetector(
onTap: () {
setState(() {
showDetail = !showDetail;
});
},
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text("detail"),
showDetail ? Icon(Icons.expand_less) : Icon(Icons.expand_more),
],
),
);
List<Widget> detailList = [];
if (showDetail) {
if (StringUtil.isNotBlank(widget.authDetail)) {
var showDetailWidget = GestureDetector(
onTap: () {
setState(() {
showDetail = !showDetail;
});
},
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text("detail"),
showDetail ? Icon(Icons.expand_less) : Icon(Icons.expand_more),
],
),
);
if (showDetail) {
detailList.add(Container(
height: 210,
width: double.infinity,
padding: EdgeInsets.all(Base.BASE_PADDING_HALF),
decoration: BoxDecoration(
color: hintColor.withOpacity(0.3),
borderRadius: BorderRadius.circular(10),
),
child: SingleChildScrollView(
child: Text(widget.authDetail!),
),
));
} else {}
detailList.add(Container(
height: 210,
width: double.infinity,
padding: EdgeInsets.all(Base.BASE_PADDING_HALF),
decoration: BoxDecoration(
color: hintColor.withOpacity(0.3),
borderRadius: BorderRadius.circular(10),
),
child: SingleChildScrollView(
child: Text(
"GoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGoodGood"),
),
margin: baseMargin,
child: showDetailWidget,
));
} else {}
detailList.add(Container(
margin: baseMargin,
child: showDetailWidget,
));
}
list.add(Container(
height: 250,
@@ -90,6 +120,16 @@ class _AuthDialog extends State<AuthDialog> {
children: list,
);
return AuthDialogBaseComponnet(title: "Sign Event", child: child);
return AuthDialogBaseComponnet(
app: widget.app,
title: authTitle,
onConfirm: onConfirm,
child: child,
);
}
onConfirm() {
print("auth dialog confirm!");
RouterUtil.back(context, AuthResult.OK);
}
}