This commit is contained in:
Martti Malmi 2020-01-13 22:21:53 +02:00
commit 2ec4c62a9a
14 changed files with 20651 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
yarn.lock
node_modules

12
package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "iris-messenger",
"version": "1.0.0",
"author": "Martti Malmi <sirius@iki.fi>",
"license": "MIT",
"dependencies": {
"http-server": "^0.12.1"
},
"scripts": {
"start": "http-server src"
}
}

1087
src/emoji-button.js Normal file

File diff suppressed because one or more lines are too long

BIN
src/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

2281
src/gun.js Normal file

File diff suppressed because it is too large Load Diff

BIN
src/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

120
src/index.html Normal file
View File

@ -0,0 +1,120 @@
<!DOCTYPE html>
<html>
<head>
<title>Iris Chat</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="shortcut icon" href="./favicon.ico">
</head>
<body>
<div class="chat">
<section class="sidebar hidden-xs">
<div class="user-info">
<div id="my-identicon"></div>
<div class="user-name"></div>
</div>
<div id="enable-notifications-prompt">
<div class="title">Get notified of new messages</div>
<div><a>Turn on desktop notifications ></a></div>
</div>
<div class="chat-list">
<div class="chat-item new">
Start new chat
</div>
</div>
</section>
<section class="main">
<header>
<div id="back-button" class="visible-xs"></div>
<div id="header-content"></div>
</header>
<!-- Chat view -->
<div class="main-view" id="message-list"></div>
<div id="not-seen-by-them" style="display: none">
<p>The other person hasn't seen this chat yet. Give them <b>your</b> chat link through some other channel:</p>
<p><button class="copy-chat-link">Copy your chat link</button></p>
</div>
<div class="message-form" style="display:none">
<form autocomplete="off">
<button type="button" id="emoji-picker">
<svg aria-hidden="true" focusable="false" data-prefix="far" data-icon="smile" class="svg-inline--fa fa-smile fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"></path></svg>
</button>
<input id="new-msg" type="text" placeholder="Type a message">
<button type="submit"></button>
</form>
</div>
<!-- New chat view -->
<div class="main-view" id="new-chat">
<p><input id="paste-chat-link" type="text" placeholder="Paste someone's chat link"></p>
<p><button class="copy-chat-link">Copy your chat link</button></p>
<p>Exchange chat links with someone you want to chat with!</p>
</div>
<!-- Settings view -->
<div class="main-view" id="settings">
<h3>Profile</h3>
<p>
Your name:
</p>
<p>
<input id="settings-name" placeholder="Your name">
</p>
<h3>Account</h3>
<p>
<b>Save a backup of your private key first!</b> Otherwise you can't log in back to this account.
</p>
<p>
<button class="show-logout-confirmation">Log out</button>
</p>
<p>
<button class="show-switch-account">Switch account</button>
</p>
<h3>Private key</h3>
<p>
Private key is used to log in to your account. Keep your private key safe!
</p>
<p>
<button id="download-private-key">Download private key</button>
<button id="copy-private-key">Copy private key</button>
</p>
<h3>Peers</h3>
<div id="peers"></div>
</div>
<!-- Logout confirmation -->
<div class="main-view" id="logout-confirmation">
<p>
You <b>cannot log in again</b> unless you have saved a copy of your private key.
</p>
<p>
<button class="open-settings-button">Go back</button>
</p>
<p>
<button class="logout-button">Log out</button>
</p>
</div>
<!-- Login view -->
<div class="main-view" id="switch-account">
<input id="paste-privkey" placeholder="Paste a private key">
</div>
</section>
</div>
<script src="./jquery.js"></script>
<script src="./gun.js"></script>
<script src="./sea.js"></script>
<script src="./nts.js"></script>
<script src="./irisLib.js"></script>
<script src="./emoji-button.js"></script>
<script src="./script.js"></script>
</body>
</html>

14987
src/irisLib.js Normal file

File diff suppressed because it is too large Load Diff

5
src/jquery.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
src/notification.mp3 Normal file

Binary file not shown.

49
src/nts.js Normal file
View File

@ -0,0 +1,49 @@
;(function(){
// NOTE: While the algorithm is P2P,
// the current implementation is one sided,
// only browsers self-modify, servers do not.
// Need to fix this! Since WebRTC is now working.
var env;
if(typeof global !== "undefined"){ env = global }
if(typeof window !== "undefined"){ var Gun = (env = window).Gun }
else {
if(typeof require !== "undefined"){ var Gun = require('./gun') }
}
Gun.on('opt', function(ctx){
this.to.next(ctx);
if(ctx.once){ return }
ctx.on('in', function(at){
if(!at.nts && !at.NTS){
return this.to.next(at);
}
if(at['@']){
(ask[at['@']]||noop)(at);
return;
}
if(env.window){
return this.to.next(at);
}
this.to.next({'@': at['#'], nts: Gun.time.is()});
});
var ask = {}, noop = function(){};
if(!env.window){ return }
Gun.state.drift = Gun.state.drift || 0;
setTimeout(function ping(){
var NTS = {}, ack = Gun.text.random(), msg = {'#': ack, nts: true};
NTS.start = Gun.state();
ask[ack] = function(at){
NTS.end = Gun.state();
Gun.obj.del(ask, ack);
NTS.latency = (NTS.end - NTS.start)/2;
if(!at.nts && !at.NTS){ return }
NTS.calc = NTS.latency + (at.NTS || at.nts);
Gun.state.drift -= (NTS.end - NTS.calc)/2;
setTimeout(ping, 1000);
}
ctx.on('out', msg);
}, 1);
});
// test by opening up examples/game/nts.html on devices that aren't NTP synced.
}());

487
src/script.js Normal file
View File

@ -0,0 +1,487 @@
var gun = Gun({
peers: [location.origin + '/gun', 'https://gun-us.herokuapp.com/gun', 'https://gunjs.herokuapp.com/gun'],
localStorage: false
});
var notificationSound = new Audio('./notification.mp3');
var chat = gun.get('converse/' + location.hash.slice(1));
var chats = {};
var activeChat;
var onlineTimeout;
var timeOpened = new Date();
var key;
var desktopNotificationsEnabled;
var emojiRegex = /[\u{1f300}-\u{1f5ff}\u{1f900}-\u{1f9ff}\u{1f600}-\u{1f64f}\u{1f680}-\u{1f6ff}\u{2600}-\u{26ff}\u{2700}-\u{27bf}\u{1f1e6}-\u{1f1ff}\u{1f191}-\u{1f251}\u{1f004}\u{1f0cf}\u{1f170}-\u{1f171}\u{1f17e}-\u{1f17f}\u{1f18e}\u{3030}\u{2b50}\u{2b55}\u{2934}-\u{2935}\u{2b05}-\u{2b07}\u{2b1b}-\u{2b1c}\u{3297}\u{3299}\u{303d}\u{00a9}\u{00ae}\u{2122}\u{23f3}\u{24c2}\u{23e9}-\u{23ef}\u{25b6}\u{23f8}-\u{23fa}]/ug;
var localStorageKey = localStorage.getItem('chatKeyPair');
if (localStorageKey) {
login(JSON.parse(localStorageKey));
} else {
Gun.SEA.pair().then(k => login(k));
}
function login(k) {
chats = {};
key = k;
localStorage.setItem('chatKeyPair', JSON.stringify(k));
irisLib.Chat.initUser(gun, key);
myIdenticon = $(new irisLib.Attribute({type:'keyID', value: key.pub}).identicon({width:40, showType: false}));
$(".chat-item:not(.new)").remove();
$("#my-identicon").empty();
$("#my-identicon").append(myIdenticon);
$(".user-info").click(showSettings);
setOurOnlineStatus();
irisLib.Chat.getChats(gun, key, addChat);
var chatWith = getUrlParameter('chatWith');
if (chatWith) {
addChat(chatWith);
showChat(chatWith);
window.history.pushState({}, "Iris Chat", "/"+window.location.href.substring(window.location.href.lastIndexOf('/') + 1).split("?")[0]); // remove param
} else {
showNewChat();
}
$('.user-info .user-name').text('anonymous');
$('#settings-name').val('');
gun.user().get('profile').get('name').on(name => {
if (name && typeof name === 'string') {
$('.user-info .user-name').text(truncateString(name, 20));
var el = $('#settings-name');
if (!el.is(':focus')) {
$('#settings-name').val(name);
}
}
});
}
function updatePeerList() {
$('#peers').empty();
var o = gun['_'].opt.peers;
Object.keys(o).forEach(k => {
var text = ' ' + o[k].url;
var el = $('<div></div>');
if (o[k].wire && o[k].wire.hied) {
text = '+' + text;
} else {
text = '-' + text;
}
el.text(text);
$('#peers').append(el);
});
}
updatePeerList();
setInterval(updatePeerList, 5000);
var emojiButton = $('#emoji-picker');
if (!isMobile()) {
emojiButton.show();
var picker = new EmojiButton({position: 'top-start'});
picker.on('emoji', emoji => {
$('#new-msg').val($('#new-msg').val() + emoji);
$('#new-msg').focus();
});
emojiButton.click(event => {
event.preventDefault();
picker.pickerVisible ? picker.hidePicker() : picker.showPicker(emojiButton);
});
}
$('#paste-chat-link').on('keyup paste', event => {
var val = $(event.target).val();
if (val.length < 30 || val.indexOf('chatWith') === -1) {
return;
}
var s = val.split('?');
if (s.length !== 2) { return; }
$(event.target).val('');
var pub = getUrlParameter('chatWith', s[1]);
addChat(pub);
showChat(pub);
});
$('.chat-item.new').click(showNewChat);
$('#settings-name').on('keyup paste', event => {
var name = $(event.target).val().trim();
gun.user().get('profile').get('name').put(name);
});
function setOurOnlineStatus() {
irisLib.Chat.setOnline(gun, true);
document.addEventListener("mousemove", () => {
irisLib.Chat.setOnline(gun, true);
clearTimeout(onlineTimeout);
onlineTimeout = setTimeout(() => irisLib.Chat.setOnline(gun, false), 60000); // TODO: setOnline false not working?
});
document.addEventListener("visibilitychange", () => {
if (document.visibilityState === 'visible') {
irisLib.Chat.setOnline(gun, true);
if (activeChat) {
chats[activeChat].setMyMsgsLastSeenTime();
}
} else {
irisLib.Chat.setOnline(gun, false);
}
});
}
function resetView() {
activeChat = null;
showMenu(false);
$('.chat-item').toggleClass('active', false);
$('.main-view').hide();
$('#not-seen-by-them').hide();
$(".message-form").hide();
$("#header-content").empty();
}
function showMenu(show = true) {
$('.sidebar').toggleClass('hidden-xs', !show);
$('.main').toggleClass('hidden-xs', show);
}
$('#back-button').click(() => {
resetView();
showMenu(true);
});
$(window).resize(() => { // if resizing up from mobile size menu view
if ($(window).width() > 565 && $('.main-view:visible').length === 0) {
showNewChat();
}
});
function showSettings() {
resetView();
$('#header-content').text('Settings');
$('#settings').show();
}
function showNewChat() {
resetView();
$('.chat-item.new').toggleClass('active', true);
$('#new-chat').show();
$("#header-content").text('Start new chat');
}
$('.copy-chat-link').click(event => {
copyToClipboard('https://chat.iris.to/?chatWith=' + key.pub);
var t = $(event.target);
var originalText = t.text();
var originalWidth = t.width();
t.width(originalWidth);
t.text('Copied');
setTimeout(() => {
t.text(originalText);
t.css('width', '');
}, 2000);
});
$('#copy-private-key').click(event => {
copyToClipboard(JSON.stringify(key));
var t = $(event.target);
var originalText = t.text();
var originalWidth = t.width();
t.width(originalWidth);
t.text('Copied');
setTimeout(() => {
t.text(originalText);
t.css('width', '');
}, 2000);
});
$('#download-private-key').click(downloadKey);
$('.show-logout-confirmation').click(showLogoutConfirmation);
function showLogoutConfirmation() {
resetView();
$('#header-content').text('Log out?');
$('#logout-confirmation').show();
}
$('.show-switch-account').click(showSwitchAccount);
function showSwitchAccount() {
resetView();
$('#header-content').text('Switch account');
$('#switch-account').show();
}
$('#switch-account input').on('keyup paste', (event) => {
var val = $(event.target).val();
if (!val.length) { return; }
try {
var key = JSON.parse(val);
login(key);
$(event.target).val('');
} catch (e) {
console.error('Login with key', val, 'failed:', e);
}
});
$('.logout-button').click(() => {
Gun.SEA.pair().then(key => login(key));
});
$('.open-settings-button').click(showSettings);
desktopNotificationsEnabled = window.Notification && Notification.permission === 'granted';
if (window.Notification && Notification.permission !== 'granted' && Notification.permission !== 'denied') {
setTimeout(() => {
$('#enable-notifications-prompt').animate({height: 'show'});
}, 5000);
}
function enableDesktopNotifications() {
if (window.Notification) {
Notification.requestPermission((status) => {
if (Notification.permission === 'granted' || Notification.permission === 'denied') {
$('#enable-notifications-prompt').hide();
}
});
}
}
$('#enable-notifications-prompt').click(enableDesktopNotifications);
function notify(msg, info, pub) {
function shouldNotify() {
if (msg.time < timeOpened) { return false; }
if (info.selfAuthored) { return false; }
if (document.visibilityState === 'visible') { return false; }
return true;
}
function shouldDesktopNotify() {
if (!desktopNotificationsEnabled) { return false; }
return shouldNotify();
}
function shouldAudioNotify() {
return shouldNotify();
}
if (shouldAudioNotify()) {
notificationSound.play();
}
if (shouldDesktopNotify()) {
var desktopNotification = new Notification(msg.author, {
icon: 'icon128.png',
body: truncateString(msg.text, 50),
silent: true
});
desktopNotification.onclick = function() {
showChat(pub);
window.focus();
};
}
}
function showChat(pub) {
if (!pub || !Object.prototype.hasOwnProperty.call(chats, pub)) {
return;
}
resetView();
activeChat = pub;
$('.chat-item[data-pub="' + pub +'"]').toggleClass('active', true);
$("#message-list").empty();
$("#message-list").show();
$(".message-form").show();
$(".message-form form").off('submit');
$(".message-form form").on('submit', event => {
event.preventDefault();
var text = $('#new-msg').val();
if (!text.length) { return; }
chats[pub].send(text);
$('#new-msg').val('');
});
var nameEl = $('<span class="name"></span>');
if (chats[pub].name) {
nameEl.text(truncateString(chats[pub].name, 30));
nameEl.show();
}
$("#header-content").append(chats[pub].identicon.clone());
$("#header-content").append(nameEl);
$("#header-content").append($('<small class="last-seen"></small>'));
var msgs = Object.values(chats[pub].messages);
msgs.forEach(addMessage);
sortMessagesByTime();
lastSeenTimeChanged(pub);
chats[pub].setMyMsgsLastSeenTime();
$('#message-list').scrollTop($('#message-list')[0].scrollHeight - $('#message-list')[0].clientHeight);
chats[pub].setMyMsgsLastSeenTime();
function setTheirOnlineStatus() {
var online = chats[pub].online;
if (activeChat === pub) {
if (online.isOnline) {
$('#header-content .last-seen').text('online');
} else if (online.lastActive) {
$('#header-content .last-seen').text('last seen ' + formatDate(new Date(online.lastActive * 1000)));
}
}
}
if (!chats[pub].online) {
chats[pub].online = {};
irisLib.Chat.getOnline(gun, pub, (online) => {
chats[pub].online = online;
setTheirOnlineStatus();
});
}
setTheirOnlineStatus();
}
function sortChatsByLatest() {
var sorted = $(".chat-item").sort((a, b) => $(b).data('latestTime') - $(a).data('latestTime'));
$(".chat-list").append(sorted);
}
function sortMessagesByTime() {
var sorted = $(".msg").sort((a, b) => $(a).data('time') - $(b).data('time'));
$("#message-list").append(sorted);
}
function addMessage(msg) {
var textEl = $('<div class="text"></div>').text(msg.text);
var msgContent = $(
'<div class="msg-content"><div class="time"><span class="seen">✔</span> ' + formatDate(msg.time) + '</div></div>'
);
msgContent.prepend(textEl);
if (msg.text.length === 2 && msg.text.match(emojiRegex)) {
textEl.toggleClass('emoji-only', true);
}
msgEl = $('<div class="msg"></div>').append(msgContent);
msgEl.data('time', msg.time);
msgEl.toggleClass('our', msg.selfAuthored ? true : false);
msgEl.toggleClass('their', msg.selfAuthored ? false : true);
$("#message-list").append(msgEl); // TODO: jquery insertAfter element with smaller timestamp
$('#message-list').scrollTop($('#message-list')[0].scrollHeight - $('#message-list')[0].clientHeight);
}
function addChat(pub) {
if (!pub || Object.prototype.hasOwnProperty.call(chats, pub)) {
return;
}
var el = $('<div class="chat-item"><span class="name"></span> <small class="latest"></small></div>');
el.attr('data-pub', pub);
chats[pub] = new irisLib.Chat({gun, key, participants: pub, onMessage: (msg, info) => {
msg.selfAuthored = info.selfAuthored;
chats[pub].messages[msg.time] = msg;
msg.time = new Date(msg.time);
if (!info.selfAuthored && msg.time > chats[pub].theirLastSeenTime) {
chats[pub].theirLastSeenTime = msg.time;
lastSeenTimeChanged(pub);
}
if (!chats[pub].latest || msg.time > chats[pub].latest.time) {
chats[pub].latest = msg;
var text = truncateString(msg.text, 30);
el.find('.latest').text(text);
el.data('latestTime', msg.time);
sortChatsByLatest();
}
if (activeChat === pub) {
addMessage(msg);
sortMessagesByTime(); // this is slow if message history is loaded while chat active
if (chats[pub].latest.time === msg.time && document.visibilityState === 'visible') {
chats[pub].setMyMsgsLastSeenTime();
}
}
notify(msg, info, pub);
}});
chats[pub].messages = chats[pub].messages || [];
chats[pub].identicon = $(new irisLib.Attribute({type: 'keyID', value: pub}).identicon({width:40, showType: false}));
gun.user(pub).get('profile').get('name').on(name => {
if (name && typeof name === 'string') {
chats[pub].name = name;
el.find('.name').text(truncateString(name, 20));
if (pub === activeChat) {
$('#header-content .name').text(truncateString(name, 30));
}
}
});
el.prepend(chats[pub].identicon);
el.click(() => showChat(pub));
$(".chat-list").append(el);
chats[pub].getTheirMsgsLastSeenTime(time => {
chats[pub].theirLastSeenTime = new Date(time);
lastSeenTimeChanged(pub);
});
}
function lastSeenTimeChanged(pub) {
if (pub === activeChat) {
if (chats[pub].theirLastSeenTime) {
$('#not-seen-by-them').hide();
$('.msg.our').each(function() {
var el = $(this);
if (el.data('time') <= chats[pub].theirLastSeenTime) {
el.find('.seen').show();
}
});
// set seen msgs
} else {
$('#not-seen-by-them').show();
}
}
}
/* Helpers */
function formatDate(date) {
return date.toLocaleString(undefined, {dateStyle:"short", timeStyle:"short"});
}
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
// Internet Explorer-specific code path to prevent textarea being shown while dialog is visible.
return clipboardData.setData("Text", text);
}
else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
textarea.style.position = "fixed"; // Prevent scrolling to bottom of page in Microsoft Edge.
document.body.appendChild(textarea);
textarea.select();
try {
return document.execCommand("copy"); // Security exception may be thrown by some browsers.
}
catch (ex) {
console.warn("Copy to clipboard failed.", ex);
return false;
}
finally {
document.body.removeChild(textarea);
}
}
}
function getUrlParameter(sParam, sParams) {
var sPageURL = sParams || window.location.search.substring(1),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
}
}
};
function download(filename, data, type, charset, href) {
var hiddenElement;
if (charset === null) {
charset = 'utf-8';
}
hiddenElement = document.createElement('a');
hiddenElement.href = href || ("data:" + type + ";charset=" + charset + "," + (encodeURI(data)));
hiddenElement.target = '_blank';
hiddenElement.download = filename;
return hiddenElement.click();
};
function downloadKey() {
return download('iris_private_key.txt', JSON.stringify(key), 'text/csv', 'utf-8');
};
function isMobile() {
var check = false;
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent||navigator.vendor||window.opera);
return check;
};
function truncateString(s, length = 30) {
return s.length > length ? s.slice(0, length) + '...' : s;
}

1325
src/sea.js Normal file

File diff suppressed because it is too large Load Diff

296
src/style.css Normal file
View File

@ -0,0 +1,296 @@
* { box-sizing: border-box; }
body {
font-size: 15px;
color: #262626;
font-family: "SF Pro Text", "SF Pro Icons", system, -apple-system, system-ui, system-ui, "Helvetica Neue", Helvetica, "Lucida Grande", sans-serif;
padding: 0;
margin: 0;
}
input, button {
padding: 15px;
outline: none;
border: 0;
font-size: 15px;
border-radius: 50px;
}
input {
margin-right: 7px;
}
button {
background: #ddd;
cursor: pointer;
}
button:hover, button:active, button:focus {
background: #ccc;
}
@media (max-width: 575px) {
.hidden-xs {
display: none !important;
}
.visible-xs {
display: initial !important;
}
}
@media (min-width: 576px) {
.visible-xs {
display: none !important;
}
}
.iris-identicon {
margin-right: 15px !important;
}
.chat {
display: flex;
flex-direction: row;
height: 100vh;
background-color: white;
}
.sidebar {
overflow-x: hidden;
display: flex;
flex-direction: column;
flex: 1 0 10em;
border-right: 1px solid #dfdfdf;
}
.sidebar * {
user-select: none;
}
.main {
display: flex;
flex-direction: column;
flex: 4 0 10em;
}
/*----- Main------- */
header {
display: flex;
flex:1;
background-color: #efefef;
max-height:60px;
border-bottom: 1px solid rgba(0,0,0,.08);
}
header .name {
margin-right: 15px;
display: none;
}
header #header-content {
flex: 1;
padding: 10px 15px;
align-self: center;
}
header #back-button {
align-self: center;
padding: 10px 15px;
cursor: pointer;
}
.main-view {
display: none;
flex:1;
overflow-y: scroll;
padding: 10px 15px;
background-color: #e5ddd5;
}
.msg {
display: flex;
flex-direction: column;
margin-bottom: 2px;
}
.msg-content {
background-color: #ffffff;
padding: 6px 10px;
border-radius: 8px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
flex: none;
max-width: 75%;
}
.msg .emoji-only {
font-size: 3em;
text-align: center;
}
.msg .seen {
color: #4fc3f7;
display: none;
user-select: none;
}
.msg.their {
align-items: flex-start;
}
.msg.their + .msg.our .msg-content {
margin-top: 15px;
border-radius: 8px 0px 8px 8px;
}
.msg.their:first-of-type .msg-content {
border-radius: 0px 8px 8px 8px;
}
.msg.our:first-of-type .msg-content {
border-radius: 8px 0px 8px 8px;
}
.msg.our + .msg.their .msg-content {
margin-top: 15px;
border-radius: 0px 8px 8px 8px;
}
.msg.our {
align-items: flex-end;
}
.msg.our .msg-content {
background-color: #d7f7c5;
}
.msg .time {
text-align: right;
font-size: 12px;
color: rgba(0, 0, 0, 0.45);
}
#emoji-picker {
outline: 1px;
margin-right: 5px;
display: none;
}
.message-form {
flex:1;
flex-direction: row;
max-height:70px;
background-color: #efefef;
padding: 10px 15px;
}
.message-form form {
display: flex;
}
.message-form input {
flex: 1;
width: auto;
}
.message-form button, .message-form button:hover, .message-form button:active, .message-form button:focus {
flex: none;
color: #999;
background-color: transparent;
font-size: 30px;
padding: 5px;
}
/*----- Sidebar------- */
.user-info {
width: 100%;
flex:1;
display: flex;
flex-direction: row;
align-self: center;
align-items: left;
max-height:60px;
overflow-y: hidden;
overflow-x: hidden;
padding: 10px 15px;
background-color: #efefef;
cursor: pointer;
}
#my-identicon {
flex: none;
align-self: center;
}
.user-name {
align-self: center;
flex: 1;
}
.chat-list{
flex:1;
overflow-y: scroll;
}
.chat-item {
padding: 10px 15px;
overflow-x: hidden;
border-bottom: 1px solid #efefef;
cursor: pointer;
}
small {
font-size: 12px;
color: #777;
}
.chat-item.active, .chat-item.active:hover {
background: #eaeaea;
}
.chat-item:hover {
background: #f3f3f3;
}
.chat-item.new {
padding: 22px 15px;
}
#new-chat input {
width: 200px;
}
#not-seen-by-them {
padding: 10px 15px;
background-color: #9ee8ff;
}
#not-seen-by-them button {
background: #fff;
}
#not-seen-by-them button:hover, #not-seen-by-them button:active, #not-seen-by-them button:focus {
background: #eee;
}
#enable-notifications-prompt {
background: #9ee8ff;
padding: 22px 15px;
cursor: pointer;
overflow-y: hidden;
display: none;
}
#enable-notifications-prompt .title {
font-weight: bold;
margin-bottom: 5px;
}
#enable-notifications-prompt a {
text-decoration: none;
}
#enable-notifications-prompt:hover a, #enable-notifications-prompt:focus a {
text-decoration: underline;
}