mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
@section("title", "Choose servers")
 | 
						|
@section('scripts')
 | 
						|
    <script src="{{ asset('js/vue.min.js') }}"></script>
 | 
						|
@endsection
 | 
						|
<x-app-layout>
 | 
						|
    <x-slot name="header">
 | 
						|
        {{ __('Choose two servers to compare') }}
 | 
						|
    </x-slot>
 | 
						|
    <div class="container" id="app">
 | 
						|
        <div class="card shadow mt-3">
 | 
						|
            <div class="card-body">
 | 
						|
                <a href="{{ route('servers.index') }}" class="btn btn-primary mb-3">Servers home</a>
 | 
						|
                @if(count($all_servers) >= 2)
 | 
						|
                <div class="row">
 | 
						|
                    <div class="col-12 col-lg-6">
 | 
						|
                        <div class="input-group">
 | 
						|
                            <div class="input-group-prepend"><span class="input-group-text">Server1</span></div>
 | 
						|
                            <select class="form-control" name="server1" @change="changeServer1($event)">
 | 
						|
                                @foreach ($all_servers as $server)
 | 
						|
                                    <option value="{{ $server['id'] }}">
 | 
						|
                                        {{ $server['hostname'] }}
 | 
						|
                                    </option>
 | 
						|
                                @endforeach
 | 
						|
                            </select>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                    <div class="col-12 col-lg-6">
 | 
						|
                        <div class="input-group">
 | 
						|
                            <div class="input-group-prepend"><span class="input-group-text">Server2</span></div>
 | 
						|
                            <select class="form-control" name="server2" @change="changeServer2($event)">
 | 
						|
                                @foreach ($all_servers as $server)
 | 
						|
                                    <option value="{{ $server['id'] }}" {{($loop->index === 1)?'selected':''}}>
 | 
						|
                                        {{ $server['hostname'] }}
 | 
						|
                                    </option>
 | 
						|
                                @endforeach
 | 
						|
                            </select>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                <a v-bind:href="full_url" class="btn btn-success mt-4">View comparison table</a>
 | 
						|
                @else
 | 
						|
                    <p class="text-danger">You need to have added a YABS to at least 2 servers to use this feature</p>
 | 
						|
                @endif
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <x-details-footer></x-details-footer>
 | 
						|
    </div>
 | 
						|
    <script type="application/javascript">
 | 
						|
        let app = new Vue({
 | 
						|
            el: "#app",
 | 
						|
            data: {
 | 
						|
                "base_url": "servers-compare/",
 | 
						|
                "full_url": "{{route('servers.compare', ['server1' => $all_servers[0]->id, 'server2' => $all_servers[1]->id])}}",
 | 
						|
                "url_input": "",
 | 
						|
                "server1": "{{$all_servers[0]->id ?? ''}}",
 | 
						|
                "server2": "{{$all_servers[1]->id ?? ''}}",
 | 
						|
            },
 | 
						|
            methods: {
 | 
						|
                changeServer1: function changeServer1(event) {
 | 
						|
                    this.server1 = event.target.value;
 | 
						|
                    this.full_url = this.base_url + this.server1 + '/' + this.server2;
 | 
						|
                    this.url_input = this.full_url;
 | 
						|
                },
 | 
						|
                changeServer2: function changeServer2(event) {
 | 
						|
                    this.server2 = event.target.value;
 | 
						|
                    this.full_url = this.base_url + this.server1 + '/' + this.server2;
 | 
						|
                    this.url_input = this.full_url;
 | 
						|
                }
 | 
						|
            }
 | 
						|
        });
 | 
						|
    </script>
 | 
						|
</x-app-layout>
 |