-
Notifications
You must be signed in to change notification settings - Fork 20
/
chat_viewer.js
141 lines (118 loc) · 3.66 KB
/
chat_viewer.js
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
129
130
131
132
133
134
135
136
137
138
139
140
141
const e = React.createElement;
var myName;
var cleanedData;
const fileSelector = document.getElementById('fileupload');
fileSelector.addEventListener('change', (event) => {
const fileList = event.target.files;
console.log(fileList);
readJSON(fileList[0]);
});
const domButton = document.querySelector('#submit-button');
ReactDOM.render(
e('button', {onClick: () => handleSubmit()}, "Submit"),
domButton
);
function handleSubmit(){
ReactDOM.render(e(ChatArea), document.querySelector('#chat-area'))
const domChat = document.querySelector('#chat-display');
ReactDOM.render(e(ChatBubble, cleanedData.msgs), domChat);
addChatTitle();
}
function readJSON(file) {
const reader = new FileReader();
reader.addEventListener('load', (event) => {
console.log("JSON load sucessful");
msgObject = JSON.parse(event.target.result);
cleanedData = cleanData(msgObject);
promptParticipantRadio(cleanedData.participants);
});
reader.readAsText(file);
}
function cleanData(raw) {
var participants = raw.participants.map(person => person.name);
var title = raw.title;
var msgs = raw.messages.reverse();
var cleaned = {
"participants": participants,
"title": title,
"msgs": msgs,
}
return cleaned
}
function addChatTitle() {
const chatTitle = document.querySelector('#chat-title')
ReactDOM.render(e('h2', {}, cleanedData.title), chatTitle);
}
function promptParticipantRadio(participants){
const participantsRadio = document.querySelector('#participants-radio');
var radioElements = []
radioElements.push(e('p', {}, 'Which participant are you?'))
participants.forEach(function (n, i) {
radioElements.push(
e('input', {
type: 'radio',
name: 'participant',
onClick: () => radioClick(n),
id: ("radio-button-" + i)
})
);
radioElements.push(
e('label', {onClick: () => document.getElementById('radio-button-' + i).click()}, n)
);
radioElements.push(e('br'));
});
ReactDOM.render(radioElements,
participantsRadio);
document.querySelector("#radio-button-0").click();
}
function radioClick(name) {
myName = name;
console.log(`Setting ${name} as blue bubble`);
}
class ChatBubble extends React.Component {
generateBubbles(msg) {
if (msg.sender_name == myName) {
return (
e(
'div', {className: "message-container"},
e('div', {className: "name-right"}, msg.sender_name),
e('div', {className: "bubble-right"}, msg.content),
e('span', {className: "tooltip-right"}, timeConverter(msg.timestamp_ms))
)
);
} else {
return (
e(
'div', {className: "message-container"},
e('div', {className: "name-left"}, msg.sender_name),
e('div', {className: "bubble-left"}, msg.content),
e('span', {className: "tooltip-left"}, timeConverter(msg.timestamp_ms))
)
);
}
}
render() {
return (
cleanedData.msgs.map(msg => this.generateBubbles(msg))
)
}
}
class ChatArea extends React.Component {
render() {
return (
e('div', {id: "chat-display"}, null)
);
}
}
function timeConverter(UNIX_timestamp){
var a = new Date(UNIX_timestamp);
var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
var year = a.getFullYear();
var month = months[a.getMonth()];
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes() < 10 ? '0' + a.getMinutes() : a.getMinutes();
var sec = a.getSeconds() < 10 ? '0' + a.getSeconds() : a.getSeconds();
var time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + min + ':' + sec ;
return time;
}