FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
livewire-plugin/Plugin.php at main · rainlab/livewire-plugin · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
rainlab
/
livewire-plugin
Public
Notifications
You must be signed in to change notification settings
Fork
4
Star
28
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
livewire-plugin
/
Plugin.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
139 lines (123 loc) · 3.74 KB
Breadcrumbs
livewire-plugin
/
Plugin.php
Copy path
File metadata and controls
139 lines (123 loc) · 3.74 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
namespace
RainLab
\
Livewire
;
use
Url
;
use
View
;
use
Route
;
use
Config
;
use
System
\
Classes
\
PluginManager
;
use
RainLab
\
Livewire
\
Helpers
\
LivewireHelper
;
use
RainLab
\
Livewire
\
Twig
\
LivewireTokenParser
;
use
System
\
Classes
\
PluginBase
;
use
Livewire
\
Livewire
;
/**
* Plugin for Livewire integration
*
* @package rainlab\livewire
* @author Alexey Bobkov, Samuel Georges
*/
class
Plugin
extends
PluginBase
{
/**
* pluginDetails about this plugin.
*/
public
function
pluginDetails
()
{
return
[
'
name
'
=>
'
October Livewire
'
,
'
description
'
=>
'
Integrate Laravel Livewire components inside October CMS themes.
'
,
'
author
'
=>
'
Alexey Bobkov, Samuel Georges
'
,
'
icon
'
=>
'
icon-plug
'
,
'
homepage
'
=>
'
https://github.com/rainlab/livewire-plugin
'
,
];
}
/**
* register method
*/
public
function
register
()
{
// Package missing
if
(!
class_exists
(Livewire::class)) {
return
;
}
// Ensure path is registered
View::
addLocation
(
app_path
(
'
views
'
));
Config::
set
(
'
livewire.view_path
'
,
app_path
(
'
views/livewire
'
));
Config::
set
(
'
livewire.manifest_path
'
,
cache_path
(
'
framework/livewire-components.php
'
));
Config::
set
(
'
livewire.class_namespace
'
, \
App
\Livewire::class);
}
/**
* boot
*/
public
function
boot
()
{
// Package missing
if
(!
class_exists
(Livewire::class)) {
return
;
}
// Register route for main script
if
(LivewireHelper::
isVersion4
()) {
$
this
->
setScriptRouteV4
();
}
elseif
(LivewireHelper::
isVersion3
()) {
Livewire::
setScriptRoute
(
function
(
$
handle
) {
return
config
(
'
app.debug
'
)
? Route::
get
(Url::
asset
(
'
/livewire/livewire.js
'
),
$
handle
)
: Route::
get
(Url::
asset
(
'
/livewire/livewire.min.js
'
),
$
handle
);
});
}
$
this
->
registerLivewireFromPlugins
();
}
/**
* registerComponents
*/
public
function
registerComponents
()
{
return
[
\
Rainlab
\
Livewire
\
Components
\Livewire::class =>
'
livewire
'
,
];
}
/**
* registerMarkupTags
*/
public
function
registerMarkupTags
()
{
// Package missing
if
(!
class_exists
(Livewire::class)) {
return
;
}
return
[
'
functions
'
=> [
'
livewireStyles
'
=> [LivewireHelper::class,
'
renderStyles
'
],
'
livewireScripts
'
=> [LivewireHelper::class,
'
renderScripts
'
],
'
livewireScriptConfig
'
=> [LivewireHelper::class,
'
renderScriptConfig
'
],
],
'
tokens
'
=> [
new
LivewireTokenParser
]
];
}
/**
* setScriptRouteV4 registers the script route using the Livewire 4
* EndpointResolver prefix
*/
protected
function
setScriptRouteV4
()
{
$
resolver
= \
Livewire
\
Mechanisms
\
HandleRequests
\EndpointResolver::class;
Livewire::
setScriptRoute
(
function
(
$
handle
)
use
(
$
resolver
) {
return
config
(
'
app.debug
'
)
? Route::
get
(
$
resolver
::
scriptPath
(minified:
false
),
$
handle
)
: Route::
get
(
$
resolver
::
scriptPath
(minified:
true
),
$
handle
);
});
}
/**
* registerLivewireFromPlugins
*/
protected
function
registerLivewireFromPlugins
()
{
$
pluginDetails
= PluginManager::
instance
()->
getRegistrationMethodValues
(
'
registerLivewireComponents
'
);
foreach
(
$
pluginDetails
as
$
livewireComponents
) {
foreach
(
$
livewireComponents
as
$
className
=>
$
classAlias
) {
LivewireHelper::
registerComponent
(
$
className
,
$
classAlias
);
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL