| 
									
										
										
										
											2018-03-03 16:12:48 -08:00
										 |  |  | <div class="compose-box-length-gauge {{shouldAnimate ? 'should-animate' : ''}}  {{overLimit ? 'over-char-limit' : ''}}" | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |      style="transform: scaleX({{lengthAsFractionDeferred || 0}});" | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |      aria-hidden="true" | 
					
						
							|  |  |  | ></div> | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  |   .compose-box-length-gauge { | 
					
						
							|  |  |  |     grid-area: gauge; | 
					
						
							|  |  |  |     margin: 0 0 5px 5px; | 
					
						
							|  |  |  |     height: 2px; | 
					
						
							|  |  |  |     background: var(--main-theme-color); | 
					
						
							|  |  |  |     transform-origin: left; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   .compose-box-length-gauge.should-animate { | 
					
						
							|  |  |  |     transition: transform 0.2s linear; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   .compose-box-length-gauge.over-char-limit { | 
					
						
							|  |  |  |     background: var(--warning-color); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | </style> | 
					
						
							|  |  |  | <script> | 
					
						
							|  |  |  |   import { CHAR_LIMIT } from '../../_static/statuses' | 
					
						
							|  |  |  |   import { mark, stop } from '../../_utils/marks' | 
					
						
							| 
									
										
										
										
											2018-02-26 22:22:56 -08:00
										 |  |  |   import { store } from '../../_store/store' | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |   import { scheduleIdleTask } from '../../_utils/scheduleIdleTask' | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   export default { | 
					
						
							| 
									
										
										
										
											2018-04-19 21:38:01 -07:00
										 |  |  |     oncreate () { | 
					
						
							| 
									
										
										
										
											2018-04-19 09:37:05 -07:00
										 |  |  |       let { lengthAsFraction } = this.get() | 
					
						
							|  |  |  |       this.set({lengthAsFractionDeferred: lengthAsFraction}) | 
					
						
							| 
									
										
										
										
											2018-02-26 22:22:56 -08:00
										 |  |  |       // perf improvement for keyboard input latency | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |       this.observe('lengthAsFraction', () => { | 
					
						
							|  |  |  |         scheduleIdleTask(() => { | 
					
						
							|  |  |  |           mark('set lengthAsFractionDeferred') | 
					
						
							| 
									
										
										
										
											2018-04-21 09:56:45 -07:00
										 |  |  |           let { lengthAsFraction } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 | 
					
						
							| 
									
										
										
										
											2018-04-19 09:37:05 -07:00
										 |  |  |           this.set({lengthAsFractionDeferred: lengthAsFraction}) | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |           stop('set lengthAsFractionDeferred') | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |           requestAnimationFrame(() => this.set({shouldAnimate: true})) | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |       }, {init: false}) | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |     }, | 
					
						
							| 
									
										
										
										
											2018-02-26 22:22:56 -08:00
										 |  |  |     store: () => store, | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |     computed: { | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |       lengthAsFraction: (length) => { | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |         // We don't need to update the gauge for every decimal point, so round it to the nearest 0.02 | 
					
						
							| 
									
										
										
										
											2018-03-12 20:18:34 -07:00
										 |  |  |         let int = Math.round(Math.min(CHAR_LIMIT, length) / CHAR_LIMIT * 100) | 
					
						
							|  |  |  |         return (int - (int % 2)) / 100 | 
					
						
							| 
									
										
										
										
											2018-02-26 21:50:03 -08:00
										 |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </script> |