Add react to the project
continuous-integration/drone/push Build is passing Details

master
nightly 2022-09-22 11:16:00 +02:00
parent 72ac426ce8
commit cc6b3d3119
10 changed files with 3068 additions and 3 deletions

View File

@ -9,7 +9,8 @@
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.19",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7"
"laravel/tinker": "^2.7",
"laravel/ui": "^4.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",

63
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "ccbd816a07b206f971042295b899d1ba",
"content-hash": "95b694b18e97667437a84c0f7c711826",
"packages": [
{
"name": "brick/math",
@ -1276,6 +1276,67 @@
},
"time": "2022-03-23T12:38:24+00:00"
},
{
"name": "laravel/ui",
"version": "v4.0.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/ui.git",
"reference": "9aa6930c8ae98b2465594d7f14f4ac131bfd6a99"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/ui/zipball/9aa6930c8ae98b2465594d7f14f4ac131bfd6a99",
"reference": "9aa6930c8ae98b2465594d7f14f4ac131bfd6a99",
"shasum": ""
},
"require": {
"illuminate/console": "^9.21",
"illuminate/filesystem": "^9.21",
"illuminate/support": "^9.21",
"illuminate/validation": "^9.21",
"php": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Ui\\UiServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Laravel\\Ui\\": "src/",
"Illuminate\\Foundation\\Auth\\": "auth-backend/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"description": "Laravel UI utilities and presets.",
"keywords": [
"laravel",
"ui"
],
"support": {
"source": "https://github.com/laravel/ui/tree/v4.0.2"
},
"time": "2022-09-09T18:20:35+00:00"
},
{
"name": "league/commonmark",
"version": "2.3.5",

2937
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,10 +5,16 @@
"build": "vite build"
},
"devDependencies": {
"@popperjs/core": "^2.10.2",
"@vitejs/plugin-react": "^2.0.0",
"axios": "^0.27",
"bootstrap": "^5.2.1",
"laravel-vite-plugin": "^0.6.0",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.32.11",
"vite": "^3.0.0"
}
}

View File

@ -1 +1,15 @@
/**
* First we will load all of this project's JavaScript dependencies which
* includes React and other helpers. It's a great starting point while
* building robust, powerful web applications using React + Laravel.
*/
import './bootstrap';
/**
* Next, we will create a fresh React component instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
import './components/Example';

View File

@ -1,6 +1,8 @@
import _ from 'lodash';
window._ = _;
import 'bootstrap';
/**
* 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

View File

@ -0,0 +1,24 @@
import React from 'react';
import ReactDOM from 'react-dom';
function Example() {
return (
<div className="container">
<div className="row justify-content-center">
<div className="col-md-8">
<div className="card">
<div className="card-header">Example Component</div>
<div className="card-body">I'm an example component!</div>
</div>
</div>
</div>
</div>
);
}
export default Example;
if (document.getElementById('example')) {
ReactDOM.render(<Example />, document.getElementById('example'));
}

View File

@ -0,0 +1,7 @@
// Body
$body-bg: #f8fafc;
// Typography
$font-family-sans-serif: 'Nunito', sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;

8
resources/sass/app.scss Normal file
View File

@ -0,0 +1,8 @@
// Fonts
@import url('https://fonts.bunny.net/css?family=Nunito');
// Variables
@import 'variables';
// Bootstrap
@import 'bootstrap/scss/bootstrap';

View File

@ -1,11 +1,16 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
input: [
'resources/sass/app.scss',
'resources/js/app.js',
],
refresh: true,
}),
react(),
],
});