aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/chat_section.dart
blob: 596b9f3d49b9ef5ef706a4f85ac40340239b6bee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import 'package:flutter/material.dart';

class ChatSection extends StatelessWidget {
  final ScrollController scrollController;
  final List<ChatMessage> chatMessages;
  final Function(String text, {bool isUserMessage}) addChatMessage;

  ChatSection({
    required this.scrollController,
    required this.chatMessages,
    required this.addChatMessage,
  });

  @override
  @override
  Widget build(BuildContext context) {
    return Card(
      elevation: 4, // Add a subtle shadow
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(12),
      ),
      child: Column(
        children: [
          // Chat heading
          Container(
            padding: EdgeInsets.all(6),
            alignment: Alignment.center,
            child: Text(
              'Command Logs',
              style: TextStyle(
                fontWeight: FontWeight.bold,
                fontSize: 20,
              ),
            ),
          ),
          // Chat messages with fixed height
          Container(
            padding: EdgeInsets.all(12),
            height: 180, // Adjust the height as needed
            child: ListView.builder(
              controller: scrollController,
              itemCount: chatMessages.length,
              itemBuilder: (context, index) {
                final message = chatMessages[index];
                return ChatMessageTile(message: message);
              },
            ),
          ),
          // User input field (if needed)
          // ...
        ],
      ),
    );
  }
}

class ChatMessage {
  final String text;
  final bool isUserMessage;

  ChatMessage({required this.text, this.isUserMessage = false});
}

class ChatMessageTile extends StatelessWidget {
  final ChatMessage message;

  ChatMessageTile({required this.message});

  @override
  Widget build(BuildContext context) {
    return ListTile(
      contentPadding: EdgeInsets.all(0),
      title: Container(
        alignment:
            message.isUserMessage ? Alignment.topRight : Alignment.topLeft,
        child: Row(
          mainAxisAlignment: message.isUserMessage
              ? MainAxisAlignment.end
              : MainAxisAlignment.start,
          children: [
            if (!message.isUserMessage)
              CircleAvatar(
                backgroundColor: Colors.green[400],
                child: Icon(
                  Icons.smart_toy_outlined,
                  color: Colors.white,
                ),
              ),
            SizedBox(width: 8),
            Flexible(
              child: Container(
                padding: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
                decoration: BoxDecoration(
                  borderRadius: BorderRadius.only(
                    topLeft: Radius.circular(16),
                    topRight: Radius.circular(16),
                    bottomLeft: message.isUserMessage
                        ? Radius.circular(16)
                        : Radius.circular(0),
                    bottomRight: message.isUserMessage
                        ? Radius.circular(0)
                        : Radius.circular(16),
                  ),
                  color:
                      message.isUserMessage ? Colors.blue : Colors.green[400],
                ),
                child: Text(
                  message.text,
                  style: TextStyle(color: Colors.white, fontSize: 18),
                  maxLines: null,
                ),
              ),
            ),
            SizedBox(width: 8),
            if (message.isUserMessage)
              CircleAvatar(
                backgroundColor: Colors.blue,
                child: Icon(
                  Icons.person,
                  color: Colors.white,
                ),
              ),
          ],
        ),
      ),
    );
  }
}