How to use setState method in wpt

Best JavaScript code snippet using wpt

Sgpa_calculator.js

Source:Sgpa_calculator.js Github

copy

Full Screen

...48 }49 handlenum1=(event)=>{50 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');51 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');52 this.setState({53 m1:event.target.value,54 print:false,55 });56 }57 handleChange2=(event)=>{58 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');59 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');60 this.setState({61 m2:event.target.value,62 print:false,63 });64}65handleChange3=(event)=>{66 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');67 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');68 this.setState({69 m3:event.target.value,70 print:false,71 });72}73handleChange4=(event)=>{74 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');75 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');76 this.setState({77 m4:event.target.value,78 print:false,79 });80}81handleChange5=(event)=>{82 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');83 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');84 this.setState({85 m5:event.target.value,86 print:false,87 });88}89handleChange6=(event)=>{90 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');91 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');92 this.setState({93 m6:event.target.value,94 print:false,95 });96}97handleChange7=(event)=>{98 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');99 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');100 this.setState({101 m7:event.target.value,102 print:false,103 });104}105handleChange8=(event)=>{106 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');107 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');108 this.setState({109 m8:event.target.value,110 print:false,111 });112}113handleChange9=(event)=>{114 (event.target.value>100 || event.target.value<0) ? alert("You can only insert value in range of 0 to 100") : console.log('hello');115 (event.target.value>100 || event.target.value<0) ? event.target.value=0 : console.log('hello');116 this.setState({117 m9:event.target.value,118 print:false,119 });120}121exe=(event)=>{122 event.preventDefault();123 if(this.state.m1==='')124 {125 (this.setState({x1:0}))126 }127 else128 {129 ((Number(this.state.m1)===100)? this.setState({x1:10}):this.setState({x1:Number(Math.floor(this.state.m1/10))+1}));130 }131 if(this.state.m2==='')132 {133 (this.setState({x2:0}))134 }135 else136 {137 ((Number(this.state.m2)===100)? this.setState({x2:10}):this.setState({x2:Number(Math.floor(this.state.m2/10))+1}));138 }139 if(this.state.m3==='')140 {141 (this.setState({x3:0}))142 }143 else144 {145 ((Number(this.state.m3)===100)? this.setState({x3:10}):this.setState({x3:Number(Math.floor(this.state.m3/10))+1}));146 }147 if(this.state.m4==='')148 {149 (this.setState({x4:0}))150 }151 else152 {153 ((Number(this.state.m4)===100)? this.setState({x4:10}):this.setState({x4:Number(Math.floor(this.state.m4/10))+1}));154 }155 if(this.state.m5==='')156 {157 (this.setState({x5:0}))158 }159 else160 {161 ((Number(this.state.m5)===100)? this.setState({x5:10}):this.setState({x5:Number(Math.floor(this.state.m5/10))+1}));162 }163 if(this.state.m6==='')164 {165 (this.setState({x6:0}))166 }167 else168 {169 ((Number(this.state.m6)===100)? this.setState({x6:10}):this.setState({x6:Number(Math.floor(this.state.m6/10))+1}));170 }171 if(this.state.m7==='')172 {173 (this.setState({x7:0}))174 }175 else176 {177 ((Number(this.state.m7)===100)? this.setState({x7:10}):this.setState({x7:Number(Math.floor(this.state.m7/10))+1}));178 }179 if(this.state.m8==='')180 {181 (this.setState({x8:0}))182 }183 else184 {185 ((Number(this.state.m8)===100)? this.setState({x8:10}):this.setState({x8:Number(Math.floor(this.state.m8/10))+1}));186 }187 if(this.state.m9==='')188 {189 (this.setState({x9:0}))190 }191 else192 {193 ((Number(this.state.m9)===100)? this.setState({x9:10}):this.setState({x9:Number(Math.floor(this.state.m9/10))+1}));194 }195 196 // (this.state.m2==='')?(this.setState({x2:0})):((this.state.m2==='100')? this.setState({x2:10}):this.setState({x2:Number(Math.floor(this.state.m2/10))+1}))197 // (this.state.m3==='')?(this.setState({x3:0})):((this.state.m3==='100')? this.setState({x3:10}):this.setState({x3:Number(Math.floor(this.state.m3/10))+1}))198 // (this.state.m4==='')?(this.setState({x4:0})):((this.state.m4==='100')? this.setState({x4:10}):this.setState({x4:Number(Math.floor(this.state.m4/10))+1}))199 // (this.state.m5==='')?(this.setState({x5:0})):((this.state.m5==='100')? this.setState({x5:10}):this.setState({x5:Number(Math.floor(this.state.m5/10))+1}))200 // (this.state.m6==='')?(this.setState({x6:0})):((this.state.m6==='100')? this.setState({x6:10}):this.setState({x6:Number(Math.floor(this.state.m6/10))+1}))201 // (this.state.m7==='')?(this.setState({x7:0})):((this.state.m7==='100')? this.setState({x7:10}):this.setState({x7:Number(Math.floor(this.state.m7/10))+1}))202 // (this.state.m8==='')?(this.setState({x8:0})):((this.state.m8==='100')? this.setState({x8:10}):this.setState({x8:Number(Math.floor(this.state.m8/10))+1}))203 // (this.state.m9==='')?(this.setState({x9:0})):((this.state.m9==='100')? this.setState({x9:10}):this.setState({x9:Number(Math.floor(this.state.m9/10))+1}))204 this.setState({205 t2:(Number(this.state.c1)+Number(this.state.c2)+Number(this.state.c3)+Number(this.state.c4)+Number(this.state.c5)+Number(this.state.c6)+Number(this.state.c7)+Number(this.state.c8)+Number(this.state.c9))206 });207 this.setState({ print:true});208}209 render(){210 if(this.props.brch==='' || this.props.sem===''){211 console.log('return');212 return <Redirect to="/home" />213 }214 console.log(this.props.brch);215 console.log(this.props.sem);216 if (this.props.sem ==='1st & 2nd SEM PHYSICS-CYCLE') {217 if(this.state.Title!=='(2018 SCHEME) PHYSICS GROUP 1ST & 2ND SEM.'){218 this.setState({219 Title:"(2018 SCHEME) PHYSICS GROUP 1ST & 2ND SEM.",220 sub1:"18MAT11/21",221 c1:'4',222 sub2:"18PHY12/22",223 c2:'4',224 sub3:"18ELE13/23",225 c3:'3',226 sub4:"18CIV14/24",227 c4:'3',228 sub5:"18EGDL15/25",229 c5:'3',230 sub6:"18PHYL16/26",231 c6:'1',232 sub7:"18ELEL17/27",233 c7:'1',234 sub8:"18EGH18/28",235 c8:'1'236 });237 }238 }239 else if (this.props.sem === "1st & 2nd SEM CHEMISTRY-CYCLE") { 240 if(this.state.Title!=='(2018 SCHEME) CHEMISTRY GROUP 1ST & 2ND SEM.'){241 this.setState({Title:("(2018 SCHEME) CHEMISTRY GROUP 1ST & 2ND SEM.")})242 this.setState({243 c1:'4',244 c2:'4',245 c3:'3',246 c4:'3',247 c5:'3',248 c6:'1',249 c7:'1',250 c8:'1'251 })252 this.setState({sub1:("18MAT11/21")})253 254 this.setState({sub2:("18CHE12")})255 this.setState({sub3:("18CPS13")})256 this.setState({sub4:("18ELN14")})257 this.setState({sub5:("18ME15")})258 this.setState({sub6:("18CHEL16")})259 this.setState({sub7:("18CPL17")})260 this.setState({sub8:("18EGH18")})261 }262 }263 else if (this.props.brch === "cse") {264 switch (this.props.sem) {265 case '3':266 // console.log(sem);267 if(this.state.Title!=='3rd SEM'){268 this.setState({269 c1:'3',270 c2:'4',271 c3:'3',272 c4:'3',273 c5:'3',274 c6:'3',275 c7:'2',276 c8:'2',277 c9:'1'278 })279 this.setState({Title:("3rd SEM")})280 this.setState({sub1:("18MAT31")})281 this.setState({sub2:("18CS32")})282 this.setState({sub3:("18CS33")})283 this.setState({sub4:("18CS34")})284 this.setState({sub5:("18CS35")})285 this.setState({sub6:("18CS36")})286 this.setState({sub7:("18CSL37")})287 this.setState({sub8:("18CSL38")})288 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})289 }290 break;291 case '4':292 if(this.state.Title!=='4th SEM'){293 this.setState({294 c1:'3',295 c2:'4',296 c3:'3',297 c4:'3',298 c5:'3',299 c6:'3',300 c7:'2',301 c8:'2',302 c9:'1'303 })304 this.setState({Title:("4th SEM")})305 this.setState({sub1:("18MAT41")})306 this.setState({sub2:("18CS42")})307 this.setState({sub3:("18CS43")})308 this.setState({sub4:("18CS44")})309 this.setState({sub5:("18CS45")})310 this.setState({sub6:("18CS46")})311 this.setState({sub7:("18CSL47")})312 this.setState({sub8:("18CSL48")})313 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})314 }315 break;316 case '5':317 if(this.state.Title!=='5th SEM'){318 this.setState({319 c1:'3',320 c2:'4',321 c3:'4',322 c4:'3',323 c5:'3',324 c6:'3',325 c7:'2',326 c8:'2',327 c9:'1'328 329 })330 this.setState({Title:("5th SEM")})331 this.setState({sub1:("18MAT51")})332 this.setState({sub2:("18CS52")})333 this.setState({sub3:("18CS53")})334 this.setState({sub4:("18CS54")})335 this.setState({sub5:("18CS55")})336 this.setState({sub6:("18CS56")})337 this.setState({sub7:("18CSL57")})338 this.setState({sub8:("18CSL58")})339 this.setState({sub9:("18CIV59")})340 }341 break;342 case '6':343 if(this.state.Title!=='6th SEM'){344 this.setState({345 c1:'4',346 c2:'4',347 c3:'4',348 c4:'3',349 c5:'3',350 c6:'2',351 c7:'2',352 c8:'2'353 })354 this.setState({Title:("6th SEM")})355 this.setState({sub1:("18IS61")})356 this.setState({sub2:("18IS62")})357 this.setState({sub3:("18CS63")})358 this.setState({sub4:("18CS64X")})359 this.setState({sub5:("18CS65X")})360 this.setState({sub6:("18ISL66")})361 this.setState({sub7:("18ISL67")})362 this.setState({sub8:("18CSMP68")})363 }364 break;365 case '7':366 if(this.state.Title!=='7th SEM'){367 this.setState({368 c1:'4',369 c2:'4',370 c3:'3',371 c4:'3',372 c5:'3',373 c6:'2',374 c7:'1' 375 })376 this.setState({Title:("7th SEM")})377 this.setState({sub1:("18CS71")})378 this.setState({sub2:("18CS72")})379 this.setState({sub3:("18CS73X")})380 this.setState({sub4:("18CS74X")})381 this.setState({sub5:("18CS75X")})382 this.setState({sub6:("18CSL76")})383 this.setState({sub7:("18CSP77")})384 }385 break;386 case '8':387 if(this.state.Title!=='8th SEM'){388 this.setState({389 c1:'3',390 c2:'3',391 c3:'8',392 c4:'1',393 c5:'3'394 395 })396 this.setState({Title:("8th SEM")})397 this.setState({sub1:("18CS81")})398 this.setState({sub2:("18CS82X")})399 this.setState({sub3:("18CSP83")})400 this.setState({sub4:("18CSS84")})401 this.setState({sub5:("18CSI85")})402 }403 break;404 default:405 break;406 }407 }408 else if (this.props.brch === "ece") {409 switch (this.props.sem) {410 case '3':411 if(this.state.Title!=='3rd SEM'){412 this.setState({413 c1:'3',414 c2:'4',415 c3:'3',416 c4:'3',417 c5:'3',418 c6:'3',419 c7:'2',420 c8:'2',421 c9:'1'422 })423 this.setState({Title:("3rd SEM")})424 this.setState({sub1:("18MAT31")})425 this.setState({sub2:("18EC32")})426 this.setState({sub3:("18EC33")})427 this.setState({sub4:("18EC34")})428 this.setState({sub5:("18EC35")})429 this.setState({sub6:("18EC36")})430 this.setState({sub7:("18ECL37")})431 this.setState({sub8:("18ECL38")})432 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})433 }434 break;435 case '4':436 if(this.state.Title!=='4th SEM'){437 this.setState({438 c1:'3',439 c2:'4',440 c3:'3',441 c4:'3',442 c5:'3',443 c6:'3',444 c7:'2',445 c8:'2',446 c9:'1'447 })448 this.setState({Title:("4th SEM")})449 this.setState({sub1:("18MAT41")})450 this.setState({sub2:("18EC42")})451 this.setState({sub3:("18EC43")})452 this.setState({sub4:("18EC44")})453 this.setState({sub5:("18EC45")})454 this.setState({sub6:("18EC46")})455 this.setState({sub7:("18ECL47")})456 this.setState({sub8:("18ECL48")})457 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})}458 break;459 case '5':460 if(this.state.Title!=='5th SEM'){461 this.setState({462 c1:'3',463 c2:'4',464 c3:'4',465 c4:'3',466 c5:'3',467 c6:'3',468 c7:'2',469 c8:'2',470 c9:'1'471 472 })473 this.setState({Title:("5th SEM")})474 this.setState({sub1:("18ES51")})475 this.setState({sub2:("18EC52")})476 this.setState({sub3:("18EC53")})477 this.setState({sub4:("18EC54")})478 this.setState({sub5:("18EC55")})479 this.setState({sub6:("18EC56")})480 this.setState({sub7:("18ECL57")})481 this.setState({sub8:("18ECL58")})482 this.setState({sub9:("18CIV59")})}483 break;484 case '6':485 if(this.state.Title!=='6th SEM'){486 this.setState({487 c1:'4',488 c2:'4',489 c3:'4',490 c4:'3',491 c5:'3',492 c6:'2',493 c7:'2',494 c8:'2'495 })496 this.setState({Title:("6th SEM")})497 this.setState({sub1:("18EC61")})498 this.setState({sub2:("18EC62")})499 this.setState({sub3:("18EC63")})500 this.setState({sub4:("18XX64X")})501 this.setState({sub5:("18XX65X")})502 this.setState({sub6:("18ECL66")})503 this.setState({sub7:("18ECL67")})504 this.setState({sub8:("18ECMP68")})505 }506 break;507 case '7':508 if(this.state.Title!=='7th SEM'){509 this.setState({510 c1:'3',511 c2:'3',512 c3:'3',513 c4:'3',514 c5:'3',515 c6:'2',516 c7:'2',517 c8:'1' 518 })519 this.setState({Title:("7th SEM")})520 this.setState({sub1:("18EC71")})521 this.setState({sub2:("18EC72")})522 this.setState({sub3:("18XX73X")})523 this.setState({sub4:("18XX74X")})524 this.setState({sub5:("18XX75X")})525 this.setState({sub6:("18ECL76")})526 this.setState({sub7:("18ECL77")})527 this.setState({sub8:("18ECP78 ")})528 }529 break;530 case '8':531 if(this.state.Title!=='8th SEM'){532 this.setState({533 c1:'3',534 c2:'3',535 c3:'8',536 c4:'1',537 c5:'3'538 539 })540 this.setState({Title:("8th SEM")})541 this.setState({sub1:("18EC81")})542 this.setState({sub2:("18XX82X")})543 this.setState({sub3:("18ECP83")})544 this.setState({sub4:("18ECS84")})545 }546 break;547 default:548 break;549 }550 }551 else if (this.props.brch === "eee") {552 switch (this.props.sem) {553 case '3':554 if(this.state.Title!=='3rd SEM'){555 this.setState({556 c1:'3',557 c2:'4',558 c3:'3',559 c4:'3',560 c5:'3',561 c6:'3',562 c7:'2',563 c8:'2',564 c9:'1'565 })566 this.setState({Title:("3rd SEM")})567 this.setState({sub1:("18MAT31")})568 this.setState({sub2:("18EE32")})569 this.setState({sub3:("18EE33")})570 this.setState({sub4:("18EE34")})571 this.setState({sub5:("18EE35")})572 this.setState({sub6:("18EE36")})573 this.setState({sub7:("18EEL37")})574 this.setState({sub8:("18EEL38")})575 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})576 }577 break;578 case '4':579 if(this.state.Title!=='4th SEM'){580 this.setState({581 c1:'3',582 c2:'3',583 c3:'4',584 c4:'3',585 c5:'3',586 c6:'3',587 c7:'2',588 c8:'2',589 c9:'1'590 })591 this.setState({Title:("4th SEM")})592 this.setState({sub1:("18MAT41")})593 this.setState({sub2:("18EE42")})594 this.setState({sub3:("18EE43")})595 this.setState({sub4:("18EE44")})596 this.setState({sub5:("18EE45")})597 this.setState({sub6:("18EE46")})598 this.setState({sub7:("18EEL47")})599 this.setState({sub8:("18EEL48")})600 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})601 }602 break;603 case '5':604 if(this.state.Title!=='5th SEM'){605 this.setState({606 c1:'3',607 c2:'4',608 c3:'4',609 c4:'3',610 c5:'3',611 c6:'3',612 c7:'2',613 c8:'2',614 c9:'1'615 616 })617 this.setState({Title:("5th SEM")})618 this.setState({sub1:("18EE51")})619 this.setState({sub2:("18EE52")})620 this.setState({sub3:("18EE53")})621 this.setState({sub4:("18EE54")})622 this.setState({sub5:("18EE55")})623 this.setState({sub6:("18EE56")})624 this.setState({sub7:("18EEL57")})625 this.setState({sub8:("18EEL58")})626 this.setState({sub9:("18CIV59")})627 }628 break;629 case '6':630 if(this.state.Title!=='6th SEM'){631 this.setState({632 c1:'4',633 c2:'4',634 c3:'4',635 c4:'3',636 c5:'3',637 c6:'2',638 c7:'2',639 c8:'2'640 })641 this.setState({Title:("6th SEM")})642 this.setState({sub1:("18EE61")})643 this.setState({sub2:("18EE62")})644 this.setState({sub3:("18EE63")})645 this.setState({sub4:("18EE64X")})646 this.setState({sub5:("18EE65X")})647 this.setState({sub6:("18EEL66")})648 this.setState({sub7:("18EEL67")})649 this.setState({sub8:("18EEMP68")})650 }651 break;652 case '7':653 if(this.state.Title!=='7th SEM'){654 this.setState({655 c1:'3',656 c2:'3',657 c3:'3',658 c4:'3',659 c5:'3',660 c6:'2',661 c7:'2',662 c8:'1' 663 })664 this.setState({Title:("7th SEM")})665 this.setState({sub1:("18EE71")})666 this.setState({sub2:("18EE72")})667 this.setState({sub3:("18EE73X")})668 this.setState({sub4:("18EE74X")})669 this.setState({sub5:("18EE75X")})670 this.setState({sub6:("18EEL76")})671 this.setState({sub7:("18EEL77")})672 this.setState({sub8:("18EEP78")})673 } 674 break;675 case '8':676 if(this.state.Title!=='8th SEM'){677 this.setState({678 c1:'3',679 c2:'3',680 c3:'8',681 c4:'1',682 c5:'3'683 684 })685 this.setState({Title:("8th SEM")})686 this.setState({sub1:("18EE81")})687 this.setState({sub2:("18EE82")})688 this.setState({sub3:("18EEP83")})689 this.setState({sub4:("18EES84")})690 this.setState({sub5:("18EEI85")})691 }692 break;693 default:694 break;695 }696 }697 else if (this.props.brch === "me") {698 switch (this.props.sem) {699 case '3':700 if(this.state.Title!=='3rd SEM'){701 this.setState({702 c1:'3',703 c2:'4',704 c3:'3',705 c4:'3',706 c5:'3',707 c6:'3',708 c7:'2',709 c8:'2',710 c9:'1'711 })712 this.setState({Title:("3rd SEM")})713 this.setState({sub1:("18MAT31")})714 this.setState({sub2:("18ME32")})715 this.setState({sub3:("18ME33")})716 this.setState({sub4:("18ME34")})717 this.setState({sub5:("18ME35A/35B")})718 this.setState({sub6:("18ME36A/36B")})719 this.setState({sub7:("18MEL37A/37B")})720 this.setState({sub8:("18MEL38A/39B")})721 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})722 }723 break;724 case '4':725 if(this.state.Title!=='4th SEM'){726 this.setState({727 c1:'3',728 c2:'4',729 c3:'3',730 c4:'3',731 c5:'3',732 c6:'3',733 c7:'2',734 c8:'2',735 c9:'1'736 })737 738 this.setState({Title:("4th SEM")})739 this.setState({sub1:("18MAT41")})740 this.setState({sub2:("18ME42")})741 this.setState({sub3:("18ME43")})742 this.setState({sub4:("18ME44")})743 this.setState({sub5:("18ME45A/45B")})744 this.setState({sub6:("18ME46A/46B")})745 this.setState({sub7:("18MEL47A/47B")})746 this.setState({sub8:("18MEL48A/48B")})747 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})}748 break;749 case '5':750 if(this.state.Title!=='5th SEM'){751 this.setState({752 c1:'3',753 c2:'4',754 c3:'4',755 c4:'3',756 c5:'3',757 c6:'2',758 c7:'3',759 c8:'2',760 c9:'1'761 762 })763 this.setState({Title:("5th SEM")})764 this.setState({sub1:("18ME51")})765 this.setState({sub2:("18ME52")})766 this.setState({sub3:("18ME53")})767 this.setState({sub4:("18ME54")})768 this.setState({sub5:("18ME55")})769 this.setState({sub6:("18ME56")})770 this.setState({sub7:("18MEL57")})771 this.setState({sub8:("18MEL58")})772 this.setState({sub9:("18CIV59")})}773 break;774 case '6':775 if(this.state.Title!=='6th SEM'){776 this.setState({777 c1:'4',778 c2:'4',779 c3:'4',780 c4:'3',781 c5:'2',782 c6:'2',783 c7:'2',784 c8:'2'785 })786 this.setState({Title:("6th SEM")})787 this.setState({sub1:("18ME61")})788 this.setState({sub2:("18ME62")})789 this.setState({sub3:("18ME63")})790 this.setState({sub4:("18ME64X")})791 this.setState({sub5:("18ME65X")})792 this.setState({sub6:("18MEL66")})793 this.setState({sub7:("18MEL67")})794 this.setState({sub8:("18MEMP68")})795 }796 break;797 case '7':798 if(this.state.Title!=='7th SEM'){799 this.setState({800 c1:'3',801 c2:'3',802 c3:'3',803 c4:'3',804 c5:'3',805 c6:'2',806 c7:'2',807 c8:'1' 808 })809 this.setState({Title:("7th SEM")})810 this.setState({sub1:("18ME71")})811 this.setState({sub2:("18ME72")})812 this.setState({sub3:("18ME73X")})813 this.setState({sub4:("18ME74X")})814 this.setState({sub5:("18ME75X")})815 this.setState({sub6:("18MEL76")})816 this.setState({sub7:("18MEL77")})817 this.setState({sub8:("18MEP78")})818 }819 break;820 case '8':821 if(this.state.Title!=='8th SEM'){822 this.setState({823 c1:'3',824 c2:'3',825 c3:'8',826 c4:'1',827 c5:'3'828 829 })830 this.setState({Title:("8th SEM")})831 this.setState({sub1:("18ME81")})832 this.setState({sub2:("18ME82X")})833 this.setState({sub3:("18MEP83")})834 this.setState({sub4:("18MES84")})835 this.setState({sub5:("18XXI85")})836 }837 break;838 default:839 break;840 }841 }842 else if (this.props.brch === "civil") {843 switch (this.props.sem) {844 case '3':845 if(this.state.Title!=='3rd SEM'){846 this.setState({847 c1:'3',848 c2:'4',849 c3:'3',850 c4:'3',851 c5:'3',852 c6:'3',853 c7:'2',854 c8:'2',855 c9:'1'856 })857 this.setState({Title:("3rd SEM")})858 this.setState({sub1:("18MAT31")})859 this.setState({sub2:("18CV32")})860 this.setState({sub3:("18CV33")})861 this.setState({sub4:("18CV34")})862 this.setState({sub5:("18CV35")})863 this.setState({sub6:("18CV36")})864 this.setState({sub7:("18CVL37")})865 this.setState({sub8:("18CVL38")})866 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})867 }868 break;869 case '4':870 if(this.state.Title!=='4th SEM'){871 this.setState({872 c1:'3',873 c2:'4',874 c3:'3',875 c4:'3',876 c5:'3',877 c6:'3',878 c7:'2',879 c8:'2',880 c9:'1'881 })882 this.setState({Title:("4th SEM")})883 this.setState({sub1:("18MAT41")})884 this.setState({sub2:("18CV42")})885 this.setState({sub3:("18CV43")})886 this.setState({sub4:("18CV44")})887 this.setState({sub5:("18CV45")})888 this.setState({sub6:("18CV46")})889 this.setState({sub7:("18CVL47")})890 this.setState({sub8:("18CVL48")})891 this.setState({sub9:("18KVK39/18KAK39/18CPC39")})}892 break;893 case '5':894 if(this.state.Title!=='5th SEM'){895 this.setState({896 c1:'3',897 c2:'4',898 c3:'4',899 c4:'3',900 c5:'3',901 c6:'3',902 c7:'2',903 c8:'2',904 c9:'1'905 906 })907 this.setState({Title:("5th SEM")}) 908 this.setState({sub1:("18CV51")})909 this.setState({sub2:("18CV52")})910 this.setState({sub3:("18CV53")})911 this.setState({sub4:("18CV54")})912 this.setState({sub5:("18CV55")})913 this.setState({sub6:("18CV56")})914 this.setState({sub7:("18CVL57")})915 this.setState({sub8:("18CVL58")})916 this.setState({sub9:("18CIV59")})}917 break;918 case '6':919 if(this.state.Title!=='6th SEM'){920 this.setState({921 c1:'4',922 c2:'4',923 c3:'4',924 c4:'3',925 c5:'3',926 c6:'2',927 c7:'2',928 c8:'2'929 })930 this.setState({Title:("6th SEM")})931 this.setState({sub1:("18CV61")})932 this.setState({sub2:("18CV62")})933 this.setState({sub3:("18CV63")})934 this.setState({sub4:("18CV64X")})935 this.setState({sub5:("18CV65X")})936 this.setState({sub6:("18CVL66")})937 this.setState({sub7:("18CVL67")})938 this.setState({sub8:("18CVEP68")})939 }940 break;941 case '7':942 if(this.state.Title!=='7th SEM'){943 this.setState({944 c1:'3',945 c2:'3',946 c3:'3',947 c4:'3',948 c5:'3',949 c6:'2',950 c7:'2',951 c8:'1' 952 })953 this.setState({Title:("7th SEM")})954 this.setState({sub1:("18CV71")})955 this.setState({sub2:("18CV72")})956 this.setState({sub3:("18CV73X")})957 this.setState({sub4:("18CV74X")})958 this.setState({sub5:("18CV75X")})959 this.setState({sub6:("18CVL76")})960 this.setState({sub7:("18CVL77")})961 this.setState({sub8:("18CVP78")})}962 break;963 case '8':964 if(this.state.Title!=='8th SEM'){965 this.setState({966 c1:'3',967 c2:'3',968 c3:'8',969 c4:'1',970 c5:'3'971 972 })973 this.setState({Title:("8th SEM")})974 this.setState({sub1:("18CV81")})975 this.setState({sub2:("18CV82X")})976 this.setState({sub3:("18CVP83")})977 this.setState({sub4:("18CVS84")})978 this.setState({sub5:("18CVI85")})979 }980 break;981 default:982 break;983 }984 }985 return (986 <div>987 <div className="head">988 <h1>{this.state.Title}</h1>989 </div>990 <div className="subhead">991 <h3>Subjects</h3>992 </div>...

Full Screen

Full Screen

set.py

Source:set.py Github

copy

Full Screen

1# -*- coding: utf-8 -*-2"""Immutable set state."""3from typing import TYPE_CHECKING, TypeVar, cast4try:5 import collections.abc as collections_abc6except ImportError:7 import collections as collections_abc # type: ignore8from pyrsistent import pset9from six import iteritems10from .._bases import BaseInteractiveSet, final11from ..utils.custom_repr import custom_iterable_repr, custom_mapping_repr12from ..utils.recursive_repr import recursive_repr13from .bases import BaseState14if TYPE_CHECKING:15 from typing import Any, Iterable, Iterator, Type16 from pyrsistent.typing import PSet17__all__ = ["SetState"]18T = TypeVar("T") # Any type.19# noinspection PyTypeChecker20_SS = TypeVar("_SS", bound="SetState")21@final22class SetState(BaseState[T], BaseInteractiveSet[T]):23 """24 Immutable set state.25 Inherits from:26 - :class:`objetto.bases.BaseState`27 - :class:`objetto.bases.BaseInteractiveSet`28 :param initial: Initial values.29 :type initial: collections.abc.Iterable30 """31 __slots__ = ()32 @classmethod33 def _make(cls, internal=pset()):34 # type: (Type[_SS], PSet[T]) -> _SS35 """36 Make new state by directly setting the internal state.37 :param internal: Internal state.38 :return: State.39 """40 return super(SetState, cls)._make(internal)41 @staticmethod42 def _make_internal(initial):43 # type: (Iterable[T]) -> PSet[T]44 """45 Initialize internal state.46 :param initial: Initial values.47 """48 return pset(initial)49 @classmethod50 def _from_iterable(cls, iterable):51 # type: (Iterable) -> SetState52 """53 Make set state from iterable.54 :param iterable: Iterable.55 :type iterable: collections.abc.Iterable56 :return: Set state.57 :rtype: objetto.states.SetState58 """59 if isinstance(iterable, type(pset())):60 return SetState._make(iterable)61 else:62 return SetState(iterable)63 def __init__(self, initial=()):64 # type: (Iterable[T]) -> None65 super(SetState, self).__init__(initial=initial)66 def __hash__(self):67 # type: () -> int68 """69 Get hash.70 :return: Hash.71 :rtype: int72 """73 return super(SetState, self).__hash__()74 def __eq__(self, other):75 # type: (object) -> bool76 """77 Compare for equality.78 :param other: Another object.79 :return: True if equal.80 :rtype: bool81 """82 if self is other:83 return True84 if not isinstance(other, collections_abc.Hashable):85 return self._internal == other86 if isinstance(other, SetState):87 return self._internal == other._internal88 return False89 def __contains__(self, value):90 # type: (Any) -> bool91 """92 Get whether value is present.93 :param value: Value.94 :type value: collections.abc.Hashable95 :return: True if contains.96 :rtype: bool97 """98 return value in self._internal99 def __iter__(self):100 # type: () -> Iterator[T]101 """102 Iterate over values.103 :return: Values iterator.104 :rtype: collections.abc.Iterator[collections.abc.Hashable]105 """106 for key in self._internal:107 yield key108 def __len__(self):109 # type: () -> int110 """111 Get value count.112 :return: Value count.113 :rtype: int114 """115 return len(self._internal)116 @recursive_repr117 def __repr__(self):118 # type: () -> str119 """120 Get representation.121 :return: Representation.122 :rtype: str123 """124 return custom_iterable_repr(125 self._internal,126 prefix="{}([".format(type(self).__name__),127 suffix="])",128 sorting=True,129 sort_key=lambda v: hash(v),130 )131 def _hash(self):132 # type: () -> int133 """134 Get hash.135 :return: Hash.136 :rtype: int137 """138 return hash(self)139 def _clear(self):140 # type: (_SS) -> _SS141 """142 Clear.143 :return: Transformed.144 :rtype: objetto.states.SetState145 """146 return self._make()147 def _add(self, value):148 # type: (_SS, T) -> _SS149 """150 Add value.151 :param value: Value.152 :type value: collections.abc.Hashable153 :return: Transformed.154 :rtype: objetto.states.SetState155 """156 return self._make(self._internal.add(value))157 def _discard(self, *values):158 # type: (_SS, T) -> _SS159 """160 Discard value(s).161 :param values: Value(s).162 :type values: collections.abc.Hashable163 :return: Transformed.164 :rtype: objetto.states.SetState165 :raises ValueError: No values provided.166 """167 if not values:168 error = "no values provided"169 raise ValueError(error)170 return self._make(self._internal.discard(*values))171 def _remove(self, *values):172 # type: (_SS, T) -> _SS173 """174 Remove existing value(s).175 :param values: Value(s).176 :type values: collections.abc.Hashable177 :return: Transformed.178 :rtype: objetto.states.SetState179 :raises ValueError: No values provided.180 :raises KeyError: Value is not present.181 """182 if not values:183 error = "no values provided"184 raise ValueError(error)185 return self._make(self._internal.difference(values))186 def _replace(self, old_value, new_value):187 # type: (_SS, T, T) -> _SS188 """189 Replace existing value with a new one.190 :param old_value: Existing value.191 :type old_value: collections.abc.Hashable192 :param new_value: New value.193 :type new_value: collections.abc.Hashable194 :return: Transformed.195 :rtype: objetto.states.SetState196 :raises KeyError: Value is not present.197 """198 return self._make(self._internal.remove(old_value).add(new_value))199 def _update(self, iterable):200 # type: (_SS, Iterable[T]) -> _SS201 """202 Update with iterable.203 :param iterable: Iterable.204 :type iterable: collections.abc.Iterable[collections.abc.Hashable]205 :return: Transformed.206 :rtype: objetto.states.SetState207 """208 return self._make(self._internal.update(iterable))209 def isdisjoint(self, iterable):210 # type: (Iterable) -> bool211 """212 Get whether is a disjoint set of an iterable.213 :param iterable: Iterable.214 :type iterable: collections.abc.Iterable215 :return: True if is disjoint.216 :rtype: bool217 """218 return self._internal.isdisjoint(iterable)219 def issubset(self, iterable):220 # type: (Iterable) -> bool221 """222 Get whether is a subset of an iterable.223 :param iterable: Iterable.224 :type iterable: collections.abc.Iterable225 :return: True if is subset.226 :rtype: bool227 """228 return self._internal.issubset(iterable)229 def issuperset(self, iterable):230 # type: (Iterable) -> bool231 """232 Get whether is a superset of an iterable.233 :param iterable: Iterable.234 :type iterable: collections.abc.Iterable235 :return: True if is superset.236 :rtype: bool237 """238 return self._internal.issuperset(iterable)239 def intersection(self, iterable):240 # type: (Iterable) -> SetState241 """242 Get intersection.243 :param iterable: Iterable.244 :type iterable: collections.abc.Iterable245 :return: Intersection.246 :rtype: objetto.states.SetState247 """248 return SetState._make(self._internal.intersection(iterable))249 def difference(self, iterable):250 # type: (Iterable) -> SetState251 """252 Get difference.253 :param iterable: Iterable.254 :type iterable: collections.abc.Iterable255 :return: Difference.256 :rtype: objetto.states.SetState257 """258 return SetState._make(self._internal.difference(iterable))259 def inverse_difference(self, iterable):260 # type: (Iterable) -> SetState261 """262 Get an iterable's difference to this.263 :param iterable: Iterable.264 :type iterable: collections.abc.Iterable265 :return: Inverse Difference.266 :rtype: objetto.states.SetState267 """268 return SetState._make(pset(iterable).difference(self._internal))269 def symmetric_difference(self, iterable):270 # type: (Iterable) -> SetState271 """272 Get symmetric difference.273 :param iterable: Iterable.274 :type iterable: collections.abc.Iterable275 :return: Symmetric difference.276 :rtype: objetto.states.SetState277 """278 return SetState._make(self._internal.symmetric_difference(iterable))279 def union(self, iterable):280 # type: (Iterable) -> SetState281 """282 Get union.283 :param iterable: Iterable.284 :type iterable: collections.abc.Iterable285 :return: Union.286 :rtype: objetto.states.SetState287 """288 return SetState._make(self._internal.union(iterable))289 def find_with_attributes(self, **attributes):290 # type: (Any) -> T291 """292 Find first value that matches unique attribute values.293 :param attributes: Attributes to match.294 :return: Value that has matching attributes.295 :raises ValueError: No attributes provided or no match found.296 """297 if not attributes:298 error = "no attributes provided"299 raise ValueError(error)300 for value in self._internal:301 for a_name, a_value in iteritems(attributes):302 if not hasattr(value, a_name) or getattr(value, a_name) != a_value:303 break304 else:305 return value306 error = "could not find a match for {}".format(307 custom_mapping_repr(308 attributes,309 prefix="(",310 template="{key}={value}",311 suffix=")",312 key_repr=str,313 ),314 )315 raise ValueError(error)316 @property317 def _internal(self):318 # type: () -> PSet[T]319 """Internal values."""...

Full Screen

Full Screen

sidebar.jsx

Source:sidebar.jsx Github

copy

Full Screen

...29 }30 componentDidMount(){31 this._isMounted = true;32 var username = window.atob(localStorage.getItem('username'))33 this.setState({username: username})34 var currUrl = window.location.pathname;35 if(currUrl == "/control") this.changeSb2();36 else if(currUrl == "/addDevice") this.changeSb3();37 else if(currUrl == "/myareas") this.changeSb5();38 else if(currUrl == "/manageareas") this.changeSb6();39 else if(currUrl == "/rules") this.changeSb7();40 else if(currUrl == "/user") this.changeSb8();41 }42 componentWillUnmount() {43 this._isMounted = false;44 }45 handleLogout(){46 var username = window.atob(localStorage.getItem('username'))47 alert("logout")48 localStorage.removeItem("username")49 localStorage.removeItem("token")50 axios.post('/api/logout', {51 username:username,52 currentAccessToken:window.atob(localStorage.getItem('token')),53 })54 }55 handleDropdownClick(){56 if(this.state.hideDropdown1 == 0){57 document.querySelector('.dropdown-container').style.display = 'block';58 this.setState({hideDropdown1:1})59 }60 else if(this.state.hideDropdown1 == 1){61 document.querySelector('.dropdown-container').style.display = 'none';62 this.setState({hideDropdown1:0})63 }64 }65 changeSb1(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:active});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:inactive});}66 changeSb2(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:active});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:inactive});}67 changeSb3(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:active});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:inactive});}68 changeSb5(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:active});this.setState({sb5:active});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:inactive});}69 changeSb6(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:active});this.setState({sb5:inactive});this.setState({sb6:active});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:inactive});}70 changeSb7(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:active});this.setState({sb8:inactive});this.setState({sb9:inactive});}71 changeSb8(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:active});this.setState({sb9:inactive});}72 changeSb8(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:active});this.setState({sb9:inactive});}73 changeSb9(){var active = "#0f8d83";var inactive = "#818181";this.setState({sb1:inactive});this.setState({sb2:inactive});this.setState({sb3:inactive});this.setState({sb4:inactive});this.setState({sb5:inactive});this.setState({sb6:inactive});this.setState({sb7:inactive});this.setState({sb8:inactive});this.setState({sb9:active});}74 render() {75 return (76 <React.Fragment>77 <div className="sidebar josefin-font">78 {/* <h1 className="text-center josefin-font pt-2">IoT</h1> */}79 <div className="w-100 text-center pt-4">80 <img src='pictures/icon2.png' alt="logo" width={"30%"} />81 </div>82 <h5 className="text-center josefin-font" style={{color:"#0f8d83", fontSize:"medium"}}>Hi, <i className="fas fa-user" style={{fontSize:"20px",marginBottom:"30px"}}></i> {this.state.username}</h5>83 <Link to="/dashboard" onClick={this.changeSb1}>84 <i className="fas fa-chart-line icon-style" style={{color:this.state.sb1}}></i>85 <span className="link-name" style={{color:this.state.sb1}}> Dashboard</span>86 </Link>87 <Link to="/control" onClick={this.changeSb2}>...

Full Screen

Full Screen

TestState.js

Source:TestState.js Github

copy

Full Screen

1import React from 'react'2// 学习目标:深入理解state的特点(声明式),学习this.setState()这个方法的使用。3// 1、怎么理解“声明式”?4// 当我们需要渲染(操作)界面节点时,我们先声明一个state变量,再使用这个state变量去参与视图节点的渲染或交互。5// 提示:state变量只能在constructor中进行定义。6// 声明式变量的特点:当使用this.setState()来修改state变量时,会触发render()方法再次执行,返回新的JSX(Fiber树),再进一步执行diff运算(协调运算),commit提交更新视图。7// 如何定义state?如何使用state?如何修改state?8// 2、详细介绍this.setState()这个专属方法。9// 语法1:this.setState({},callback) 当我们修改state时,新值与旧值无关时,建议用语法1。10// 语法2:this.setState((state,props)=>({}), callback) 当我们修改state时,新值是由旧值计算而来,建议用语法2。11// this.setState(xx, callback) 这个callback表示异步执行state更新任务已完成。12// 注意:state可以参与运算,但不建议直接修改state。在业务逻辑中,你可以`const num = this.state.num + 100`,但不建议写这样的代码`this.state.num++`。13// 注意:在react中,修改state只能使用this.setState()来修改,不要直接修改state。原因是直接修改state,不会触发render();只有使用this.setState()来修改state,才会触发render()。14// 注意:this.setState()在合成事件、生命周期钩子函数中,默认是异步的。为什么是异步的呢?为了性能优化(尽可能地减少没必要的render()执行),所以react官方封装了一系列的合成事件(交互事件、生命周期),在合成事件中把this.setState()变成异步的,目的是合并多个异步的this.setState(),减少没必要的render()。15// 在合成事件(交互事件、生命周期)中,this.setState()是异步的,当有多个this.setState()时,React会自动将它们合并起来的。16// 在定时器(setTimeout/setInterval)、Promise.then()中,this.setState()是同步的,所以React不会对多个this.setState()进行合并。17export default class TestState extends React.Component {18 constructor (props) {19 super(props)20 // 在这里定义声明式变量21 this.state = {22 info: {23 name: 'ganteng',24 age: 2025 },26 count: 127 }28 }29 addHandle () {30 // this.setState({31 // count: this.state.count + 132 // }, ()=>{33 // console.log('1--new state count', this.state.count)34 // })35 // this.setState((state)=>{36 // // do something37 // return {38 // count: state.count + 139 // }40 // }, ()=>{41 // console.log('1--new state count', this.state.count)42 // })43 this.setState((state)=>({44 count: state.count + 545 }), ()=>{46 console.log('1--new state count', this.state.count)47 })48 console.log('2--new state count', this.state.count)49 }50 countChange1 () {51 // 需求:把count变成1000052 this.setState({count: 10000})53 }54 countChange2 () {55 // 执行几次render()?只执行一次,react会自动合并下面这些this.setState()56 // this.setState({57 // count: 100,58 // info: { name: 'junjie', age: 30 }59 // })60 // this.setState({61 // count: 20062 // })63 // 等价于64 this.setState({65 count: 200,66 info: { name: 'junjie', age: 30 }67 })68 }69 xxxHandle () {70 this.setState({71 a: 1,72 b: 173 })74 this.setState({75 c: 2,76 d: 277 })78 this.setState(state=>({79 a: state.a + 100,80 c: state.c + 20081 }))82 this.setState(state=>{83 const newD = state.d + 30084 return {85 d: newD86 }87 })88 // 合并的结果(你自测一下)89 this.setState(state=>({90 a: state.a + 100,91 b: 1,92 c: state.c + 200,93 d: state.d + 30094 }))95 }96 countChange3 () {97 setTimeout(()=>{98 // 在定时器或Promise.then()方法中,this.setState()是同步的代码。99 // 在这里,因为this.setState()是同步的,所以React不会对它们进行合并。100 // 如果一定要给一个解释,你可这么想:因为定时器是宏任务,不在合成事件的作用域范围内,React无法控制this.setState()的异步性。101 this.setState(state=>({102 count: state.count + 2103 }), ()=>{104 console.log('1--new state count', this.state.count)105 })106 this.setState(state=>({107 count: state.count - 1108 }), ()=>{109 console.log('2--new state count', this.state.count)110 })111 console.log('3--new state count', this.state.count)112 }, 0)113 }114 render () {115 const { info, count } = this.state116 console.log('--render')117 return (118 <div>119 <h1>学习state</h1>120 <hr/>...

Full Screen

Full Screen

update.js

Source:update.js Github

copy

Full Screen

1export function update(quoteThis) {2 const allUpdates = {3 quote: (e) => quoteThis.setState({ quote: e.target ? e.target.value : e }),4 author: (e) =>5 quoteThis.setState({ author: e.target ? e.target.value : e }),6 hash: (hash) => quoteThis.setState({ hash: hash }),7 alignment: (alignment) => quoteThis.setState({ alignment: alignment }),8 shape: (shape) => quoteThis.setState({ shape: shape }),9 shapeSize: (e) =>10 quoteThis.setState({ shapeSize: e.target ? e.target.value : e }),11 shapePosition: (e) =>12 quoteThis.setState({ shapePosition: e.target ? e.target.value : e }),13 customImageUrl: (e) =>14 quoteThis.setState({ customImageUrl: e.target ? e.target.value : e }),15 posX: (e) => quoteThis.setState({ posX: e.target ? e.target.value : e }),16 posY: (e) => quoteThis.setState({ posY: e.target ? e.target.value : e }),17 bannerStyle: (e) =>18 quoteThis.setState({ bannerStyle: e.target ? e.target.value : e }),19 bgColor: (e) =>20 quoteThis.setState({ bgColor: e.target ? e.target.value : e }),21 textColor: (e) =>22 quoteThis.setState({ textColor: e.target ? e.target.value : e }),23 style: (style) => quoteThis.setState({ style: style }),24 fontStyle: (fontStyle) => quoteThis.setState({ fontStyle: fontStyle }),25 fontFamily: (e) =>26 quoteThis.setState({ fontFamily: e.target ? e.target.value : e }),27 tags: (newTags) => quoteThis.setState({ tags: newTags }),28 size: (e) => quoteThis.setState({ size: e.target ? e.target.value : e }),29 width: (e) => quoteThis.setState({ width: e.target ? e.target.value : e }),30 height: (e) =>31 quoteThis.setState({ height: e.target ? e.target.value : e }),32 circular: (e) =>33 quoteThis.setState({ circular: e.target ? e.target.value : e }),34 vertical: (e) =>35 quoteThis.setState({ vertical: e.target ? e.target.value : e }),36 filters: (e) =>37 quoteThis.setState({ filters: e.target ? e.target.value : e }),38 contrast: (e) =>39 quoteThis.setState({ filterContrast: e.target ? e.target.value : e }),40 hueRotate: (e) =>41 quoteThis.setState({ filterHueRotate: e.target ? e.target.value : e }),42 saturate: (e) =>43 quoteThis.setState({ filterSaturate: e.target ? e.target.value : e }),44 brightness: (e) =>45 quoteThis.setState({ filterBrightness: e.target ? e.target.value : e }),46 sepia: (e) =>47 quoteThis.setState({ filterSepia: e.target ? e.target.value : e }),48 blur: (e) =>49 quoteThis.setState({ filterBlur: e.target ? e.target.value : e }),50 invert: (e) =>51 quoteThis.setState({ filterInvert: e.target ? e.target.value : e }),52 quoteTop: (e) =>53 quoteThis.setState({ quoteTop: e.target ? e.target.value : e }),54 quoteRight: (e) =>55 quoteThis.setState({ quoteRight: e.target ? e.target.value : e }),56 quoteBottom: (e) =>57 quoteThis.setState({ quoteBottom: e.target ? e.target.value : e }),58 quoteLeft: (e) =>59 quoteThis.setState({ quoteLeft: e.target ? e.target.value : e }),60 paddingTop: (e) =>61 quoteThis.setState({ paddingTop: e.target ? e.target.value : e }),62 paddingRight: (e) =>63 quoteThis.setState({ paddingRight: e.target ? e.target.value : e }),64 paddingBottom: (e) =>65 quoteThis.setState({ paddingBottom: e.target ? e.target.value : e }),66 paddingLeft: (e) =>67 quoteThis.setState({ paddingLeft: e.target ? e.target.value : e }),68 boxShadow: (e) =>69 quoteThis.setState({ boxShadow: e.target ? e.target.value : e }),70 boxShadowColor: (e) =>71 quoteThis.setState({ boxShadowColor: e.target ? e.target.value : e }),72 borderRadius: (e) =>73 quoteThis.setState({ borderRadius: e.target ? e.target.value : e }),74 opacity: (e) =>75 quoteThis.setState({ opacity: e.target ? e.target.value : e }),76 transformScaleX: (e) =>77 quoteThis.setState({ transformScaleX: e.target ? e.target.value : e }),78 transformScaleY: (e) =>79 quoteThis.setState({ transformScaleY: e.target ? e.target.value : e }),80 transformSkewX: (e) =>81 quoteThis.setState({ transformSkewX: e.target ? e.target.value : e }),82 transformSkewY: (e) =>83 quoteThis.setState({ transformSkewY: e.target ? e.target.value : e }),84 transformTranslateX: (e) =>85 quoteThis.setState({86 transformTranslateX: e.target ? e.target.value : e,87 }),88 transformTranslateY: (e) =>89 quoteThis.setState({90 transformTranslateY: e.target ? e.target.value : e,91 }),92 transformRotateFull: (e) =>93 quoteThis.setState({94 transformRotateFull: e.target ? e.target.value : e,95 }),96 transformRotateX: (e) =>97 quoteThis.setState({ transformRotateX: e.target ? e.target.value : e }),98 transformRotateY: (e) =>99 quoteThis.setState({ transformRotateY: e.target ? e.target.value : e }),100 perspective: (e) =>101 quoteThis.setState({ perspective: e.target ? e.target.value : e }),102 perspectiveOriginX: (e) =>103 quoteThis.setState({ perspectiveOriginX: e.target ? e.target.value : e }),104 perspectiveOriginY: (e) =>105 quoteThis.setState({ perspectiveOriginY: e.target ? e.target.value : e }),106 };107 (allUpdates.position = (position) => {108 const { value } = position;109 quoteThis.setState({110 quoteTop: value["top"],111 quoteRight: value["right"],112 quoteBottom: value["bottom"],113 quoteLeft: value["left"],114 });115 }),116 (allUpdates.fullFilter = (fullFilter) => {117 const filterVals = fullFilter["values"];118 const setters = {119 contrast: allUpdates.contrast,120 hueRotate: allUpdates.hueRotate,121 saturate: allUpdates.saturate,122 brightness: allUpdates.brightness,123 sepia: allUpdates.sepia,...

Full Screen

Full Screen

clear.py

Source:clear.py Github

copy

Full Screen

1# just set initial state for debugging2turnouts.provideTurnout("LT200").setState(UNKNOWN)3turnouts.provideTurnout("LT201").setState(UNKNOWN)4turnouts.provideTurnout("LT202").setState(UNKNOWN)5turnouts.provideTurnout("LT203").setState(UNKNOWN)6sensors.provideSensor("103").setState(ACTIVE) # run switch7sensors.provideSensor("150").setState(INACTIVE)8sensors.provideSensor("151").setState(INACTIVE)9sensors.provideSensor("152").setState(INACTIVE)10sensors.provideSensor("153").setState(INACTIVE)11sensors.provideSensor("154").setState(INACTIVE)12sensors.provideSensor("155").setState(INACTIVE)13sensors.provideSensor("156").setState(INACTIVE)14sensors.provideSensor("157").setState(INACTIVE)15sensors.provideSensor("158").setState(INACTIVE)16sensors.provideSensor("159").setState(ACTIVE) # starting point17sensors.provideSensor("160").setState(ACTIVE) # starting point18sensors.provideSensor("161").setState(INACTIVE)19sensors.provideSensor("162").setState(INACTIVE)20sensors.provideSensor("163").setState(INACTIVE)21sensors.provideSensor("164").setState(INACTIVE)...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var wpt = require('wpt-api');2var wpt = new wpt('API_KEY');3var options = {4};5wpt.runTest(options, function(err, data) {6 if (err) {7 console.log(err);8 } else {9 console.log(data.data.testId);10 console.log(data.data.summary);11 console.log(data.data.runs);12 }13});14var options = {15};16wpt.runTest(options, function(err, data) {17 if (err) {18 console.log(err);19 } else {20 console.log(data.data.testId);21 console.log(data.data.summary);22 console.log(data.data.runs);23 }24});25var options = {26};27wpt.runTest(options, function(err, data) {28 if (err) {29 console.log(err);30 } else {31 console.log(data.data.testId);32 console.log(data.data.summary);33 console.log(data.data.runs);34 }35});36var options = {37};38wpt.runTest(options, function(err, data) {39 if (err) {40 console.log(err);41 } else {42 console.log(data.data.testId);43 console.log(data.data.summary);44 console.log(data.data.runs);45 }46});47var options = {48};49wpt.runTest(options, function(err, data) {50 if (err) {51 console.log(err);52 } else {53 console.log(data.data.testId);54 console.log(data.data.summary);55 console.log(data.data.runs);56 }57});58var options = {59};60wpt.runTest(options, function(err, data) {61 if (err) {62 console.log(err);

Full Screen

Using AI Code Generation

copy

Full Screen

1var wptoolkit = require('wptoolkit');2var wp = new wptoolkit();3wp.setState(1);4var wptoolkit = require('wptoolkit');5var wp = new wptoolkit();6wp.setState(0);7var wptoolkit = require('wptoolkit');8var wp = new wptoolkit();9wp.setState(2);10var wptoolkit = require('wptoolkit');11var wp = new wptoolkit();12wp.setState(3);13var wptoolkit = require('wptoolkit');14var wp = new wptoolkit();15wp.setState(4);16var wptoolkit = require('wptoolkit');17var wp = new wptoolkit();18wp.setState(5);19var wptoolkit = require('wptoolkit');20var wp = new wptoolkit();21wp.setState(6);22var wptoolkit = require('wptoolkit');23var wp = new wptoolkit();24wp.setState(7);25var wptoolkit = require('wptoolkit');26var wp = new wptoolkit();27wp.setState(8);28var wptoolkit = require('wptoolkit');29var wp = new wptoolkit();30wp.setState(9);31var wptoolkit = require('wptoolkit');32var wp = new wptoolkit();33wp.setState(10);34var wptoolkit = require('wptoolkit');35var wp = new wptoolkit();36wp.setState(11);37var wptoolkit = require('wptoolkit');38var wp = new wptoolkit();39wp.setState(12);

Full Screen

Using AI Code Generation

copy

Full Screen

1const wpt = require('wpt-api');2const wptInstance = new wpt('API_KEY');3wptInstance.setState('testID', 'testState', function (err, data) {4 if (err) {5 console.log(err);6 } else {7 console.log(data);8 }9});

Full Screen

Using AI Code Generation

copy

Full Screen

1var wptools = require('wptools');2var wp = new wptools({article: 'Barack Obama', lang: 'en'});3wp.get(function(err, response) {4 if (!err) {5 console.log(response);6 }7});

Full Screen

Using AI Code Generation

copy

Full Screen

1var wpt = require('webpagetest');2var instance = new wpt('API_KEY');3 if (err) return console.error(err);4 console.log('Test started: ' + data.data.testId);5 instance.waitForTestResults(data.data.testId, function(err, data) {6 if (err) return console.error(err);7 console.log('Test completed');8 console.log('First View (i.e. Load Time): ' + data.data.average.firstView.loadTime);9 console.log('First View (i.e. Speed Index): ' + data.data.average.firstView.SpeedIndex);10 });11});12 if (err) return console.error(err);13 console.log('Test started: ' + data.data.testId);14 instance.waitForTestResults(data.data.testId, function(err, data) {15 if (err) return console.error(err);16 console.log('Test completed');17 console.log('First View (i.e. Load Time): ' + data.data.average.firstView.loadTime);18 console.log('First View (i.e. Speed Index): ' + data.data.average.firstView.SpeedIndex);19 });20});21 if (err) return console.error(err);22 console.log('Test started: ' + data.data.testId);23 instance.waitForTestResults(data.data.testId, function(err, data) {24 if (err) return console.error(err);25 console.log('Test completed');26 console.log('First View (i.e. Load Time): ' + data.data.average.firstView.loadTime);27 console.log('First View (i.e. Speed Index): ' + data.data.average.firstView.SpeedIndex);28 });29});30 if (err) return console.error(err);31 console.log('Test started

Full Screen

Using AI Code Generation

copy

Full Screen

1wptdriver.setState("input", "Hello World");2var value = wptdriver.getState("input");3wptdriver.click("button");4wptdriver.waitForPageToLoad(30000);5wptdriver.waitForVisible("button", 30000);6wptdriver.waitForElementPresent("button", 30000);7wptdriver.waitForElementNotPresent("button", 30000);8wptdriver.waitForVisible("button", 30000);9wptdriver.waitForNotVisible("button", 30000);10wptdriver.waitForTextPresent("Hello World", 30000);11wptdriver.waitForTextNotPresent("Hello World", 30000);12wptdriver.waitForValue("input", "Hello World", 30000);13wptdriver.waitForValue("input", "Hello World", 30000);14wptdriver.executeScript("alert('Hello World');");

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run wpt automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful