Initial Commit
This commit is contained in:
commit
ddf09fe00c
113 changed files with 187148 additions and 0 deletions
3
resources/css/app.css
vendored
Normal file
3
resources/css/app.css
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
BIN
resources/images/logo.png
Normal file
BIN
resources/images/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
1
resources/js/app.js
vendored
Normal file
1
resources/js/app.js
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
require('./bootstrap');
|
||||
28
resources/js/bootstrap.js
vendored
Normal file
28
resources/js/bootstrap.js
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
window._ = require('lodash');
|
||||
|
||||
/**
|
||||
* We'll load the axios HTTP library which allows us to easily issue requests
|
||||
* to our Laravel back-end. This library automatically handles sending the
|
||||
* CSRF token as a header based on the value of the "XSRF" token cookie.
|
||||
*/
|
||||
|
||||
window.axios = require('axios');
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
|
||||
/**
|
||||
* Echo exposes an expressive API for subscribing to channels and listening
|
||||
* for events that are broadcast by Laravel. Echo and event broadcasting
|
||||
* allows your team to easily build robust real-time web applications.
|
||||
*/
|
||||
|
||||
// import Echo from 'laravel-echo';
|
||||
|
||||
// window.Pusher = require('pusher-js');
|
||||
|
||||
// window.Echo = new Echo({
|
||||
// broadcaster: 'pusher',
|
||||
// key: process.env.MIX_PUSHER_APP_KEY,
|
||||
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
|
||||
// forceTLS: true
|
||||
// });
|
||||
20
resources/lang/en/auth.php
Normal file
20
resources/lang/en/auth.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The provided password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
19
resources/lang/en/pagination.php
Normal file
19
resources/lang/en/pagination.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
resources/lang/en/passwords.php
Normal file
22
resources/lang/en/passwords.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have emailed your password reset link!',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that email address.",
|
||||
|
||||
];
|
||||
158
resources/lang/en/validation.php
Normal file
158
resources/lang/en/validation.php
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute must not be greater than :max.',
|
||||
'file' => 'The :attribute must not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute must not be greater than :max characters.',
|
||||
'array' => 'The :attribute must not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'multiple_of' => 'The :attribute must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute must be a valid URL.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
20
resources/lang/se.json
Normal file
20
resources/lang/se.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"Loading": "Laddar",
|
||||
"Save": "Spara",
|
||||
"Somebody" : "Någon",
|
||||
"Create shareable URL": "Skapa en delbar URL",
|
||||
"Sharable URL": "Delbar URL",
|
||||
"New Game" : "Nytt Spel",
|
||||
"Change Settings" : "Ändra Inställningar",
|
||||
"Clear" : "Rensa",
|
||||
"Go again?" : "Köra igen?",
|
||||
"Game over!" : "Spelet slut!",
|
||||
"Classes" : "Klasser",
|
||||
"Characters" : "Karaktärer",
|
||||
|
||||
"singular_somebody" : "Någon",
|
||||
|
||||
"plurar_somebody" : "Några",
|
||||
"plurar_tank": "Tanken",
|
||||
"plurar_paladin" : "Paladinen"
|
||||
}
|
||||
33
resources/views/components/button.blade.php
Normal file
33
resources/views/components/button.blade.php
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
@props(['href' => false, 'type' => 'default'])
|
||||
|
||||
@php
|
||||
|
||||
switch($type) {
|
||||
case 'info':
|
||||
$color = 'bg-blue-400 hover:bg-blue-500';
|
||||
break;
|
||||
case 'success':
|
||||
$color = 'bg-green-400 hover:bg-green-500';
|
||||
break;
|
||||
case 'warning':
|
||||
$color = 'bg-yellow-400 hover:bg-yellow-500';
|
||||
break;
|
||||
case 'danger':
|
||||
$color = 'bg-red-400 hover:bg-red-500';
|
||||
break;
|
||||
default:
|
||||
$color = 'bg-gray-400 hover:bg-gray-500';
|
||||
}
|
||||
|
||||
if ($href) {
|
||||
$element = 'a';
|
||||
$attributes = $attributes->merge([ 'href' => $href ]);
|
||||
} else {
|
||||
$element = 'button';
|
||||
}
|
||||
|
||||
@endphp
|
||||
|
||||
<{{$element}} {{ $attributes->merge(['class' => "inline-block px-4 py-2 rounded $color"]) }}>
|
||||
{{ $slot }}
|
||||
</{{$element}}>
|
||||
37
resources/views/components/card.blade.php
Normal file
37
resources/views/components/card.blade.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
@php
|
||||
$size = 'h-32 md:h-44 lg:h-52';
|
||||
|
||||
$main_class = 'cursor-pointer relative transform-style-3d transition duration-500';
|
||||
$base_class = "absolute backface-hidden flex items-center justify-center border w-full $size transition duration-500 px-4 py-2";
|
||||
$frontface_class = "$base_class z-10 bg-gray-100 hover:bg-gray-200 rotate-y-0 transform hover:scale-105";
|
||||
$backface_class = "$base_class rotate-y-180";
|
||||
|
||||
if ($flipped) {
|
||||
$main_class .= ' rotate-y-180';
|
||||
}
|
||||
|
||||
if ($win) {
|
||||
$backface_class .= ' bg-green-300 hover:bg-green-400';
|
||||
} else {
|
||||
$backface_class .= ' bg-blue-300 hover:bg-blue-400';
|
||||
}
|
||||
|
||||
@endphp
|
||||
|
||||
<div class="{{ $size }} perspective">
|
||||
<div {!! $attributes->merge(['class' => $main_class]) !!}>
|
||||
|
||||
{{-- Card frontface --}}
|
||||
<div class="{{ $frontface_class }}">
|
||||
<h2 class="absolute top-1 left-2 text-xl text-gray-600">#{{ $number }}</h2>
|
||||
<p>
|
||||
<x-card-text :card="$card" />
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{{-- Card backface --}}
|
||||
<div class="{{ $backface_class }}">
|
||||
<img src="{{ url('img/logo.png') }}" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
3
resources/views/components/form-section.blade.php
Normal file
3
resources/views/components/form-section.blade.php
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div {!! $attributes->merge(['class' => "px-4 py-2 border rounded"]) !!}>
|
||||
{{ $slot }}
|
||||
</div>
|
||||
22
resources/views/components/modal.blade.php
Normal file
22
resources/views/components/modal.blade.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
@props(['opacity' => '75'])
|
||||
|
||||
@php
|
||||
switch($opacity) {
|
||||
case 'light':
|
||||
$opacity = "opacity-25";
|
||||
break;
|
||||
case 'medium':
|
||||
$opacity = "opacity-50";
|
||||
break;
|
||||
case 'full':
|
||||
default:
|
||||
$opacity = "opacity-75";
|
||||
}
|
||||
@endphp
|
||||
|
||||
<div {{ $attributes->merge(['class' => 'fixed top-0 left-0 w-screen h-screen flex justify-center items-center z-50']) }}>
|
||||
<div class="absolute h-full w-full bg-black {{ $opacity }}"></div>
|
||||
<div class="relative p-12 bg-white rounded flex flex-col justify-center z-9999">
|
||||
{{ $slot }}
|
||||
</div>
|
||||
</div>
|
||||
47
resources/views/game.blade.php
Normal file
47
resources/views/game.blade.php
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
@php
|
||||
$card_class = 'absolute backface-hidden flex items-center justify-center border w-full h-52 transition duration-500 px-4 py-2'
|
||||
@endphp
|
||||
|
||||
<div class="container mx-auto mt-4 sm:mt-4 md:mt-10 lg:mt-8">
|
||||
|
||||
<div class="flex justify-between items-center mb-4 md:mb-8">
|
||||
|
||||
<div class="flex items-end space-x-2">
|
||||
<h2 class="text-2xl text-gray-600">Winning rows:</h2>
|
||||
<p class="text-blue-600 text-4xl">{{ $this->state->getNumWinRows() }}</p>
|
||||
</div>
|
||||
|
||||
<div class="space-x-2">
|
||||
<x-button type="success" wire:click="restart">{{ __('New Game') }}</x-button>
|
||||
<x-button type="warning" href="{{ url('/setup') }}">{{ __('Change Settings') }}</x-button>
|
||||
<x-button type="danger" wire:click="clear">{{ __('Clear') }}</x-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Gameboard grid --}}
|
||||
<div class="mt-2 grid grid-cols-4 gap-4">
|
||||
@foreach($this->board->getCards() as $pos => $item)
|
||||
<x-card :number="$pos + 1" :card="$item"
|
||||
:win="$this->state->isWin($pos)"
|
||||
:flipped="$this->state->isPressed($pos)"
|
||||
wire:click="toggle({{ $pos }})" />
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
{{-- Loading modal --}}
|
||||
<div wire:loading.delay>
|
||||
<x-modal>
|
||||
<h2 class="text-6xl">{{ __('Loading') }}</h2>
|
||||
</x-modal>
|
||||
</div>
|
||||
|
||||
@if ($this->board->hasGameEnded())
|
||||
<x-modal wire:loading.remove>
|
||||
<h2 class="text-6xl mb-12">{{ __('Game over!') }}</h2>
|
||||
<div class="flex justify-between space-x-2">
|
||||
<x-button type="info" wire:click="clear">{{ __('Go again?') }}</x-button>
|
||||
<x-button type="success" wire:click="restart">{{ __('New Game') }}</x-button>
|
||||
</div>
|
||||
</x-modal>
|
||||
@endif
|
||||
</div>
|
||||
16
resources/views/layouts/app.blade.php
Normal file
16
resources/views/layouts/app.blade.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Bingo!</title>
|
||||
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
||||
@livewireStyles
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{{ $slot }}
|
||||
|
||||
@livewireScripts
|
||||
</body>
|
||||
</html>
|
||||
56
resources/views/setup.blade.php
Normal file
56
resources/views/setup.blade.php
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
|
||||
<div class="container mx-auto mt-10">
|
||||
|
||||
<div class="mb-10">
|
||||
<x-button type="danger" wire:click="resetSettings()">{{ __('Clear') }}</x-button>
|
||||
<x-button type="success" wire:click="save()">{{ __('Save') }}</x-button>
|
||||
<x-button type="info" wire:click="share()">{{ __('Create shareable URL') }}</x-button>
|
||||
</div>
|
||||
|
||||
@if ($shared_settings)
|
||||
<div class="bg-blue-200 mb-10 px-6 py-4 rounded">
|
||||
Sharable url: <strong>{{ route('setup-hash', [ 'setting' => $shared_settings ]) }}</strong>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form class="flex gap-8" wire:submit.prevent="save" method="POST">
|
||||
<div>
|
||||
<x-form-section class="bg-yellow-200 border-yellow-300">
|
||||
<h3 class="text-2xl">{{ __('Classes') }}</h3>
|
||||
|
||||
@foreach($all_classes as $class)
|
||||
<div class="flex justify-between items-center space-x-4 my-2">
|
||||
<label class="text-xl" for="class_{{ $class }}">{{ Str::ucFirst($class) }}</label>
|
||||
<input id="class_{{ $class }}" type="checkbox" wire:model="values.classes.{{ $class }}" />
|
||||
</div>
|
||||
@endforeach
|
||||
</x-form-section>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<x-form-section class="bg-blue-200 border-blue-300">
|
||||
<h3 class="text-2xl">{{ __('Characters') }}</h3>
|
||||
|
||||
@foreach($all_characters as $ch)
|
||||
<div class="flex justify-between items-center space-x-4 my-2">
|
||||
<label class="text-xl" for="ch_{{ $ch->id }}">{{ $ch->name }}</label>
|
||||
<input id="ch_{{ $ch->id }}" type="checkbox" wire:model="values.characters.{{ $ch->id }}" />
|
||||
</div>
|
||||
@endforeach
|
||||
</x-form-section>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<x-form-section class="bg-green-200 border-green-300">
|
||||
<h3 class="text-2xl">{{ __('Raids') }}</h3>
|
||||
|
||||
@foreach($all_raids as $raid)
|
||||
<div class="flex justify-between items-center space-x-4 my-2">
|
||||
<label class="text-xl" for="raid_{{ $raid->id }}">{{ $raid->name }}</label>
|
||||
<input id="raid_{{ $raid->id }}" wire:model="values.raids.{{ $raid->id }}" type="checkbox" />
|
||||
</div>
|
||||
@endforeach
|
||||
</x-form-section>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
Reference in a new issue