@extends('layouts.app')
@section('htmlheader_title')
	FTN Zones
@endsection

@section('content')
	<div class="row">
		<div class="col-12">
			<h2>About FTN Zones</h2>
			<p>In FTN network addresses, a zone is the 3rd dimension and used when a system supports 3D (or better) addressing, ie: <strong class="highlight">zone</strong>:net/node.point@domain.</p>
			<p>Zones are used with domains to uniquely identify a FTN network. Within an FTN network there can be multiple zones with the same domain.</p>
			<p>It is rare that a domain has multiple zones - unless it grows quite large. Zones can also be used to group systems into a common boundary.</p>
			<p>This system is aware of the following zones in each domain @can('admin',(new \App\Models\Zone))(you can <a href="{{ url('zone/addedit') }}">add</a> more)@endcan:</p>
		</div>
	</div>

	<div class="row">
		<div class="col-9">
			@if (\App\Models\Zone::count() === 0)
				@can('admin',(new \App\Models\Zone))
					<p>There are no zones setup, to <a href="{{ url('zone/addedit') }}">set up your first</a>.</p>
				@else
					<p class="pad">There are no zones - you need to ask an admin to create one for you.</p>
				@endcan
			@else
				<table class="table monotable" id="zone">
					<thead>
					<tr>
						<th>Domain</th>
						<th>Zone</th>
						<th>Active</th>
						<th>Default</th>
						<th>Systems</th>
					</tr>
					</thead>

					<tbody>
					@foreach (\App\Models\Zone::orderBy('zone_id')->with(['domain','addresses'])->get() as $oo)
						<tr>
							<td>{{ $oo->domain->name }}</td>
							<td><a href="{{ url('zone/addedit',[$oo->id]) }}">{{ $oo->zone_id }}</a></td>
							<td>{{ $oo->active ? 'YES' : 'NO' }}</td>
							<td>{{ $oo->default ? 'YES' : 'NO' }}</td>
							<td>{{ $oo->addresses->count() }}</td>
						</tr>
					@endforeach
					</tbody>
				</table>
			@endif
		</div>
	</div>
@endsection

@section('page-css')
	@css('datatables')
@append
@section('page-scripts')
	@js('datatables')

	<script type="text/javascript">
		$(document).ready(function() {
			$('table tr').click(function() {
				var href = $(this).find("a").attr("href");
				if(href) {
					window.location = href;
				}
			});

			$('#zone').DataTable({
				paging: true,
				pageLength: 25,
				searching: true,
				autoWidth: false,
				conditionalPaging: {
					style: 'fade',
					speed: 500 // optional
				},
				language: {
					paginate: {
						previous: '&lt;&lt;',
						next: '&gt;&gt;'
					}
				}
			});
		});
	</script>
@append