2016-01-02 02:26:07 +01:00
|
|
|
<link rel="import" href="../../bower_components/paper-dialog/paper-dialog.html">
|
|
|
|
<link rel="import" href="../../bower_components/paper-button/paper-button.html">
|
|
|
|
<link rel="import" href="../../bower_components/neon-animation/animations/scale-up-animation.html">
|
|
|
|
<link rel="import" href="../../bower_components/neon-animation/animations/fade-out-animation.html">
|
|
|
|
<link rel="import" href="../../bower_components/iron-pages/iron-pages.html">
|
|
|
|
<link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html">
|
2016-01-02 14:23:51 +01:00
|
|
|
<link rel="import" href="../../bower_components/paper-input/paper-textarea.html">
|
|
|
|
<link rel="import" href="linkify.html">
|
|
|
|
<link rel="import" href="clipboard-behavior.html">
|
|
|
|
<link rel="import" href="../sound-notification/sound-notification-behavior.html">
|
2016-01-02 02:26:07 +01:00
|
|
|
<dom-module id="text-input-dialog">
|
|
|
|
<template>
|
|
|
|
<style>
|
|
|
|
:host {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-01-02 14:23:51 +01:00
|
|
|
#sendDialog,
|
|
|
|
#receiveDialog {
|
|
|
|
width: 324px;
|
2016-01-02 02:26:07 +01:00
|
|
|
z-index: 101;
|
2016-01-02 14:23:51 +01:00
|
|
|
max-height: 320px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 16px;
|
2016-01-02 02:26:07 +01:00
|
|
|
}
|
|
|
|
|
2016-01-02 14:23:51 +01:00
|
|
|
@media all and (max-height: 600px) {
|
|
|
|
#sendDialog {
|
|
|
|
padding-top: 24px;
|
|
|
|
top:0px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#receivedText {
|
2016-01-02 02:26:07 +01:00
|
|
|
word-break: break-all;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2016-01-02 14:23:51 +01:00
|
|
|
|
2016-01-02 02:26:07 +01:00
|
|
|
paper-textarea {
|
2016-01-02 14:23:51 +01:00
|
|
|
max-height: 200px;
|
|
|
|
width: calc(100% - 48px);
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#receivedText {
|
|
|
|
max-height: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: calc(100% - 48px);
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-webkit-line-clamp: 9;
|
|
|
|
clamp: 9;
|
2016-01-02 02:26:07 +01:00
|
|
|
}
|
|
|
|
</style>
|
2016-01-02 14:23:51 +01:00
|
|
|
<paper-dialog id="sendDialog" entry-animation="scale-up-animation" exit-animation="fade-out-animation" with-backdrop modal>
|
2016-01-02 02:26:07 +01:00
|
|
|
<h2>Send Text</h2>
|
2016-01-02 14:23:51 +01:00
|
|
|
<paper-textarea id="textInput" label="Enter Text" value="{{textToSend}}" autofocus></paper-textarea>
|
2016-01-02 02:26:07 +01:00
|
|
|
<div class="buttons">
|
2016-01-02 14:23:51 +01:00
|
|
|
<paper-button dialog-dismiss>Discard</paper-button>
|
|
|
|
<paper-button dialog-dismiss on-tap="_send">Send</paper-button>
|
2016-01-02 02:26:07 +01:00
|
|
|
</div>
|
|
|
|
</paper-dialog>
|
2016-01-02 14:23:51 +01:00
|
|
|
<paper-dialog id="receiveDialog" entry-animation="scale-up-animation" exit-animation="fade-out-animation" with-backdrop modal>
|
2016-01-02 02:26:07 +01:00
|
|
|
<h2>Text Received</h2>
|
2016-01-02 14:23:51 +01:00
|
|
|
<div>
|
|
|
|
<div id="receivedText">
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-01-02 02:26:07 +01:00
|
|
|
<div class="buttons">
|
|
|
|
<paper-button dialog-dismiss>Discard</paper-button>
|
2016-01-02 14:23:51 +01:00
|
|
|
<a href="tel:{{tel}}" hidden$="{{!tel}}">
|
|
|
|
<paper-button dialog-dismiss>Call</paper-button>
|
2016-01-02 02:26:07 +01:00
|
|
|
</a>
|
2016-01-02 14:23:51 +01:00
|
|
|
<paper-button on-tap="_copy" autofocus>Copy</paper-button>
|
2016-01-02 02:26:07 +01:00
|
|
|
</div>
|
|
|
|
</paper-dialog>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
'use strict';
|
|
|
|
(function() {
|
2016-01-02 14:23:51 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* /^\+?[0-9x]*$/ is the first usuful Text sent via Snapdrop 2015/1/2 5:30
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
var phoneNumbers = /^\+?[0-9x/ ]*$/;
|
2016-01-02 02:26:07 +01:00
|
|
|
Polymer({
|
|
|
|
is: 'text-input-dialog',
|
2016-01-02 14:23:51 +01:00
|
|
|
behaviors: [Chat.ClipboardBehavior,Chat.SoundNotificationBehavior],
|
|
|
|
properties: {
|
|
|
|
textToSend: {
|
|
|
|
type: String
|
|
|
|
},
|
|
|
|
receivedText: {
|
|
|
|
type: String
|
|
|
|
},
|
|
|
|
contact: {
|
|
|
|
type: Object
|
|
|
|
},
|
|
|
|
tel: {
|
|
|
|
computed: '_isPhoneNumber(receivedText)',
|
|
|
|
value: false
|
|
|
|
}
|
2016-01-02 02:26:07 +01:00
|
|
|
},
|
2016-01-02 14:23:51 +01:00
|
|
|
open: function(contact) {
|
|
|
|
this.contact = contact;
|
|
|
|
this.$.sendDialog.open();
|
2016-01-02 02:26:07 +01:00
|
|
|
},
|
2016-01-02 14:23:51 +01:00
|
|
|
attached: function() {
|
|
|
|
this.async(function() {
|
|
|
|
app.conn.addEventListener('text-received', function(e) {
|
|
|
|
var receivedText = e.detail.text;
|
|
|
|
this.receivedText = receivedText;
|
|
|
|
this.$.receivedText.textContent = receivedText;
|
|
|
|
window.linkifyElement(this.$.receivedText, {}, document);
|
|
|
|
this.$.receiveDialog.open();
|
|
|
|
this.playSound();
|
|
|
|
}.bind(this), false);
|
|
|
|
}, 200);
|
|
|
|
|
|
|
|
this.$.textInput.addEventListener('keypress', function(e) {
|
|
|
|
if (e.which === 13 || e.charCode === 13) {
|
|
|
|
var key;
|
|
|
|
var isShift;
|
|
|
|
if (window.event) {
|
|
|
|
key = window.event.keyCode;
|
|
|
|
isShift = !!window.event.shiftKey; // typecast to boolean
|
|
|
|
} else {
|
|
|
|
key = e.which;
|
|
|
|
isShift = !!e.shiftKey;
|
|
|
|
}
|
|
|
|
if (!isShift) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
this._send();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}.bind(this), false);
|
2016-01-02 02:26:07 +01:00
|
|
|
},
|
2016-01-02 14:23:51 +01:00
|
|
|
_send: function() {
|
|
|
|
this.$.sendDialog.close();
|
|
|
|
app.conn.sendText(this.contact.peerId, this.textToSend);
|
2016-01-02 02:26:07 +01:00
|
|
|
},
|
2016-01-02 14:23:51 +01:00
|
|
|
_copy: function() {
|
|
|
|
this.copyToClipboard(this.receivedText);
|
|
|
|
|
|
|
|
this.$.receiveDialog.close();
|
|
|
|
console.log('text copied', this.receivedText);
|
2016-01-02 02:26:07 +01:00
|
|
|
},
|
2016-01-02 14:23:51 +01:00
|
|
|
_isPhoneNumber: function(text) {
|
|
|
|
if (!text || text.length < 5 || text.length > 100) {
|
|
|
|
return false;
|
2016-01-02 02:26:07 +01:00
|
|
|
}
|
2016-01-02 14:23:51 +01:00
|
|
|
if (phoneNumbers.test(text)) {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
2016-01-02 02:26:07 +01:00
|
|
|
});
|
|
|
|
}());
|
|
|
|
</script>
|
|
|
|
</dom-module>
|