{"id":33297,"date":"2023-02-06T07:51:30","date_gmt":"2023-02-06T02:21:30","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/"},"modified":"2023-02-06T07:51:30","modified_gmt":"2023-02-06T02:21:30","slug":"solved-the-facebooks-xyz-is-typing-feature-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/","title":{"rendered":"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-17732047\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"17732047\" data-parentid=\"17731964\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>This is actually a pretty easy feature to add to a chat. You are first going to need a place to store the typing information. I usually just store it in a database. <code>1<\/code> for is typing, and <code>0<\/code> for not. You are going to want to use a smart setup so that when typing only 1 request is sent to show you are typing and not everytime you hit the key. I have mine set up with a timer so when the user stops typing for 2000 milliseconds, the typing setting for that conversation is set to <code>0<\/code><\/p>\n<p>My Script looks like:<\/p>\n<pre><code>var typing = false,\n    shift = false,\n    timer;\n$(\".chatText\").unbind('keyup keypress blur').keypress(function (e) {\n    if (e.keyCode == 13) {\n        if (e.shiftKey !== true) {\n            shift = true;\n            return false;\n        }\n    }\n}).bind('keyup', function () {\n    if (shift) {\n        Connect.messages.send(id, to);\n        Connect.type(id, 0);\n        shift = false;\n    } else {\n        clearTimeout(timer);\n        if ($(this).val().length &gt; 0) {\n            if (!typing) {\n                Connect.type(id, 1);\n            }\n            timer = setTimeout(function () {\n                Connect.type(id, 0);\n            }, 2000);\n        }\n        if ($(this).val().length == 0) {\n            Connect.type(id, 0);\n        }\n     }\n}).blur(function () {\n    Connect.type(id, 0);\n});\n<\/code><\/pre>\n<p><code>Connect.type<\/code> function: <\/p>\n<pre><code>type: function (id, t) {\n    if ((t == 0 &amp;&amp; typing) || (t == 1 &amp;&amp; !typing)) {\n        $$.connect.staticRec(btoa($$.TRANS.d(\"L2FqYXgvdHlwZS5waHA\/aWQ9\") + id + $$.TRANS.d(\"JlNFVD0=\") + t)); \/\/ajax\/type.php?id={id}&amp;SET={t}\n    }\n    if (t) {\n        typing = true\n    }\n    else typing = false;\n}\n<\/code><\/pre>\n<p><code>ajax\/type.php<\/code>:<\/p>\n<pre><code>&lt;?php\n    require \"connect.php\";\n    require \"user.php\";\n\n    $number = $data['number'];\n    $id = escape($_GET['id']);\n\n    if (strlen($id) &lt; 4 OR strlen($id) &gt; 6 OR (int)$_GET['SET'] &gt; 1) exit();\n\n    $FOTQ = $mysqli-&gt;query(\"SELECT `from` FROM `typing` WHERE `id`='$id'\")-&gt;fetch_assoc(); \/\/from or to query\n    $FOT = ($FOTQ['from'] == $number ? 'from' : 'to') . 'typing';\n\n    $type = escape($_GET['SET']);\n\n    $mysqli-&gt;query(\"UPDATE `typing` SET `$FOT`='$type' WHERE `id`='$id'\");\n?&gt;\n<\/code><\/pre>\n<p>Informing the user using Server Sent Events (note: my own SSE function):<\/p>\n<pre><code>var $id = $(this).data(\"id\");\nvar item = $(\".messageBox[data-id='\" + $id + \"']\");\nitem.data(\"orgName\", item.children(\"name\").text());\n$$.connect.live.create({\n    url: $$.TRANS.e(\"\/ajax\/typing\/\" + $id),\n    message: function (e) {\n        item = $(\".messageBox[data-id='\" + item.data(\"id\") + \"']\");\n        if (e.data == \"1\") {\n            var name = item.children(\"name\").text();\n            var firstName = name.split(\" \")[0];\n            var hasName = name.match(\/[0-9]\/) ? \"User\" : firstName;\n            item.children(\"name\").html(hasName + \"..is typing\");\n         }\n         if (e.data == \"0\") {\n             item.children(\"name\").text(item.data(\"orgName\"));\n         }\n     },\n     duration: 2500\n}, \"typing\", false);\n<\/code><\/pre>\n<p>My <code>typing.php<\/code> for the Server-Sent Event:<\/p>\n<pre><code>&lt;?php\n    require \"connect.php\";\n    require \"user.php\";\n\n    header(\"Content-Type: text\/event-stream\\n\\n\");\n    header('Cache-Control: no-cache');\n\n    set_time_limit(1200);\n\n    $id = escape($_GET['id']);\n    $number = $data['number'];\n    $ms = 100;\n    $tS = 0; \/\/type stat\n\n    while (1) {\n        $FOTQ = $mysqli-&gt;query(\"SELECT * FROM `typing` WHERE `id`='$id'\")-&gt;fetch_assoc(); \/\/from or to query\n        $cts = $FOTQ[($FOTQ['from'] == $number ? 'to' : 'from') . 'typing']; \/\/current type stat\n\n        if ($tS != $cts) {\n            echo \"data:\" . $cts;\n            echo \"\\n\\n\";\n            $tS = 1;\n        }\n\n        echo \"\\n\\n\";\n\n        ob_flush();\n        flush();\n        usleep($ms * 1000);\n    }\n?&gt;\n<\/code><\/pre>\n<p>I&#8217;m using Server-Sent Events. That allows me to keep an open connection with the server.<\/p>\n<p><strong>NOTE:<\/strong> My PHP skills are Meh.<\/p>\n<p>But, hope this gives you an idea.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">3<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved the facebooks &#8216;xyz is typing&#8217; feature? [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] This is actually a pretty easy feature to add to a chat. You are first going to need a place to store the typing information. I usually just store it in a database. 1 for is typing, and 0 for not. You are going to want to use a smart setup so that when &#8230; <a title=\"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\" aria-label=\"More on [Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[334,1106,5967,333,339],"class_list":["post-33297","post","type-post","status-publish","format-standard","hentry","category-solved","tag-ajax","tag-facebook","tag-facebook-chat","tag-javascript","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] the facebooks &#039;xyz is typing&#039; feature? [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] the facebooks &#039;xyz is typing&#039; feature? [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] This is actually a pretty easy feature to add to a chat. You are first going to need a place to store the typing information. I usually just store it in a database. 1 for is typing, and 0 for not. You are going to want to use a smart setup so that when ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-06T02:21:30+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]\",\"datePublished\":\"2023-02-06T02:21:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\"},\"wordCount\":163,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"ajax\",\"facebook\",\"facebook-chat\",\"javascript\",\"php\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\",\"name\":\"[Solved] the facebooks 'xyz is typing' feature? [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-02-06T02:21:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] the facebooks 'xyz is typing' feature? [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] the facebooks 'xyz is typing' feature? [closed] - JassWeb","og_description":"[ad_1] This is actually a pretty easy feature to add to a chat. You are first going to need a place to store the typing information. I usually just store it in a database. 1 for is typing, and 0 for not. You are going to want to use a smart setup so that when ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/","og_site_name":"JassWeb","article_published_time":"2023-02-06T02:21:30+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]","datePublished":"2023-02-06T02:21:30+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/"},"wordCount":163,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["ajax","facebook","facebook-chat","javascript","php"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/","name":"[Solved] the facebooks 'xyz is typing' feature? [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-02-06T02:21:30+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-the-facebooks-xyz-is-typing-feature-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] the facebooks &#8216;xyz is typing&#8217; feature? [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33297","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=33297"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33297\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33297"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33297"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33297"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}