aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js78
-rw-r--r--public/styles/pin.sass1
-rw-r--r--public/styles/style.sass2
3 files changed, 42 insertions, 39 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 53b6e1d..088cb72 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -32,6 +32,43 @@ generator.initWithWordList(wordList);
})();
/**
+ * Evaluates whether a key generation is needed and initializes regarding actions
+ * @returns {Promise<void>}
+ */
+async function evaluateKeyGeneration() {
+ if (localStorage.getItem('database') === 'success' && await encryption.check()) {
+ pinInput.init(async (pin, tryCount) => {
+ try {
+ if (await encryption.getId(await encryption.getPublic()) !== peerId) throw "Not verified!";
+ passphrase = pin;
+ await encryption.decryptPrivate(await encryption.getPrivate(), pin);
+ chat()
+ } catch (e) { // decrypting failed
+ if (tryCount === 3) {
+ encryption.reset();
+ console.error('Too many tries!');
+ pinInput.failure('This account got removed, the site will reload.');
+ setTimeout(() => location.reload(), 1500)
+ } else if (e === 'Not verified!') {
+ console.error(e);
+ pinInput.failure(e);
+ } else {
+ console.error('Passphrase is wrong!');
+ pinInput.failure('Passphrase is wrong!');
+ }
+ }
+ });
+ } else {
+ pinInput.init(pin => {
+ console.log('[LOG] No existing keys found! Generating...');
+ pinInput.generate();
+ passphrase = pin;
+ (async () => await encryption.generate(peerId, passphrase).then(() => chat()))()
+ });
+ }
+}
+
+/**
* Initializes chat functions
*/
function chat() {
@@ -119,45 +156,10 @@ function chat() {
*/
$(document).ready(() => {
$('#add_peer_id').on('click', async () => await connect($('#peer_id').val()));
- $('#send_message').on('click', async () => await sendMessage($('#message').val()));
+ $('#send_message').on('click', async () => await sendMessage($('#message').val()) & $('#message').val(''));
+ $('#logout').on('click', () => location.reload());
+ $('#delete').on('click', () => encryption.reset() & location.reload());
$('[toggle-contact-modal]').on('click', () => $('#add_contact_modal').toggleClass('is-active'))
});
}
-
-/**
- * Evaluates whether a key generation is needed and initializes regarding actions
- * @returns {Promise<void>}
- */
-async function evaluateKeyGeneration() {
- if (localStorage.getItem('database') === 'success' && await encryption.check()) {
- pinInput.init(async (pin, tryCount) => {
- try {
- if (await encryption.getId(await encryption.getPublic()) !== peerId) throw "Not verified!";
- passphrase = pin;
- await encryption.decryptPrivate(await encryption.getPrivate(), pin);
- chat()
- } catch (e) { // decrypting failed
- if (tryCount === 3) {
- encryption.reset();
- console.error('Too many tries!');
- pinInput.failure('This account got removed, the site will reload.');
- setTimeout(() => location.reload(), 1500)
- } else if (e === 'Not verified!') {
- console.error(e);
- pinInput.failure(e);
- } else {
- console.error('Passphrase is wrong!');
- pinInput.failure('Passphrase is wrong!');
- }
- }
- });
- } else {
- pinInput.init(pin => {
- console.log('[LOG] No existing keys found! Generating...');
- pinInput.generate();
- passphrase = pin;
- (async () => await encryption.generate(peerId, passphrase).then(() => chat()))()
- });
- }
-}
diff --git a/public/styles/pin.sass b/public/styles/pin.sass
index 3aea4fc..6578f08 100644
--- a/public/styles/pin.sass
+++ b/public/styles/pin.sass
@@ -32,6 +32,7 @@
margin: 0
.pin-wrapper > .column input:focus
+ background-color: #394046
border-color: inherit
-webkit-box-shadow: none
box-shadow: none
diff --git a/public/styles/style.sass b/public/styles/style.sass
index 4d38d4b..d61fdf2 100644
--- a/public/styles/style.sass
+++ b/public/styles/style.sass
@@ -10,7 +10,7 @@ html, body
.main
align-items: flex-start
-.add-peer-button
+.action-button
height: 50px
width: 50px
margin: 20px