| 
									
										
										
										
											2024-02-21 11:21:46 +00:00
										 |  |  | {{define "fakednsModal"}} | 
					
						
							|  |  |  | <a-modal id="fakedns-modal" v-model="fakednsModal.visible" :title="fakednsModal.title" @ok="fakednsModal.ok" | 
					
						
							|  |  |  |          :closable="true" :mask-closable="false" | 
					
						
							|  |  |  |          :ok-text="fakednsModal.okText" cancel-text='{{ i18n "close" }}' :class="themeSwitcher.currentTheme"> | 
					
						
							| 
									
										
										
										
											2024-02-27 15:28:35 +00:00
										 |  |  |     <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> | 
					
						
							| 
									
										
										
										
											2024-02-21 11:21:46 +00:00
										 |  |  |         <a-form-item label='{{ i18n "pages.xray.fakedns.ipPool" }}'> | 
					
						
							|  |  |  |             <a-input v-model.trim="fakednsModal.fakeDns.ipPool"></a-input> | 
					
						
							|  |  |  |         </a-form-item> | 
					
						
							|  |  |  |         <a-form-item label='{{ i18n "pages.xray.fakedns.poolSize" }}'> | 
					
						
							| 
									
										
										
										
											2024-02-22 19:20:38 +00:00
										 |  |  |           <a-input-number style="width: 100%;" type="number" min="1" v-model.trim="fakednsModal.fakeDns.poolSize"></a-input-number> | 
					
						
							| 
									
										
										
										
											2024-02-21 11:21:46 +00:00
										 |  |  |         </a-form-item> | 
					
						
							|  |  |  |     </a-form> | 
					
						
							|  |  |  | </a-modal> | 
					
						
							|  |  |  | <script> | 
					
						
							|  |  |  |     const fakednsModal = { | 
					
						
							|  |  |  |         title: '', | 
					
						
							|  |  |  |         visible: false, | 
					
						
							|  |  |  |         okText: '{{ i18n "confirm" }}', | 
					
						
							|  |  |  |         isEdit: false, | 
					
						
							|  |  |  |         confirm: null, | 
					
						
							|  |  |  |         fakeDns: { | 
					
						
							|  |  |  |           ipPool: "198.18.0.0/16", | 
					
						
							|  |  |  |           poolSize: 65535, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         ok() { | 
					
						
							|  |  |  |           ObjectUtil.execute(fakednsModal.confirm, fakednsModal.fakeDns); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         show({ title='', okText='{{ i18n "confirm" }}', fakeDns, confirm=(fakeDns)=>{}, isEdit=false  }) { | 
					
						
							|  |  |  |             this.title = title; | 
					
						
							|  |  |  |             this.okText = okText; | 
					
						
							|  |  |  |             this.confirm = confirm; | 
					
						
							|  |  |  |             this.visible = true; | 
					
						
							|  |  |  |             if(isEdit) { | 
					
						
							|  |  |  |                 this.fakeDns = fakeDns; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |               this.fakeDns = { | 
					
						
							|  |  |  |                 ipPool: "198.18.0.0/16", | 
					
						
							|  |  |  |                 poolSize: 65535, | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             this.isEdit = isEdit; | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         close() { | 
					
						
							|  |  |  |             fakednsModal.visible = false; | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     new Vue({ | 
					
						
							|  |  |  |         delimiters: ['[[', ']]'], | 
					
						
							|  |  |  |         el: '#fakedns-modal', | 
					
						
							|  |  |  |         data: { | 
					
						
							|  |  |  |             fakednsModal: fakednsModal, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | {{end}} |