From f9557d8bdc6568731ce8414fe1a2f162179aa653 Mon Sep 17 00:00:00 2001 From: Matheus456 Date: Thu, 18 Oct 2018 13:17:48 -0300 Subject: [PATCH] Melhorando visual das mensagens e adiconando quebra de linha --- amd/src/config.js | 22 ++++++++++++++++------ proxy.php | 10 +++------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/amd/src/config.js b/amd/src/config.js index 4faf5b6..222dc3b 100644 --- a/amd/src/config.js +++ b/amd/src/config.js @@ -75,32 +75,42 @@ define(['jquery', 'js/jquery.dataTables.min.js', 'js/jquery-ui.min.js'] , functi for (var i = 0, len = data.length; i < len; i++) { var desc = data[i].body; arrayReturn.push([ data[i].id, data[i].name, data[i].email]); + var data_mensagem = data[i].data_mensagem.substring(8, 10) + '/' + data[i].data_mensagem.substring(5, 7) + '/' + data[i].data_mensagem.substring(0, 4); + var hora_mensagem = data[i].data_mensagem.substring(11, 16) + mensagens += '
' if (data[i].aluno != false) { + mensagens += '
' mensagens += '
'; } else { + mensagens += '
' mensagens += '
'; } mensagens += '
'+ '

' + data[i].cpf + '

'+ '
'+ - '
'+ + '
'+ data[i].texto_mensagem + - '
'+ - Date(data[i].data_mensagem) + - '
'; + '
'+ + // '
' + //Com ou sem? + data_mensagem + ' ' + + hora_mensagem + + '

'; }; mensagens += + '
' + '
'+ ''+ ''+ '
' + - ''; + '' + + '
'; $('#mensagens').html(mensagens); $('#sendMessage').click(function (){ - description = $('#comment').val(); + description = ($('#comment').val()); + description = description.replace(/(?:\r\n|\r|\n)/g, '
'); $('#comment').attr('value', "") $.ajax({ url: "proxy.php?addMessage=" + data_conversation.id_conversa + "&description=" + description, diff --git a/proxy.php b/proxy.php index 6a1284d..168c1ab 100644 --- a/proxy.php +++ b/proxy.php @@ -6,6 +6,7 @@ header("Content-Type: application/json"); if(isset($_GET["conversationID"])) { $id = intval($_GET['conversationID']); $uri = 'https://escolamodelows.interlegis.leg.br/api/v1/fale_conosco/mensagens'; + // $uri = 'http://localhost:3000/api/v1/fale_conosco/mensagens'; $response = \Httpful\Request::post($uri) ->sendsJson() ->body('{"conversation_id": "' . $id . '"}') @@ -15,14 +16,8 @@ if(isset($_GET["conversationID"])) { $cpf = $USER->username; $description = $_GET['description']; - // ***Pega o contexto do curso e verifica o papel do usuário - // $cContext = context_course::instance(3); - // $isStudent = current(get_user_roles($cContext, $USER->id))->shortname =='student'? 'true' : 'false'; - - // ***Verifica se o usuário assume o papel de estudante em algum curso - // $isStudent = user_has_role_assignment($USER->id, 5); - $uri = 'https://escolamodelows.interlegis.leg.br/api/v1/fale_conosco/adicionar'; + // $uri = 'http://localhost:3000/api/v1/fale_conosco/adicionar'; $response = \Httpful\Request::post($uri) ->sendsJson() ->body('{ @@ -38,6 +33,7 @@ if(isset($_GET["conversationID"])) { $not_answered = intval($_GET['answered'])== 0 ? 'false':'true'; $not_answered = trim($not_answered, '"'); $uri = 'https://escolamodelows.interlegis.leg.br/api/v1/fale_conosco/conversa'; + // $uri = 'http://localhost:3000/api/v1/fale_conosco/conversa'; $response = \Httpful\Request::post($uri) ->sendsJson() ->body(