107 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <title>Welcome to HyperDev!</title>
 | 
						|
    <meta name="description" content="A cool thing made with HyperDev">
 | 
						|
    <link id="favicon" rel="icon" href="https://hyperdev.com/favicon-app.ico" type="image/x-icon">
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <link rel="stylesheet" href="/public/style.css">
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <header>
 | 
						|
      <h1 id='projectTitle'></h1>
 | 
						|
    </header>
 | 
						|
    <center>
 | 
						|
      <div id='submitNewIssue'>
 | 
						|
        <br>
 | 
						|
        <h3>Submit a new issue:</h3>
 | 
						|
        <form id="newIssue" method="post" action="/api/">
 | 
						|
          <input type="text" name="issue_title" placeholder="*Title" style="width: 320px; margin-bottom: 3px;" required=''><br>
 | 
						|
          <textarea type="text" name="issue_text" placeholder="*Text" style="width: 320px; height: 100px;" required=''></textarea><br>
 | 
						|
          <input type="text" name="created_by" placeholder="*Created by" style="width: 100px" required=''>
 | 
						|
          <input type="text" name="assigned_to" placeholder="(opt)Assigned to" style="width: 100px">
 | 
						|
          <input type="text" name="status_text" placeholder="(opt)Status text" style="width: 100px"><br>
 | 
						|
          <button type="submit">Submit Issue</button>
 | 
						|
        </form>
 | 
						|
      </div>
 | 
						|
      
 | 
						|
      <div id='issueDisplay'></div>
 | 
						|
      
 | 
						|
      <hr style='margin: 50px; margin-top: 200px'>
 | 
						|
    </center>
 | 
						|
    
 | 
						|
    <script src="https://code.jquery.com/jquery-2.2.1.min.js"
 | 
						|
            integrity="sha256-gvQgAFzTH6trSrAWoH1iPo9Xc96QxSZ3feW6kem+O00="
 | 
						|
            crossorigin="anonymous"></script>
 | 
						|
    <script>
 | 
						|
      $(function() {
 | 
						|
        var currentProject = window.location.pathname.replace(/\//g, "");;
 | 
						|
        var url = "/api/issues/"+currentProject;
 | 
						|
        $('#projectTitle').text('All issues for: '+currentProject)
 | 
						|
        $.ajax({
 | 
						|
          type: "GET",
 | 
						|
          url: url,
 | 
						|
          success: function(data)
 | 
						|
          {
 | 
						|
            var issues= [];
 | 
						|
            data.forEach(function(ele) {
 | 
						|
              console.log(ele);
 | 
						|
              var openstatus;
 | 
						|
              (ele.open) ? openstatus = 'open' : openstatus = 'closed';
 | 
						|
              var single = [
 | 
						|
                '<div class="issue '+openstatus+'">',
 | 
						|
                '<p class="id">id: '+ele._id+'</p>',
 | 
						|
                '<h3>'+ele.issue_title+' -  ('+openstatus+')</h3>',
 | 
						|
                '<br>',
 | 
						|
                '<p>'+ele.issue_text+'</p>',
 | 
						|
                '<p>'+ele.status_text+'</p>',
 | 
						|
                '<br>',
 | 
						|
                '<p class="id"><b>Created by:</b> '+ele.created_by+'  <b>Assigned to:</b> '+ele.assigned_to,
 | 
						|
                '<p class="id"><b>Created on:</b> '+ele.created_on+'  <b>Last updated:</b> '+ele.updated_on,
 | 
						|
                '<br><a href="#" class="closeIssue" id="'+ele._id+'">close?</a> <a href="#" class="deleteIssue" id="'+ele._id+'">delete?</a>',
 | 
						|
                '</div>'
 | 
						|
                
 | 
						|
              ];
 | 
						|
              issues.push(single.join(''));
 | 
						|
            });
 | 
						|
            $('#issueDisplay').html(issues.join(''));
 | 
						|
          }
 | 
						|
        });
 | 
						|
        
 | 
						|
        $('#newIssue').submit(function(e){
 | 
						|
          e.preventDefault();
 | 
						|
          $(this).attr('action', "/api/issues/" + currentProject);
 | 
						|
          $.ajax({
 | 
						|
            type: "POST",
 | 
						|
            url: url,
 | 
						|
            data: $(this).serialize(),
 | 
						|
            success: function(data) { window.location.reload(true); }
 | 
						|
          });
 | 
						|
        });
 | 
						|
        
 | 
						|
        $('#issueDisplay').on('click','.closeIssue', function(e) {
 | 
						|
          var url = "/api/issues/"+currentProject;
 | 
						|
          $.ajax({
 | 
						|
            type: "PUT",
 | 
						|
            url: url,
 | 
						|
            data: {_id: $(this).attr('id'), open: false},
 | 
						|
            success: function(data) { alert(data); window.location.reload(true); }
 | 
						|
          });
 | 
						|
          e.preventDefault();
 | 
						|
        });
 | 
						|
        $('#issueDisplay').on('click','.deleteIssue', function(e) {
 | 
						|
          var url = "/api/issues/"+currentProject;
 | 
						|
          $.ajax({
 | 
						|
            type: "DELETE",
 | 
						|
            url: url,
 | 
						|
            data: {_id: $(this).attr('id')},
 | 
						|
            success: function(data) { alert(data); window.location.reload(true); }
 | 
						|
          });
 | 
						|
          e.preventDefault();
 | 
						|
        });
 | 
						|
      });
 | 
						|
   </script>
 | 
						|
  </body>
 | 
						|
</html> |