submeterTrabalho.blade.php 25.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
@extends('layouts.app')

@section('content')
<div class="container content">

    <div class="row justify-content-center">
        <div class="col-sm-12">
            <div class="card" style="margin-top:50px">
                <div class="card-body">
                  <h5 class="card-title">Enviar Projeto</h5>
                  <p class="card-text">
                    <form method="POST" action="{{route('trabalho.store')}}" enctype="multipart/form-data">
                        @csrf
                        <input type="hidden" name="editalId" value="{{$edital->id}}">
                        
                        {{-- Nome do Projeto  --}}
                        <div class="row justify-content-center">
                          <div class="col-sm-12">
                                <label for="nomeTrabalho" class="col-form-label">{{ __('Nome do Projeto:') }}</label>
                                <input id="nomeTrabalho" type="text" class="form-control @error('nomeTrabalho') is-invalid @enderror" name="nomeProjeto" value="{{ old('nomeTrabalho') }}" required autocomplete="nomeTrabalho" autofocus>

                                @error('nomeTrabalho')
                                <span class="invalid-feedback" role="alert">
                                    <strong>{{ $message }}</strong>
                                </span>
                                @enderror
                            </div>
                        </div>
                        
                        {{-- Grande Area --}}
                        <div class="row justify-content-center">
                            <div class="col-sm-4">
                                <label for="grandeArea" class="col-form-label">{{ __('Grande Área:') }}</label>
                                <select class="form-control @error('grandeArea') is-invalid @enderror" id="grandeArea" name="grandeAreaId">
                                    <option value="" disabled selected hidden>-- Grande Área --</option>
                                    @foreach($grandeAreas as $grandeArea)
                                      <option value="{{$grandeArea->id}}">{{$grandeArea->nome}}</option>
                                    @endforeach
                                </select>

                                @error('grandeAreaId')
                                <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                                  <strong>{{ $message }}</strong>
                                </span>
                                @enderror
                            </div>
                            <div class="col-sm-4">
                                <label for="area" class="col-form-label">{{ __('Área:') }}</label>
                                <select class="form-control @error('area') is-invalid @enderror" id="area" name="areaId">
                                    <option value="" disabled selected hidden>-- Área --</option>
                                    @foreach($areas as $area)
                                      <option value="{{$area->id}}">{{$area->nome}}</option>
                                    @endforeach
                                </select>

                                @error('areaId')
                                <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                                  <strong>{{ $message }}</strong>
                                </span>
                                @enderror
                            </div>
                            <div class="col-sm-4">
                                <label for="subArea" class="col-form-label">{{ __('Sub Área:') }}</label>
                                <select class="form-control @error('subArea') is-invalid @enderror" id="subArea" name="subAreaId">
                                    <option value="" disabled selected hidden>-- Sub Área --</option>
                                    @foreach($subAreas as $subArea)
                                      <option value="{{$subArea->id}}">{{$subArea->nome}}</option>
                                    @endforeach
                                </select>

                                @error('subAreaId')
                                <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                                  <strong>{{ $message }}</strong>
                                </span>
                                @enderror
                            </div>
                        </div>


                        

                        
                        

                        

                        <hr>
                        <h3>Coordenador</h3>

                        {{-- Coordenador  --}}
                        <div class="row justify-content-center">
                            
                          <div class="col-sm-6">
                              <label for="nomeCoordenador" class="col-form-label">{{ __('Coordenador:') }}</label>
                              <input class="form-control" type="text" id="nomeCoordenador" name="nomeCoordenador" disabled="disabled" value="{{ Auth()->user()->name }}">
                          </div>
                          <div class="col-sm-6">
                              <label for="nomeTrabalho" class="col-form-label">{{ __('Pontuação da Planilha de Pontuação :') }}</label>
                              <input class="form-control" type="text" name="pontuacaoPlanilha">
                          </div>
                          <div class="col-sm-6">
                              <label for="nomeTrabalho" class="col-form-label">{{ __('Link do grupo de pesquisa:') }}</label>
                              <input class="form-control" type="text" name="linkGrupo">
                          </div>
                          <div class="col-sm-6">
                              <label for="nomeTrabalho" class="col-form-label">Link Lattes do Estudante</label>
                              <input class="form-control" type="text" name="linkLattesEstudante">
                          </div>
                        </div>

                        

                        {{-- Pontuação da Planilha de Pontuação  --}}
                        <div class="row justify-content-center mt-2">
                            {{-- Nome Trabalho  --}}
                          
                        </div>

                        

                        {{-- Link do grupo de pesquisa  --}}
                        <div class="row justify-content-center mb-3">                            
                          
                        </div>

                        {{-- Link do grupo de pesquisa  --}}
                        <div class="row justify-content-center mb-3">                            
                          
                        </div>

                        <hr>
                        <h3>Anexos</h3>

                        {{-- Anexo do Projeto --}}
                        <div class="row justify-content-center">
                          {{-- Arquivo  --}}
                          <div class="col-sm-6" >
                            <label for="anexoProjeto" class="col-form-label">{{ __('Anexo Projeto:') }}</label>

                            <div class="input-group">
                              
                              <div class="custom-file">
                                <input type="file" class="custom-file-input" id="anexoProjeto"
                                  aria-describedby="inputGroupFileAddon01" name="anexoProjeto">
                                <label class="custom-file-label" id="custom-file-label" for="anexoProjeto">O arquivo deve ser no formato PDF de até 2mb.</label>
                              </div>
                            </div>
                            @error('anexoProjeto')
                            <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                              <strong>{{ $message }}</strong>
                            </span>
                            @enderror
                          </div>

                          <div class="col-sm-6" >
                            <label for="anexoLatterCoordenador" class="col-form-label">{{ __('Anexo do Lattes do Coordenador:') }}</label>

                            <div class="input-group">
                              
                              <div class="custom-file">
                                <input type="file" class="custom-file-input" id="inputGroupFile01"
                                  aria-describedby="anexoLatterCoordenador" name="anexoLatterCoordenador">
                                <label class="custom-file-label" id="custom-file-label" for="inputGroupFile01">O arquivo deve ser no formato PDF de até 2mb.</label>
                              </div>
                            </div>
                            @error('arquivo')
                            <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                              <strong>{{ $message }}</strong>
                            </span>
                            @enderror
                          </div>

                          <div class="col-sm-6" >
                            <label for="nomeTrabalho" class="col-form-label">{{ __('Autorização do Comitê de Ética:') }}</label>

                            <div class="input-group">
                              
                              <div class="custom-file">
                                <input type="file" class="custom-file-input" id="inputGroupFile01"
                                  aria-describedby="inputGroupFileAddon01" name="anexoComiteEtica">
                                <label class="custom-file-label" id="custom-file-label" for="inputGroupFile01">O arquivo deve ser no formato PDF de até 2mb.</label>
                              </div>
                            </div>
                            @error('arquivo')
                            <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                              <strong>{{ $message }}</strong>
                            </span>
                            @enderror
                          </div>

                          <div class="col-sm-6" >
                            <label for="anexoPlanilha" class="col-form-label">{{ __('Anexo do Planilha de Pontuação :') }}</label>

                            <div class="input-group">
                              
                              <div class="custom-file">
                                <input type="file" class="custom-file-input" id="anexoPlanilha"
                                  aria-describedby="anexoPlanilhaDescribe" name="anexoPlanilha">
                                <label class="custom-file-label" id="custom-file-label" for="anexoPlanilha">O arquivo deve ser no formato PDF de até 2mb.</label>
                              </div>
                            </div>
                            @error('arquivo')
                            <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                              <strong>{{ $message }}</strong>
                            </span>
                            @enderror
                          </div>
                        </div>

                        
                        
                        @if($edital->tipo == 'PIBIC' || $edital->tipo == 'PIBIC-EM')
                          {{-- Decisão do CONSU --}}
                          <div class="row justify-content-center">
                            {{-- Arquivo  --}}
                            <div class="col-sm-12" >
                              <label for="anexoCONSU" class="col-form-label">{{ __('Decisão do CONSU:') }}</label>

                              <div class="input-group">
                                
                                <div class="custom-file">
                                  <input type="file" class="custom-file-input" id="anexoCONSU"
                                    aria-describedby="inputGroupFileAddon01" name="anexoCONSU">
                                  <label class="custom-file-label" id="custom-file-label" for="inputGroupFile01">O arquivo deve ser no formato PDF de até 2mb.</label>
                                </div>
                              </div>
                              @error('arquivo')
                              <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                                <strong>{{ $message }}</strong>
                              </span>
                              @enderror
                            </div>
                          </div>
                        @endif


                        <hr>
                        <h4>Participantes</h4>

                        {{-- Participantes  --}}
                        <div class="row" style="margin-top:20px">
                          <div class="col-sm-12">
                            <div id="participantes">

                              <div class="row">
                                <div class="col-sm-5">
                                    <label>Nome Completo</label>
                                    <input type="text" style="margin-bottom:10px" class="form-control emailCoautor" name="nomeParticipante[]" placeholder="Nome" required>
                                </div>
                                <div class="col-sm-4">
                                    <label>E-mail</label>
                                    <input type="email" style="margin-bottom:10px" class="form-control emailCoautor" name="emailParticipante[]" placeholder="E-mail" required>
                                </div>
                                <div class="col-sm-2">
                                    <label for="funcaoParticipante" class="col-form-label">{{ __('Função:') }}</label>
                                <select class="form-control @error('funcaoParticipante') is-invalid @enderror" id="funcaoParticipante" name="funcaoParticipante[]">
                                    <option value="" disabled selected hidden>-- Função --</option>
                                    @foreach($funcaoParticipantes as $funcaoParticipante)
                                      <option value="{{$funcaoParticipante->id}}">{{$funcaoParticipante->nome}}</option>
                                    @endforeach
                                </select>
                                </div>
                                <div class="col-sm-1">
                                    <a  class="delete">
                                      <img src="/img/icons/user-times-solid.svg" style="width:25px;margin-top:35px">
                                    </a>
                                </div>
                            </div>

                            <div class="row">
                                <div class="col-sm-5">
                                    <label>Nome Completo</label>
                                    <input type="text" style="margin-bottom:10px" class="form-control emailCoautor" name="nomeParticipante[]" placeholder="Nome" required>
                                </div>
                                <div class="col-sm-4">
                                    <label>E-mail</label>
                                    <input type="email" style="margin-bottom:10px" class="form-control emailCoautor" name="emailParticipante[]" placeholder="E-mail" required>
                                </div>
                                <div class="col-sm-2">
                                    <label for="funcaoParticipante" class="col-form-label">{{ __('Função:') }}</label>
                                <select class="form-control @error('funcaoParticipante') is-invalid @enderror" id="funcaoParticipante" name="funcaoParticipante[]">
                                    <option value="" disabled selected hidden>-- Função --</option>
                                    @foreach($funcaoParticipantes as $funcaoParticipante)
                                      <option value="{{$funcaoParticipante->id}}">{{$funcaoParticipante->nome}}</option>
                                    @endforeach
                                </select>
                                </div>
                                <div class="col-sm-1">
                                    <a  class="delete">
                                      <img src="/img/icons/user-times-solid.svg" style="width:25px;margin-top:35px">
                                    </a>
                                </div>
                            </div>

                            </div>
                            <a href="#" class="btn btn-primary" id="addCoautor" style="width:100%;margin-top:10px">Participantes +</a>
                          </div>
                        </div>

                        {{-- Plano de Trabalho  --}}
                        <h4 class="mt-3" >Plano de Trabalho</h4>
                        <div class="row" style="margin-top:20px">
                          <div class="col-sm-12">
                            <div id="planoTrabalho">  
                                <div class="row">
                                  <div class="col-sm-4">
                                      <label>Titulo </label>
                                      <input type="text" style="margin-bottom:10px" class="form-control emailCoautor" name="nomePlanoTrabalho[]" placeholder="Nome" required>
                                  </div> 
                                    {{-- Arquivo  --}}
                                    <div class="col-sm-7">
                                      <label for="nomeTrabalho" >Anexo</label>
                                      <div class="input-group"  >
                                        <div class="input-group-prepend">
                                          <span class="input-group-text" id="anexoPlanoTrabalho">Selecione um arquivo:</span>
                                        </div>
                                        <div class="custom-file">
                                          <input type="file" class="custom-file-input" id="anexoPlanoTrabalho"
                                            aria-describedby="anexoPlanoTrabalho" name="anexoPlanoTrabalho[]">
                                          <label class="custom-file-label" id="custom-file-label" for="inputGroupFile01">O arquivo deve ser no formato PDF de até 2mb.</label>
                                        </div>
                                      </div>
                                      @error('anexoPlanoTrabalho')
                                      <span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
                                        <strong>{{ $message }}</strong>
                                      </span>
                                      @enderror
                                    </div>
                                    <div class="col-sm-1">
                                      <a  class="deletePlano">
                                        <img src="/img/icons/user-times-solid.svg" style="width:25px;margin-top:35px">
                                      </a>
                                  </div>
                              
                                  
                                </div>                              
                            </div>
                            <a href="#" class="btn btn-primary" id="addPlanoTrabalho" style="width:100%;margin-top:10px">Plano de Trabalho +</a>
                          </div>
                        </div>

                    </p>
                    <div class="row justify-content-center">
                        <div class="col-md-6">
                            <a href="{{route('evento.visualizar',['id'=>$edital->id])}}" class="btn btn-secondary" style="width:100%">Cancelar</a>
                        </div>
                        <div class="col-md-6">
                            <button type="submit" class="btn btn-primary" style="width:100%">
                                {{ __('Enviar') }}
                            </button>
                        </div>
                    </div>
                    </form>
                </div>
              </div>
        </div>
    </div>

</div>
@endsection

@section('javascript')
<script type="text/javascript">

  
  $(function(){
    var qtdLinhas = 1;
    var qtdParticipantes = 2;
    // Coautores
    $('#addCoautor').click(function(e){

      if(qtdParticipantes < 100){
        e.preventDefault();
        linha = montarLinhaInput();
        $('#participantes').append(linha);
        qtdParticipantes++
      }
      
    });

    $('#addPlanoTrabalho').click(function(e){
      e.preventDefault();
      if(qtdLinhas < 4){
        linha = montarLinhaInputPlanoTrabalho();
        $('#planoTrabalho').append(linha);
        qtdLinhas++;
      }
      
    });

    // Exibir modalidade de acordo com a área
    $("#area").change(function(){
      console.log($(this).val());
      addModalidade($(this).val());
    });
    $(document).on('click','.delete',function(){
        if(qtdParticipantes > 2){
          qtdParticipantes--;
          $(this).closest('.row').remove();
            return false;
        }    
    });
    $(document).on('click','.deletePlano',function(){
        if(qtdLinhas > 1){
          qtdLinhas--;
          $("#planoTrabalho div.row:last").remove();
            return false;
        }    
    });
    $('#anexoProjeto').on('change',function(){
        //get the file name
        var fileName = $(this).val();        
        //replace the "Choose a file" label
        $(this).next('#custom-file-label').html(fileName);
    })


  });
  // Remover Coautor
  

  function addModalidade(areaId){
    console.log(modalidades)
    $("#modalidade").empty();
    for(let i = 0; i < modalidades.length; i++){
      if(modalidades[i].areaId == areaId){
        console.log(modalidades[i]);
        $("#modalidade").append("<option value="+modalidades[i].modalidadeId+">"+modalidades[i].modalidadeNome+"</option>")
      }
    }
  }
  function montarLinhaInput(){

    return  "<div class="+"row"+">"+
                "<div class="+"col-sm-5"+">"+
                    "<label>Nome Completo</label>"+
                    "<input"+" type="+'text'+" style="+"margin-bottom:10px"+" class="+'form-control emailCoautor'+" name="+'nomeParticipante[]'+" placeholder="+"Nome"+" required>"+
                "</div>"+
                "<div class="+"col-sm-4"+">"+
                    "<label>E-mail</label>"+
                    "<input"+" type="+'email'+" style="+"margin-bottom:10px"+" class="+'form-control emailCoautor'+" name="+'emailParticipante[]'+" placeholder="+"E-mail"+" required>"+
                "</div>"+
                "<div class='col-sm-2'>"+
                  "<label for='funcaoParticipante' class='col-form-label'>Função:</label>"+
                "<select class="+"form-control @error('funcaoParticipante') is-invalid @enderror"+" id="+"funcaoParticipante"+"name="+"funcaoParticipante[]"+">"+
                    "<option value='' disabled selected hidden> Função </option>"+
                    "@foreach($funcaoParticipantes as $funcaoParticipante)"+
                      "<option value='{{$funcaoParticipante->id}}'>{{$funcaoParticipante->nome}}</option>"+
                    "@endforeach"+
                "</select>"+
                "</div>"+
                "<div class="+"col-sm-1"+">"+
                    "<a  class="+"delete"+">"+
                      "<img src="+"/img/icons/user-times-solid.svg"+" style="+"width:25px;margin-top:35px"+">"+
                    "</a>"+
                "</div>"+
            "</div>";
  }
  function montarLinhaInputPlanoTrabalho(){

    return  "<div class="+"row"+">"+
                "<div class="+"col-sm-4"+">"+
                    "<label>Nome Completo</label>"+
                    "<input"+" type="+'text'+" style="+"margin-bottom:10px"+" class="+'form-control emailCoautor'+" name="+'nomePlanoTrabalho[]'+" placeholder="+"Nome"+" required>"+
                "</div>"+
                "<div class="+"col-sm-7" +">"+
                  "<label for="+"nomeTrabalho"+">Anexo </label>"+

                  "<div class="+"input-group"+">"+
                    "<div class='input-group-prepend'>"+
                      "<span class='input-group-text' id='inputGroupFileAddon01'>Selecione um arquivo:</span>"+
                    "</div>"+
                    "<div class='custom-file'>"+
                      "<input type='file' class='custom-file-input' id='inputGroupFile01'"+
                        "aria-describedby='inputGroupFileAddon01' name='anexoPlanoTrabalho[]'>"+
                      "<label class='custom-file-label' id='custom-file-label' for='inputGroupFile01'>O arquivo deve ser no formato PDF de até 2mb.</label>"+
                    "</div>"+
                  "</div>"+
                  "@error('arquivo')"+
                  "<span class='invalid-feedback' role='alert' style='overflow: visible; display:block'>"+
                    "<strong>{{ $message }}</strong>"+
                  "</span>"+
                  "@enderror"+
                "</div>"+                 
                "<div class="+"col-sm-1"+">"+
                    "<a class="+"deletePlano"+">"+
                      "<img src="+"/img/icons/user-times-solid.svg"+" style="+"width:25px;margin-top:35px"+">"+
                    "</a>"+
                "</div>"+
            "</div>";
  }

</script>
@endsection