Progress Bar Using Web Application In TypeScript

Introduction

 
A progress bar is a component in a GUI. It used to visualize the progression of an extended computer operation, such as a file transfer, download or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format. In this article, we will create a progress bar using TypeScript.
 
The following example shows how to use a progress bar in TypeScript. In this example, we develop a progress function and this function calls an unload event of the window so when the page is loaded the progress function will be called. In this function, first we change the color of the first column, then we call another progress1 function using setTimeout and then we change the color of the second column and so on.
 
Step 1
Open Visual Studio 2012 and click "File" -> "New" -> "Project...". A window is opened. In this window, click "HTML Application for TypeScript" under Visual C#.
 
Give the name of your application as "ProgressBar" and then click "Ok".
 
Step 2
After Step 1, right-click on "ProgressBar". A pop up window is opened. Click on "Add" -> "New Item" -> "Web From". Give the name of your WebForm "ProgressBar_Demo.aspx" and then click "Ok".
 
Step 3
After this session the project has been created; a new window is opened on the right side. This window is called the Solution Explorer. The Solution Explorer contains the ts file, js file, CSS file, and aspx files.
 

Coding

 
app.ts
  1. class Progress_bar {  
  2.  progress() {  
  3.   document.getElementById('td1').style.backgroundColor = '#82E1BD';  
  4.   setTimeout(() => {  
  5.    this.progress1();  
  6.   }, 300);  
  7.  }  
  8.  progress1() {  
  9.   document.getElementById('td2').style.backgroundColor = '#82E1BD';  
  10.   setTimeout(() => {  
  11.    this.progress2();  
  12.   }, 300);  
  13.  }  
  14.  progress2() {  
  15.   document.getElementById('td3').style.backgroundColor = '#82E1BD';  
  16.   setTimeout(() => {  
  17.    this.progress3();  
  18.   }, 300);  
  19.  }  
  20.  progress3() {  
  21.   document.getElementById('td4').style.backgroundColor = '#82E1BD';  
  22.   setTimeout(() => {  
  23.    this.progress4();  
  24.   }, 300);  
  25.  }  
  26.  progress4() {  
  27.   document.getElementById('td5').style.backgroundColor = '#82E1BD';  
  28.   setTimeout(() => {  
  29.    this.progress5();  
  30.   }, 300);  
  31.  }  
  32.  progress5() {  
  33.   document.getElementById('td6').style.backgroundColor = '#82E1BD';  
  34.   setTimeout(() => {  
  35.    this.progress6();  
  36.   }, 300);  
  37.  }  
  38.  progress6() {  
  39.   document.getElementById('td7').style.backgroundColor = '#82E1BD';  
  40.   setTimeout(() => {  
  41.    this.progress7();  
  42.   }, 300);  
  43.  }  
  44.  progress7() {  
  45.   document.getElementById('td8').style.backgroundColor = '#82E1BD';  
  46.   setTimeout(() => {  
  47.    this.progress();  
  48.   }, 300);  
  49.  }  
  50.  progress8() {  
  51.   document.getElementById('td8').style.backgroundColor = '#82E1BD';  
  52.  }  
  53. }  
  54. window.onload = () => {  
  55.  var obj = new Progress_bar();  
  56.  obj.progress();  
  57. };  
ProgressBar_Demo.aspx
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProgressBar_Demo.aspx.cs" Inherits="ProgressBar.ProgressBar_Demo" %>  
  2.  <  
  3.  !DOCTYPE html >  
  4.  <  
  5.  html xmlns = "http://www.w3.org/1999/xhtml" >  
  6.  <  
  7.  head runat = "server" >  
  8.  <  
  9.  title > < /title>  
  10.  <  
  11.  script src = "app.js" > < /script>  
  12.  <  
  13.  style type = "text/css" >  
  14.  .auto - style1 {  
  15.   width: 111 px;  
  16.  }  
  17.  .auto - style2 {  
  18.   width: 11 px;  
  19.  }  
  20.  <  
  21.  /style>  
  22.  <  
  23.  /head>  
  24.  <  
  25.  body >  
  26.  <  
  27.  form id = "form1"  
  28. runat = "server" >  
  29.  <  
  30.  div style = "border-style: none; color: #0000FF; font-style: italic; font-weight: normal; font-size: x-large;" >  
  31.  ProgressBar in TypeScript < br / >  
  32.  <  
  33.  table style = "border-style:none"  
  34. class = "auto-style1" >  
  35.  <  
  36.  tr >  
  37.  <  
  38.  td id = "td1"  
  39. style = "border-style:none; color: #000000;"  
  40. class = "style8" > L < /td>  
  41.  <  
  42.  td id = "td2"  
  43. style = "border-style:none; color: #000000;"  
  44. class = "auto-style2" > o < /td>  
  45.  <  
  46.  td id = "td3"  
  47. style = "border-style:none; color: #000000;"  
  48. class = "auto-style2" > a < /td>  
  49.  <  
  50.  td id = "td4"  
  51. style = "border-style:none; color: #000000;"  
  52. class = "auto-style2" > d < /td>  
  53.  <  
  54.  td id = "td5"  
  55. style = "border-style:none; color: #000000;"  
  56. class = "auto-style2" > i < /td>  
  57.  <  
  58.  td id = "td6"  
  59. style = "border-style:none; color: #000000;"  
  60. class = "auto-style2" > n < /td>  
  61.  <  
  62.  td id = "td7"  
  63. style = "border-style:none; color: #000000;"  
  64. class = "auto-style2" > g < /td>  
  65.  <  
  66.  td id = "td8"  
  67. style = "border-style:none; color: #000000;"  
  68. class = "auto-style2" > ... < /td>  
  69.  <  
  70.  /tr>  
  71.  <  
  72.  /table>  
  73.  <  
  74.  /div>  
  75.  <  
  76.  /form>  
  77.  <  
  78.  /body>  
  79.  <  
  80.  /html>  
app.js
  1. var Progress_bar = (function() {  
  2.  function Progress_bar() {}  
  3.  Progress_bar.prototype.progress = function() {  
  4.   var _this = this;  
  5.   document.getElementById('td1').style.backgroundColor = '#82E1BD';  
  6.   setTimeout(function() {  
  7.    _this.progress1();  
  8.   }, 300);  
  9.  };  
  10.  Progress_bar.prototype.progress1 = function() {  
  11.   var _this = this;  
  12.   document.getElementById('td2').style.backgroundColor = '#82E1BD';  
  13.   setTimeout(function() {  
  14.    _this.progress2();  
  15.   }, 300);  
  16.  };  
  17.  Progress_bar.prototype.progress2 = function() {  
  18.   var _this = this;  
  19.   document.getElementById('td3').style.backgroundColor = '#82E1BD';  
  20.   setTimeout(function() {  
  21.    _this.progress3();  
  22.   }, 300);  
  23.  };  
  24.  Progress_bar.prototype.progress3 = function() {  
  25.   var _this = this;  
  26.   document.getElementById('td4').style.backgroundColor = '#82E1BD';  
  27.   setTimeout(function() {  
  28.    _this.progress4();  
  29.   }, 300);  
  30.  };  
  31.  Progress_bar.prototype.progress4 = function() {  
  32.   var _this = this;  
  33.   document.getElementById('td5').style.backgroundColor = '#82E1BD';  
  34.   setTimeout(function() {  
  35.    _this.progress5();  
  36.   }, 300);  
  37.  };  
  38.  Progress_bar.prototype.progress5 = function() {  
  39.   var _this = this;  
  40.   document.getElementById('td6').style.backgroundColor = '#82E1BD';  
  41.   setTimeout(function() {  
  42.    _this.progress6();  
  43.   }, 300);  
  44.  };  
  45.  Progress_bar.prototype.progress6 = function() {  
  46.   var _this = this;  
  47.   document.getElementById('td7').style.backgroundColor = '#82E1BD';  
  48.   setTimeout(function() {  
  49.    _this.progress7();  
  50.   }, 300);  
  51.  };  
  52.  Progress_bar.prototype.progress7 = function() {  
  53.   var _this = this;  
  54.   document.getElementById('td8').style.backgroundColor = '#82E1BD';  
  55.   setTimeout(function() {  
  56.    _this.progress();  
  57.   }, 300);  
  58.  };  
  59.  Progress_bar.prototype.progress8 = function() {  
  60.   document.getElementById('td8').style.backgroundColor = '#82E1BD';  
  61.  };  
  62.  return Progress_bar;  
  63. })();  
  64. window.onload = function() {  
  65.  var obj = new Progress_bar();  
  66.  obj.progress();  
  67. };  
Output
 
Animation1.gif
 
Referenced By
 
http://www.typescriptlang.org/


Similar Articles