Next release (#112)
* Creation of the translation archive for the Spanish language in Spain * Fixed incorrect footer version handling and made into language pack values * Added package-lock to repo * Added a couple composer scripts and updated readme --------- Co-authored-by: Carlos V <76731844+cvc90@users.noreply.github.com>
This commit is contained in:
parent
f3a8fe44c0
commit
4ad9866c4b
11 changed files with 3517 additions and 156 deletions
|
@ -221,16 +221,21 @@ If you wanted to have the js in-line, then you can use the `-j` or `--local-js`
|
||||||
|
|
||||||
There's an old saying that goes, "If you know more than one language you're multilingual, if you don't you're British." Not only is that a damning indictment of the British mentality towards other languages, but also goes to explain why the UI has only so far been in English - because I am, for all my sins, British.
|
There's an old saying that goes, "If you know more than one language you're multilingual, if you don't you're British." Not only is that a damning indictment of the British mentality towards other languages, but also goes to explain why the UI has only so far been in English - because I am, for all my sins, British.
|
||||||
|
|
||||||
However, it is now possible to build the interface with a different language. Currently, thanks to a contributor, French is also supported. If anyone else wants to contribute additional language packs, please submit a PR!
|
However, it is now possible to build the interface with a different language. Currently, thanks to contributors, French and Spanish are also supported. If anyone else wants to contribute additional language packs, please submit a PR!
|
||||||
|
|
||||||
If the language pack is in the `build/_languages/` directory then you can use that with the `-l` or `--lang` flag. For example, if there is a `fr.json` language pack then you can use `php ./build/build.php -l fr` in order to build with that language.
|
If the language pack is in the `build/_languages/` directory then you can use that with the `-l` or `--lang` flag. For example, if there is a `fr.json` language pack then you can use `php ./build/build.php -l fr` in order to build with that language.
|
||||||
|
|
||||||
|
There have been a few composer scripts added to help with the building. They are, `composer build`, `composer build-french`, and `composer build-spanish`.
|
||||||
|
|
||||||
If you want to create a language file then `build/_languages/example.json` contains all you need. It's a simple json structure with the key being the English version which matches what's in the UI, and the value is what you're converting it to - which in the example file is just blank. If a value is empty or the index doesn't exist for a translation, then it'll just use the English version. This gives you the ability to replace some or all of the interface strings as you see fit.
|
If you want to create a language file then `build/_languages/example.json` contains all you need. It's a simple json structure with the key being the English version which matches what's in the UI, and the value is what you're converting it to - which in the example file is just blank. If a value is empty or the index doesn't exist for a translation, then it'll just use the English version. This gives you the ability to replace some or all of the interface strings as you see fit.
|
||||||
|
|
||||||
So to get started with a new language, copy the `example.json` to the language you want that doesn't already exist - for example, `pt-br.json`. Then fill in the translations into the values. Once done, rebuild with `php ./build/build.php -l pt-br`.
|
To get started with a new language, copy the `example.json` to the language you want that doesn't already exist - for example, `pt-br.json` or `pirate.json`. Then fill in the translations into the values. Once done, rebuild with `php ./build/build.php -l pt-br` or `php ./build/build.php -l pirate`.
|
||||||
|
|
||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
|
**Version 3.5.5**\
|
||||||
|
Added Spanish translations thanks to @cvc90 (PR#110)
|
||||||
|
|
||||||
**Version 3.5.4**\
|
**Version 3.5.4**\
|
||||||
Better handling of whether JIT is enabled or disabled. Now also shows _why_ it might be disabled even if you have the setting turned on. The interface also disables the graph and memory stats correctly for JIT if it's disabled for any reason.
|
Better handling of whether JIT is enabled or disabled. Now also shows _why_ it might be disabled even if you have the setting turned on. The interface also disables the graph and memory stats correctly for JIT if it's disabled for any reason.
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,10 @@ class Interface extends React.Component {
|
||||||
txt={this.txt}
|
txt={this.txt}
|
||||||
/>
|
/>
|
||||||
</header>
|
</header>
|
||||||
<Footer version={this.props.opstate.version.gui} />
|
<Footer
|
||||||
|
version={this.props.opstate.version.gui}
|
||||||
|
txt={this.txt}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1187,13 +1190,13 @@ function Footer(props) {
|
||||||
<footer className="main-footer">
|
<footer className="main-footer">
|
||||||
<a className="github-link" href="https://github.com/amnuts/opcache-gui"
|
<a className="github-link" href="https://github.com/amnuts/opcache-gui"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
title="opcache-gui (currently version {props.version}) on GitHub"
|
title={props.txt("opcache-gui (currently version {0}) on GitHub", props.version)}
|
||||||
>https://github.com/amnuts/opcache-gui - version {props.version}</a>
|
>https://github.com/amnuts/opcache-gui - {props.txt("version {0}", props.version)}</a>
|
||||||
|
|
||||||
<a className="sponsor-link" href="https://github.com/sponsors/amnuts"
|
<a className="sponsor-link" href="https://github.com/sponsors/amnuts"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
title="Sponsor this project and author on GitHub"
|
title={props.txt("Sponsor this project and author on GitHub")}
|
||||||
>Sponsor this project</a>
|
>{props.txt("Sponsor this project")}</a>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
113
build/_languages/es.json
Normal file
113
build/_languages/es.json
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
{
|
||||||
|
"(unsafe) Collect constants": "(inestable) Recoger las constantes",
|
||||||
|
"++, +=, series of jumps": "++, +=, series de saltos",
|
||||||
|
"Adjust used stack": "Ajustar pila usada",
|
||||||
|
"Ascending": "Ascendente",
|
||||||
|
"Available functions": "Funciones disponibles",
|
||||||
|
"blacklist misses": "fallos en la blacklist",
|
||||||
|
"buffer size": "tamaño del búfer",
|
||||||
|
"Cached": "En cache",
|
||||||
|
"CALL GRAPH optimization": "Optimización CALL GRAPH",
|
||||||
|
"CFG based optimization": "Optimización basada en CFG",
|
||||||
|
"Compile all functions on script load": "Compilar todas las funciones al cargar el script",
|
||||||
|
"Compile functions on first execution": "Compilar funciones en la primera ejecución",
|
||||||
|
"Constant conversion and jumps": "Conversión constante y saltos",
|
||||||
|
"CPU-specific optimization": "Optimización específica de la CPU",
|
||||||
|
"CSE, STRING construction": "Construcción CSE, STRING",
|
||||||
|
"Currently unused": "Actualmente sin utilizar",
|
||||||
|
"DCE (dead code elimination)": "DCE (eliminación del código muerto)",
|
||||||
|
"Descending": "Descendente",
|
||||||
|
"DFA based optimization": "Optimización basada en DFA",
|
||||||
|
"Directives": "Directivas",
|
||||||
|
"Disable CPU-specific optimization": "Desactivar la optimización específica de la CPU",
|
||||||
|
"Disable real-time update": "Desactivar la actualización en tiempo real",
|
||||||
|
"Do not perform register allocation": "No realizar la asignación de registros",
|
||||||
|
"Enable real-time update": "Activar la actualización en tiempo real",
|
||||||
|
"Enable use of AVX, if the CPU supports it": "Habilitar el uso de AVX, si la CPU lo soporta",
|
||||||
|
"false": "falso",
|
||||||
|
"File list pagination": "Paginación de la lista de archivos",
|
||||||
|
"force file invalidation": "forzar la invalidación de archivos",
|
||||||
|
"free memory": "memoria libre",
|
||||||
|
"General info": "Información general",
|
||||||
|
"has been invalidated": "se ha invalidado",
|
||||||
|
"hit rate": "índice de aciertos",
|
||||||
|
"hits": "hits",
|
||||||
|
"Host": "Host",
|
||||||
|
"Ignored": "Ignorado",
|
||||||
|
"INIT_FCALL_BY_NAME -> DO_FCALL": "INIT_FCALL_BY_NAME -> DO_FCALL",
|
||||||
|
"Inline functions": "Funciones inline",
|
||||||
|
"Inline VM handlers": "Controladores de VM en línea",
|
||||||
|
"interned strings usage": "utilización de cadenas internas",
|
||||||
|
"Invalidate all matching files": "Invalidar todos los ficheros coincidentes",
|
||||||
|
"jit buffer free": "búfer jit libre",
|
||||||
|
"jit buffer": "búfer jit",
|
||||||
|
"keys": "llaves",
|
||||||
|
"Last modified": "Última modificación",
|
||||||
|
"last modified": "última modificaciónn",
|
||||||
|
"Last reset": "Último reinicio",
|
||||||
|
"Last used": "Último uso",
|
||||||
|
"last used": "último uso",
|
||||||
|
"max cached keys": "llaves máximas en caché",
|
||||||
|
"Memory consumption": "Consumo de memoria",
|
||||||
|
"memory usage": "uso de memoria",
|
||||||
|
"memory": "memoria",
|
||||||
|
"Merge equal constants": "Fusionar las constantes iguales",
|
||||||
|
"Minimal JIT (call standard VM handlers)": "JIT mínimo (llame a controladores de VM estándar)",
|
||||||
|
"never": "nunca",
|
||||||
|
"Next": "Siguiente",
|
||||||
|
"No files have been cached or you have <i>opcache.file_cache_only<\/i> turned on": "No se han almacenado archivos en caché o tiene <i>opcache.file_cache_only<\/i> activado",
|
||||||
|
"No files have been ignored via <i>opcache.blacklist_filename<\/i>": "No se han ignorado archivos a través de <i>opcache.blacklist_filename<\/i>",
|
||||||
|
"No files have been preloaded <i>opcache.preload<\/i>": "No se han precargado archivos <i>opcache.preload<\/i>",
|
||||||
|
"No JIT": "No JIT",
|
||||||
|
"no value": "sin valor",
|
||||||
|
"NOP removal": "Eliminación de NOP",
|
||||||
|
"number of cached files": "número de archivos en caché",
|
||||||
|
"number of cached keys": "número de llaves en caché",
|
||||||
|
"Number of hits": "Número de hits",
|
||||||
|
"number of hits": "número de hits",
|
||||||
|
"number of misses": "número de misses",
|
||||||
|
"number of strings": "número de cadenas",
|
||||||
|
"opcache statistics": "estadísticas de opcache",
|
||||||
|
"Optimization level": "Nivel de optimización",
|
||||||
|
"Optimize whole script": "Optimizar todo el script",
|
||||||
|
"Overview": "Visión general",
|
||||||
|
"Path": "Ruta",
|
||||||
|
"Perform block-local register allocation": "Asignación de registros a nivel local de bloque",
|
||||||
|
"Perform global register allocation": "Realizar la asignación global de registros",
|
||||||
|
"preload memory": "precargar la memoria",
|
||||||
|
"Preloaded": "Precargado",
|
||||||
|
"Previous": "Anterior",
|
||||||
|
"Profile functions on first request and compile the hottest functions afterwards": "Perfile las funciones en la primera solicitud y luego recopile las funciones más populares",
|
||||||
|
"Profile on the fly and compile hot functions": "Perfilar sobre la marcha y compilar funciones en caliente",
|
||||||
|
"Register allocation": "Asignación de registros",
|
||||||
|
"Remove unused variables": "Eliminar variables no utilizadas",
|
||||||
|
"Reset cache": "Restablecer la caché",
|
||||||
|
"SCCP (constant propagation)": "SCCP (propagación de constantes)",
|
||||||
|
"Script": "Script",
|
||||||
|
"Server Software": "Software de servidor",
|
||||||
|
"Sort order": "Orden de clasificación",
|
||||||
|
"Start time": "Hora de inicio",
|
||||||
|
"Start typing to filter on script path": "Empiece a escribir para filtrar por ruta del script",
|
||||||
|
"TMP VAR usage": "Utilización de TMP VAR",
|
||||||
|
"total memory": "memoria total",
|
||||||
|
"Trigger": "Disparador",
|
||||||
|
"true": "verdadero",
|
||||||
|
"Use call graph": "Utilizar el gráfico de llamadas",
|
||||||
|
"Use tracing JIT. Profile on the fly and compile traces for hot code segments": "Utilice el trazado JIT. Perfila sobre la marcha y compila trazas para segmentos de código calientes.",
|
||||||
|
"Use type inference": "Utilizar la inferencia de tipos",
|
||||||
|
"used memory": "memoria utilizada",
|
||||||
|
"View manual page": "Ver la página del manual",
|
||||||
|
"View {0} manual entry": "Ver {0} entrada manual",
|
||||||
|
"wasted memory": "memoria perdida",
|
||||||
|
"You have <i>opcache.file_cache_only<\/i> turned on. As a result, the memory information is not available. Statistics and file list may also not be returned by <i>opcache_get_statistics()<\/i>.": "Tienes <i>opcache.file_cache_only</i> activado. Como resultado, la información de la memoria no está disponible. Es posible que las estadísticas y la lista de archivos tampoco sean devueltas por <i>opcache_get_statistics()<\/i>.",
|
||||||
|
"{0} files cached": "{0} archivos almacenados en caché",
|
||||||
|
"{0} files cached, {1} showing due to filter '{2}'": "{0} archivos almacenados en caché, {1} se visualizan debido al filtro '{2}'",
|
||||||
|
"{0} ignore file locations": "{0} ignorar ubicaciones de archivos",
|
||||||
|
"{0} preloaded files": "{0} archivos precargados",
|
||||||
|
"JIT enabled": "JIT activado",
|
||||||
|
"disabled due to <i>opcache.jit</i> setting": "ddesactivado debido a la configuración de <i>opcache.jit</i>",
|
||||||
|
"the <i>opcache.jit_buffer_size</i> must be set to fully enable JIT": "el <i>opcache.jit_buffer_size</i> debe estar configurado para habilitar completamente JIT",
|
||||||
|
"incompatible with extensions that override <i>zend_execute_ex()</i>, such as <i>xdebug</i>": "incompatible con las extensiones que anulan <i>zend_execute_ex()</i>, como <i>xdebug</i>",
|
||||||
|
"Yes": "Sí",
|
||||||
|
"No": "No"
|
||||||
|
}
|
|
@ -21,6 +21,7 @@
|
||||||
"Directives": "",
|
"Directives": "",
|
||||||
"Disable CPU-specific optimization": "",
|
"Disable CPU-specific optimization": "",
|
||||||
"Disable real-time update": "",
|
"Disable real-time update": "",
|
||||||
|
"disabled due to <i>opcache.jit</i> setting": "",
|
||||||
"Do not perform register allocation": "",
|
"Do not perform register allocation": "",
|
||||||
"Enable real-time update": "",
|
"Enable real-time update": "",
|
||||||
"Enable use of AVX, if the CPU supports it": "",
|
"Enable use of AVX, if the CPU supports it": "",
|
||||||
|
@ -34,6 +35,7 @@
|
||||||
"hits": "",
|
"hits": "",
|
||||||
"Host": "",
|
"Host": "",
|
||||||
"Ignored": "",
|
"Ignored": "",
|
||||||
|
"incompatible with extensions that override <i>zend_execute_ex()</i>, such as <i>xdebug</i>": "",
|
||||||
"INIT_FCALL_BY_NAME -> DO_FCALL": "",
|
"INIT_FCALL_BY_NAME -> DO_FCALL": "",
|
||||||
"Inline functions": "",
|
"Inline functions": "",
|
||||||
"Inline VM handlers": "",
|
"Inline VM handlers": "",
|
||||||
|
@ -41,6 +43,7 @@
|
||||||
"Invalidate all matching files": "",
|
"Invalidate all matching files": "",
|
||||||
"jit buffer free": "",
|
"jit buffer free": "",
|
||||||
"jit buffer": "",
|
"jit buffer": "",
|
||||||
|
"JIT enabled": "",
|
||||||
"keys": "",
|
"keys": "",
|
||||||
"Last modified": "",
|
"Last modified": "",
|
||||||
"last modified": "",
|
"last modified": "",
|
||||||
|
@ -60,6 +63,7 @@
|
||||||
"No files have been preloaded <i>opcache.preload<\/i>": "",
|
"No files have been preloaded <i>opcache.preload<\/i>": "",
|
||||||
"No JIT": "",
|
"No JIT": "",
|
||||||
"no value": "",
|
"no value": "",
|
||||||
|
"No": "",
|
||||||
"NOP removal": "",
|
"NOP removal": "",
|
||||||
"number of cached files": "",
|
"number of cached files": "",
|
||||||
"number of cached keys": "",
|
"number of cached keys": "",
|
||||||
|
@ -86,8 +90,11 @@
|
||||||
"Script": "",
|
"Script": "",
|
||||||
"Server Software": "",
|
"Server Software": "",
|
||||||
"Sort order": "",
|
"Sort order": "",
|
||||||
|
"Sponsor this project and author on GitHub": "",
|
||||||
|
"Sponsor this project": "",
|
||||||
"Start time": "",
|
"Start time": "",
|
||||||
"Start typing to filter on script path": "",
|
"Start typing to filter on script path": "",
|
||||||
|
"the <i>opcache.jit_buffer_size</i> must be set to fully enable JIT": "",
|
||||||
"TMP VAR usage": "",
|
"TMP VAR usage": "",
|
||||||
"total memory": "",
|
"total memory": "",
|
||||||
"Trigger": "",
|
"Trigger": "",
|
||||||
|
@ -96,18 +103,14 @@
|
||||||
"Use tracing JIT. Profile on the fly and compile traces for hot code segments": "",
|
"Use tracing JIT. Profile on the fly and compile traces for hot code segments": "",
|
||||||
"Use type inference": "",
|
"Use type inference": "",
|
||||||
"used memory": "",
|
"used memory": "",
|
||||||
|
"version {0}": "",
|
||||||
"View manual page": "",
|
"View manual page": "",
|
||||||
"View {0} manual entry": "",
|
"View {0} manual entry": "",
|
||||||
"wasted memory": "",
|
"wasted memory": "",
|
||||||
|
"Yes": "",
|
||||||
"You have <i>opcache.file_cache_only<\/i> turned on. As a result, the memory information is not available. Statistics and file list may also not be returned by <i>opcache_get_statistics()<\/i>.": "",
|
"You have <i>opcache.file_cache_only<\/i> turned on. As a result, the memory information is not available. Statistics and file list may also not be returned by <i>opcache_get_statistics()<\/i>.": "",
|
||||||
"{0} files cached": "",
|
"{0} files cached": "",
|
||||||
"{0} files cached, {1} showing due to filter '{2}'": "",
|
"{0} files cached, {1} showing due to filter '{2}'": "",
|
||||||
"{0} ignore file locations": "",
|
"{0} ignore file locations": "",
|
||||||
"{0} preloaded files": "",
|
"{0} preloaded files": ""
|
||||||
"JIT enabled": "",
|
|
||||||
"disabled due to <i>opcache.jit</i> setting": "",
|
|
||||||
"the <i>opcache.jit_buffer_size</i> must be set to fully enable JIT": "",
|
|
||||||
"incompatible with extensions that override <i>zend_execute_ex()</i>, such as <i>xdebug</i>": "",
|
|
||||||
"Yes": "",
|
|
||||||
"No": ""
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* OPcache GUI - build script
|
* OPcache GUI - build script
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.4
|
* @version 3.5.5
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.4
|
* @version 3.5.5
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -31,6 +31,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "php build/build.php"
|
"build": "php build/build.php",
|
||||||
|
"build-french": "php build/build.php --lang fr",
|
||||||
|
"build-spanish": "php build/build.php --lang es"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
147
index.php
147
index.php
|
@ -6,7 +6,7 @@
|
||||||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.4
|
* @version 3.5.5
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
@ -59,7 +59,7 @@ header('Pragma: no-cache');
|
||||||
|
|
||||||
class Service
|
class Service
|
||||||
{
|
{
|
||||||
public const VERSION = '3.5.4';
|
public const VERSION = '3.5.5';
|
||||||
|
|
||||||
protected $tz;
|
protected $tz;
|
||||||
protected $data;
|
protected $data;
|
||||||
|
@ -538,14 +538,13 @@ $opcache = (new Service($options))->handle();
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
||||||
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
||||||
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||||
class Interface extends React.Component {
|
class Interface extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "startTimer", () => {
|
_defineProperty(this, "startTimer", () => {
|
||||||
this.setState({
|
this.setState({
|
||||||
realtime: true
|
realtime: true
|
||||||
|
@ -564,7 +563,6 @@ class Interface extends React.Component {
|
||||||
});
|
});
|
||||||
}, this.props.realtimeRefresh * 1000);
|
}, this.props.realtimeRefresh * 1000);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "stopTimer", () => {
|
_defineProperty(this, "stopTimer", () => {
|
||||||
this.setState({
|
this.setState({
|
||||||
realtime: false,
|
realtime: false,
|
||||||
|
@ -572,10 +570,8 @@ class Interface extends React.Component {
|
||||||
});
|
});
|
||||||
clearInterval(this.polling);
|
clearInterval(this.polling);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "realtimeHandler", () => {
|
_defineProperty(this, "realtimeHandler", () => {
|
||||||
const realtime = !this.state.realtime;
|
const realtime = !this.state.realtime;
|
||||||
|
|
||||||
if (!realtime) {
|
if (!realtime) {
|
||||||
this.stopTimer();
|
this.stopTimer();
|
||||||
this.removeCookie();
|
this.removeCookie();
|
||||||
|
@ -584,7 +580,6 @@ class Interface extends React.Component {
|
||||||
this.setCookie();
|
this.setCookie();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "resetHandler", () => {
|
_defineProperty(this, "resetHandler", () => {
|
||||||
if (this.state.realtime) {
|
if (this.state.realtime) {
|
||||||
this.setState({
|
this.setState({
|
||||||
|
@ -601,33 +596,27 @@ class Interface extends React.Component {
|
||||||
window.location.href = '?reset=1';
|
window.location.href = '?reset=1';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "setCookie", () => {
|
_defineProperty(this, "setCookie", () => {
|
||||||
let d = new Date();
|
let d = new Date();
|
||||||
d.setTime(d.getTime() + this.props.cookie.ttl * 86400000);
|
d.setTime(d.getTime() + this.props.cookie.ttl * 86400000);
|
||||||
document.cookie = `${this.props.cookie.name}=true;expires=${d.toUTCString()};path=/${this.isSecure ? ';secure' : ''}`;
|
document.cookie = `${this.props.cookie.name}=true;expires=${d.toUTCString()};path=/${this.isSecure ? ';secure' : ''}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "removeCookie", () => {
|
_defineProperty(this, "removeCookie", () => {
|
||||||
document.cookie = `${this.props.cookie.name}=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/${this.isSecure ? ';secure' : ''}`;
|
document.cookie = `${this.props.cookie.name}=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/${this.isSecure ? ';secure' : ''}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getCookie", () => {
|
_defineProperty(this, "getCookie", () => {
|
||||||
const v = document.cookie.match(`(^|;) ?${this.props.cookie.name}=([^;]*)(;|$)`);
|
const v = document.cookie.match(`(^|;) ?${this.props.cookie.name}=([^;]*)(;|$)`);
|
||||||
return v ? !!v[2] : false;
|
return v ? !!v[2] : false;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "txt", (text, ...args) => {
|
_defineProperty(this, "txt", (text, ...args) => {
|
||||||
if (this.props.language !== null && this.props.language.hasOwnProperty(text) && this.props.language[text]) {
|
if (this.props.language !== null && this.props.language.hasOwnProperty(text) && this.props.language[text]) {
|
||||||
text = this.props.language[text];
|
text = this.props.language[text];
|
||||||
}
|
}
|
||||||
|
|
||||||
args.forEach((arg, i) => {
|
args.forEach((arg, i) => {
|
||||||
text = text.replaceAll(`{${i}}`, arg);
|
text = text.replaceAll(`{${i}}`, arg);
|
||||||
});
|
});
|
||||||
return text;
|
return text;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
realtime: this.getCookie(),
|
realtime: this.getCookie(),
|
||||||
resetting: false,
|
resetting: false,
|
||||||
|
@ -635,12 +624,10 @@ class Interface extends React.Component {
|
||||||
};
|
};
|
||||||
this.polling = false;
|
this.polling = false;
|
||||||
this.isSecure = window.location.protocol === 'https:';
|
this.isSecure = window.location.protocol === 'https:';
|
||||||
|
|
||||||
if (this.getCookie()) {
|
if (this.getCookie()) {
|
||||||
this.startTimer();
|
this.startTimer();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
opstate,
|
opstate,
|
||||||
|
@ -655,12 +642,11 @@ class Interface extends React.Component {
|
||||||
resetHandler: this.resetHandler,
|
resetHandler: this.resetHandler,
|
||||||
txt: this.txt
|
txt: this.txt
|
||||||
}))), /*#__PURE__*/React.createElement(Footer, {
|
}))), /*#__PURE__*/React.createElement(Footer, {
|
||||||
version: this.props.opstate.version.gui
|
version: this.props.opstate.version.gui,
|
||||||
|
txt: this.txt
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function MainNavigation(props) {
|
function MainNavigation(props) {
|
||||||
return /*#__PURE__*/React.createElement("nav", {
|
return /*#__PURE__*/React.createElement("nav", {
|
||||||
className: "main-nav"
|
className: "main-nav"
|
||||||
|
@ -739,22 +725,18 @@ function MainNavigation(props) {
|
||||||
tabIndex: 6
|
tabIndex: 6
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
|
|
||||||
class Tabs extends React.Component {
|
class Tabs extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "onClickTabItem", tab => {
|
_defineProperty(this, "onClickTabItem", tab => {
|
||||||
this.setState({
|
this.setState({
|
||||||
activeTab: tab
|
activeTab: tab
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
activeTab: this.props.children[0].props.label
|
activeTab: this.props.children[0].props.label
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
onClickTabItem,
|
onClickTabItem,
|
||||||
|
@ -792,13 +774,10 @@ class Tabs extends React.Component {
|
||||||
id: `${child.props.tabId}-content`
|
id: `${child.props.tabId}-content`
|
||||||
}, child.props.children))));
|
}, child.props.children))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Tab extends React.Component {
|
class Tab extends React.Component {
|
||||||
constructor(...args) {
|
constructor(...args) {
|
||||||
super(...args);
|
super(...args);
|
||||||
|
|
||||||
_defineProperty(this, "onClick", () => {
|
_defineProperty(this, "onClick", () => {
|
||||||
const {
|
const {
|
||||||
label,
|
label,
|
||||||
|
@ -807,7 +786,6 @@ class Tab extends React.Component {
|
||||||
onClick(label);
|
onClick(label);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
onClick,
|
onClick,
|
||||||
|
@ -819,15 +797,12 @@ class Tab extends React.Component {
|
||||||
}
|
}
|
||||||
} = this;
|
} = this;
|
||||||
let className = 'nav-tab';
|
let className = 'nav-tab';
|
||||||
|
|
||||||
if (this.props.className) {
|
if (this.props.className) {
|
||||||
className += ` ${this.props.className}`;
|
className += ` ${this.props.className}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (activeTab === label) {
|
if (activeTab === label) {
|
||||||
className += ' active';
|
className += ' active';
|
||||||
}
|
}
|
||||||
|
|
||||||
return /*#__PURE__*/React.createElement("li", {
|
return /*#__PURE__*/React.createElement("li", {
|
||||||
className: className,
|
className: className,
|
||||||
onClick: onClick,
|
onClick: onClick,
|
||||||
|
@ -836,16 +811,13 @@ class Tab extends React.Component {
|
||||||
"aria-controls": `${tabId}-content`
|
"aria-controls": `${tabId}-content`
|
||||||
}, label);
|
}, label);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function OverviewCounts(props) {
|
function OverviewCounts(props) {
|
||||||
if (props.overview === false) {
|
if (props.overview === false) {
|
||||||
return /*#__PURE__*/React.createElement("p", {
|
return /*#__PURE__*/React.createElement("p", {
|
||||||
class: "file-cache-only"
|
class: "file-cache-only"
|
||||||
}, props.txt(`You have <i>opcache.file_cache_only</i> turned on. As a result, the memory information is not available. Statistics and file list may also not be returned by <i>opcache_get_statistics()</i>.`));
|
}, props.txt(`You have <i>opcache.file_cache_only</i> turned on. As a result, the memory information is not available. Statistics and file list may also not be returned by <i>opcache_get_statistics()</i>.`));
|
||||||
}
|
}
|
||||||
|
|
||||||
const graphList = [{
|
const graphList = [{
|
||||||
id: 'memoryUsageCanvas',
|
id: 'memoryUsageCanvas',
|
||||||
title: props.txt('memory'),
|
title: props.txt('memory'),
|
||||||
|
@ -874,7 +846,6 @@ function OverviewCounts(props) {
|
||||||
if (!graph.show) {
|
if (!graph.show) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return /*#__PURE__*/React.createElement("div", {
|
return /*#__PURE__*/React.createElement("div", {
|
||||||
className: "widget-panel",
|
className: "widget-panel",
|
||||||
key: graph.id
|
key: graph.id
|
||||||
|
@ -912,7 +883,6 @@ function OverviewCounts(props) {
|
||||||
txt: props.txt
|
txt: props.txt
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
function GeneralInfo(props) {
|
function GeneralInfo(props) {
|
||||||
return /*#__PURE__*/React.createElement("table", {
|
return /*#__PURE__*/React.createElement("table", {
|
||||||
className: "tables general-info-table"
|
className: "tables general-info-table"
|
||||||
|
@ -924,7 +894,6 @@ function GeneralInfo(props) {
|
||||||
}
|
}
|
||||||
})))));
|
})))));
|
||||||
}
|
}
|
||||||
|
|
||||||
function Directives(props) {
|
function Directives(props) {
|
||||||
let directiveList = directive => {
|
let directiveList = directive => {
|
||||||
return /*#__PURE__*/React.createElement("ul", {
|
return /*#__PURE__*/React.createElement("ul", {
|
||||||
|
@ -939,7 +908,6 @@ function Directives(props) {
|
||||||
}, item);
|
}, item);
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
|
||||||
let directiveNodes = props.directives.map(function (directive) {
|
let directiveNodes = props.directives.map(function (directive) {
|
||||||
let map = {
|
let map = {
|
||||||
'opcache.': '',
|
'opcache.': '',
|
||||||
|
@ -949,7 +917,6 @@ function Directives(props) {
|
||||||
return map[matched];
|
return map[matched];
|
||||||
});
|
});
|
||||||
let vShow;
|
let vShow;
|
||||||
|
|
||||||
if (directive.v === true || directive.v === false) {
|
if (directive.v === true || directive.v === false) {
|
||||||
vShow = React.createElement('i', {}, props.txt(directive.v.toString()));
|
vShow = React.createElement('i', {}, props.txt(directive.v.toString()));
|
||||||
} else if (directive.v === '') {
|
} else if (directive.v === '') {
|
||||||
|
@ -961,15 +928,12 @@ function Directives(props) {
|
||||||
vShow = directive.v;
|
vShow = directive.v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let directiveLink = name => {
|
let directiveLink = name => {
|
||||||
if (name === 'opcache.jit_max_recursive_returns') {
|
if (name === 'opcache.jit_max_recursive_returns') {
|
||||||
return 'opcache.jit-max-recursive-return';
|
return 'opcache.jit-max-recursive-return';
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['opcache.file_update_protection', 'opcache.huge_code_pages', 'opcache.lockfile_path', 'opcache.opt_debug_level'].includes(name) ? name : name.replace(/_/g, '-');
|
return ['opcache.file_update_protection', 'opcache.huge_code_pages', 'opcache.lockfile_path', 'opcache.opt_debug_level'].includes(name) ? name : name.replace(/_/g, '-');
|
||||||
};
|
};
|
||||||
|
|
||||||
return /*#__PURE__*/React.createElement("tr", {
|
return /*#__PURE__*/React.createElement("tr", {
|
||||||
key: directive.k
|
key: directive.k
|
||||||
}, /*#__PURE__*/React.createElement("td", {
|
}, /*#__PURE__*/React.createElement("td", {
|
||||||
|
@ -985,7 +949,6 @@ function Directives(props) {
|
||||||
colSpan: "2"
|
colSpan: "2"
|
||||||
}, props.txt('Directives')))), /*#__PURE__*/React.createElement("tbody", null, directiveNodes));
|
}, props.txt('Directives')))), /*#__PURE__*/React.createElement("tbody", null, directiveNodes));
|
||||||
}
|
}
|
||||||
|
|
||||||
function Functions(props) {
|
function Functions(props) {
|
||||||
return /*#__PURE__*/React.createElement("div", {
|
return /*#__PURE__*/React.createElement("div", {
|
||||||
id: "functions"
|
id: "functions"
|
||||||
|
@ -999,7 +962,6 @@ function Functions(props) {
|
||||||
target: "_blank"
|
target: "_blank"
|
||||||
}, f)))))));
|
}, f)))))));
|
||||||
}
|
}
|
||||||
|
|
||||||
function UsageGraph(props) {
|
function UsageGraph(props) {
|
||||||
const percentage = Math.round(3.6 * props.value / 360 * 100);
|
const percentage = Math.round(3.6 * props.value / 360 * 100);
|
||||||
return props.charts ? /*#__PURE__*/React.createElement(ReactCustomizableProgressbar, {
|
return props.charts ? /*#__PURE__*/React.createElement(ReactCustomizableProgressbar, {
|
||||||
|
@ -1016,22 +978,19 @@ function UsageGraph(props) {
|
||||||
className: "large"
|
className: "large"
|
||||||
}, percentage), /*#__PURE__*/React.createElement("span", null, "%"));
|
}, percentage), /*#__PURE__*/React.createElement("span", null, "%"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This component is from <https://github.com/martyan/react-customizable-progressbar/>
|
* This component is from <https://github.com/martyan/react-customizable-progressbar/>
|
||||||
* MIT License (MIT), Copyright (c) 2019 Martin Juzl
|
* MIT License (MIT), Copyright (c) 2019 Martin Juzl
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
class ReactCustomizableProgressbar extends React.Component {
|
class ReactCustomizableProgressbar extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "initAnimation", () => {
|
_defineProperty(this, "initAnimation", () => {
|
||||||
this.setState({
|
this.setState({
|
||||||
animationInited: true
|
animationInited: true
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getProgress", () => {
|
_defineProperty(this, "getProgress", () => {
|
||||||
const {
|
const {
|
||||||
initialAnimation,
|
initialAnimation,
|
||||||
|
@ -1042,7 +1001,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
} = this.state;
|
} = this.state;
|
||||||
return initialAnimation && !animationInited ? 0 : progress;
|
return initialAnimation && !animationInited ? 0 : progress;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getStrokeDashoffset", strokeLength => {
|
_defineProperty(this, "getStrokeDashoffset", strokeLength => {
|
||||||
const {
|
const {
|
||||||
counterClockwise,
|
counterClockwise,
|
||||||
|
@ -1054,7 +1012,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
if (inverse) return counterClockwise ? 0 : progressLength - strokeLength;
|
if (inverse) return counterClockwise ? 0 : progressLength - strokeLength;
|
||||||
return counterClockwise ? -1 * progressLength : progressLength;
|
return counterClockwise ? -1 * progressLength : progressLength;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getStrokeDashArray", (strokeLength, circumference) => {
|
_defineProperty(this, "getStrokeDashArray", (strokeLength, circumference) => {
|
||||||
const {
|
const {
|
||||||
counterClockwise,
|
counterClockwise,
|
||||||
|
@ -1066,7 +1023,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
if (inverse) return `${progressLength}, ${circumference}`;
|
if (inverse) return `${progressLength}, ${circumference}`;
|
||||||
return counterClockwise ? `${strokeLength * (progress / 100)}, ${circumference}` : `${strokeLength}, ${circumference}`;
|
return counterClockwise ? `${strokeLength * (progress / 100)}, ${circumference}` : `${strokeLength}, ${circumference}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getTrackStrokeDashArray", (strokeLength, circumference) => {
|
_defineProperty(this, "getTrackStrokeDashArray", (strokeLength, circumference) => {
|
||||||
const {
|
const {
|
||||||
initialAnimation
|
initialAnimation
|
||||||
|
@ -1077,7 +1033,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
if (initialAnimation && !animationInited) return `0, ${circumference}`;
|
if (initialAnimation && !animationInited) return `0, ${circumference}`;
|
||||||
return `${strokeLength}, ${circumference}`;
|
return `${strokeLength}, ${circumference}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getExtendedWidth", () => {
|
_defineProperty(this, "getExtendedWidth", () => {
|
||||||
const {
|
const {
|
||||||
strokeWidth,
|
strokeWidth,
|
||||||
|
@ -1088,7 +1043,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
const pointerWidth = pointerRadius + pointerStrokeWidth;
|
const pointerWidth = pointerRadius + pointerStrokeWidth;
|
||||||
if (pointerWidth > strokeWidth && pointerWidth > trackStrokeWidth) return pointerWidth * 2;else if (strokeWidth > trackStrokeWidth) return strokeWidth * 2;else return trackStrokeWidth * 2;
|
if (pointerWidth > strokeWidth && pointerWidth > trackStrokeWidth) return pointerWidth * 2;else if (strokeWidth > trackStrokeWidth) return strokeWidth * 2;else return trackStrokeWidth * 2;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "getPointerAngle", () => {
|
_defineProperty(this, "getPointerAngle", () => {
|
||||||
const {
|
const {
|
||||||
cut,
|
cut,
|
||||||
|
@ -1098,12 +1052,10 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
const progress = this.getProgress();
|
const progress = this.getProgress();
|
||||||
return counterClockwise ? (360 - cut) / steps * (steps - progress) : (360 - cut) / steps * progress;
|
return counterClockwise ? (360 - cut) / steps * (steps - progress) : (360 - cut) / steps * progress;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
animationInited: false
|
animationInited: false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const {
|
const {
|
||||||
initialAnimation,
|
initialAnimation,
|
||||||
|
@ -1111,7 +1063,6 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
} = this.props;
|
} = this.props;
|
||||||
if (initialAnimation) setTimeout(this.initAnimation, initialAnimationDelay);
|
if (initialAnimation) setTimeout(this.initAnimation, initialAnimationDelay);
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
radius,
|
radius,
|
||||||
|
@ -1191,9 +1142,7 @@ class ReactCustomizableProgressbar extends React.Component {
|
||||||
className: `widget-value`
|
className: `widget-value`
|
||||||
}, progress, "%"));
|
}, progress, "%"));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ReactCustomizableProgressbar.defaultProps = {
|
ReactCustomizableProgressbar.defaultProps = {
|
||||||
radius: 100,
|
radius: 100,
|
||||||
progress: 0,
|
progress: 0,
|
||||||
|
@ -1218,7 +1167,6 @@ ReactCustomizableProgressbar.defaultProps = {
|
||||||
initialAnimation: false,
|
initialAnimation: false,
|
||||||
initialAnimationDelay: 0
|
initialAnimationDelay: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
function MemoryUsagePanel(props) {
|
function MemoryUsagePanel(props) {
|
||||||
return /*#__PURE__*/React.createElement("div", {
|
return /*#__PURE__*/React.createElement("div", {
|
||||||
className: "widget-panel"
|
className: "widget-panel"
|
||||||
|
@ -1228,7 +1176,6 @@ function MemoryUsagePanel(props) {
|
||||||
className: "widget-value widget-info"
|
className: "widget-value widget-info"
|
||||||
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('total memory'), ":"), " ", props.total), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('used memory'), ":"), " ", props.used), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('free memory'), ":"), " ", props.free), props.preload && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('preload memory'), ":"), " ", props.preload), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('wasted memory'), ":"), " ", props.wasted, " (", props.wastedPercent, "%)"), props.jitBuffer && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('jit buffer'), ":"), " ", props.jitBuffer), props.jitBufferFree && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('jit buffer free'), ":"), " ", props.jitBufferFree, " (", 100 - props.jitBufferFreePercentage, "%)")));
|
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('total memory'), ":"), " ", props.total), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('used memory'), ":"), " ", props.used), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('free memory'), ":"), " ", props.free), props.preload && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('preload memory'), ":"), " ", props.preload), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('wasted memory'), ":"), " ", props.wasted, " (", props.wastedPercent, "%)"), props.jitBuffer && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('jit buffer'), ":"), " ", props.jitBuffer), props.jitBufferFree && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('jit buffer free'), ":"), " ", props.jitBufferFree, " (", 100 - props.jitBufferFreePercentage, "%)")));
|
||||||
}
|
}
|
||||||
|
|
||||||
function StatisticsPanel(props) {
|
function StatisticsPanel(props) {
|
||||||
return /*#__PURE__*/React.createElement("div", {
|
return /*#__PURE__*/React.createElement("div", {
|
||||||
className: "widget-panel"
|
className: "widget-panel"
|
||||||
|
@ -1238,7 +1185,6 @@ function StatisticsPanel(props) {
|
||||||
className: "widget-value widget-info"
|
className: "widget-value widget-info"
|
||||||
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of cached'), " files:"), " ", props.num_cached_scripts), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of hits'), ":"), " ", props.hits), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of misses'), ":"), " ", props.misses), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('blacklist misses'), ":"), " ", props.blacklist_miss), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of cached keys'), ":"), " ", props.num_cached_keys), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('max cached keys'), ":"), " ", props.max_cached_keys)));
|
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of cached'), " files:"), " ", props.num_cached_scripts), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of hits'), ":"), " ", props.hits), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of misses'), ":"), " ", props.misses), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('blacklist misses'), ":"), " ", props.blacklist_miss), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of cached keys'), ":"), " ", props.num_cached_keys), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('max cached keys'), ":"), " ", props.max_cached_keys)));
|
||||||
}
|
}
|
||||||
|
|
||||||
function InternedStringsPanel(props) {
|
function InternedStringsPanel(props) {
|
||||||
return /*#__PURE__*/React.createElement("div", {
|
return /*#__PURE__*/React.createElement("div", {
|
||||||
className: "widget-panel"
|
className: "widget-panel"
|
||||||
|
@ -1248,27 +1194,22 @@ function InternedStringsPanel(props) {
|
||||||
className: "widget-value widget-info"
|
className: "widget-value widget-info"
|
||||||
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('buffer size'), ":"), " ", props.buffer_size), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('used memory'), ":"), " ", props.strings_used_memory), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('free memory'), ":"), " ", props.strings_free_memory), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of strings'), ":"), " ", props.number_of_strings)));
|
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('buffer size'), ":"), " ", props.buffer_size), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('used memory'), ":"), " ", props.strings_used_memory), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('free memory'), ":"), " ", props.strings_free_memory), /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("b", null, props.txt('number of strings'), ":"), " ", props.number_of_strings)));
|
||||||
}
|
}
|
||||||
|
|
||||||
class CachedFiles extends React.Component {
|
class CachedFiles extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "setSearchTerm", debounce(searchTerm => {
|
_defineProperty(this, "setSearchTerm", debounce(searchTerm => {
|
||||||
this.setState({
|
this.setState({
|
||||||
searchTerm,
|
searchTerm,
|
||||||
refreshPagination: !this.state.refreshPagination
|
refreshPagination: !this.state.refreshPagination
|
||||||
});
|
});
|
||||||
}, this.props.debounceRate));
|
}, this.props.debounceRate));
|
||||||
|
|
||||||
_defineProperty(this, "onPageChanged", currentPage => {
|
_defineProperty(this, "onPageChanged", currentPage => {
|
||||||
this.setState({
|
this.setState({
|
||||||
currentPage
|
currentPage
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleInvalidate", e => {
|
_defineProperty(this, "handleInvalidate", e => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
if (this.props.realtime) {
|
if (this.props.realtime) {
|
||||||
axios.get(window.location.pathname, {
|
axios.get(window.location.pathname, {
|
||||||
params: {
|
params: {
|
||||||
|
@ -1281,33 +1222,27 @@ class CachedFiles extends React.Component {
|
||||||
window.location.href = e.currentTarget.href;
|
window.location.href = e.currentTarget.href;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "changeSort", e => {
|
_defineProperty(this, "changeSort", e => {
|
||||||
this.setState({
|
this.setState({
|
||||||
[e.target.name]: e.target.value
|
[e.target.name]: e.target.value
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "compareValues", (key, order = 'asc') => {
|
_defineProperty(this, "compareValues", (key, order = 'asc') => {
|
||||||
return function innerSort(a, b) {
|
return function innerSort(a, b) {
|
||||||
if (!a.hasOwnProperty(key) || !b.hasOwnProperty(key)) {
|
if (!a.hasOwnProperty(key) || !b.hasOwnProperty(key)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const varA = typeof a[key] === 'string' ? a[key].toUpperCase() : a[key];
|
const varA = typeof a[key] === 'string' ? a[key].toUpperCase() : a[key];
|
||||||
const varB = typeof b[key] === 'string' ? b[key].toUpperCase() : b[key];
|
const varB = typeof b[key] === 'string' ? b[key].toUpperCase() : b[key];
|
||||||
let comparison = 0;
|
let comparison = 0;
|
||||||
|
|
||||||
if (varA > varB) {
|
if (varA > varB) {
|
||||||
comparison = 1;
|
comparison = 1;
|
||||||
} else if (varA < varB) {
|
} else if (varA < varB) {
|
||||||
comparison = -1;
|
comparison = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return order === 'desc' ? comparison * -1 : comparison;
|
return order === 'desc' ? comparison * -1 : comparison;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
||||||
this.state = {
|
this.state = {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
|
@ -1317,16 +1252,13 @@ class CachedFiles extends React.Component {
|
||||||
sortDir: `desc`
|
sortDir: `desc`
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
if (!this.props.allow.fileList) {
|
if (!this.props.allow.fileList) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.allFiles.length === 0) {
|
if (this.props.allFiles.length === 0) {
|
||||||
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been cached or you have <i>opcache.file_cache_only</i> turned on'));
|
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been cached or you have <i>opcache.file_cache_only</i> turned on'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
searchTerm,
|
searchTerm,
|
||||||
currentPage
|
currentPage
|
||||||
|
@ -1400,16 +1332,12 @@ class CachedFiles extends React.Component {
|
||||||
}, file));
|
}, file));
|
||||||
}))));
|
}))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class CachedFile extends React.Component {
|
class CachedFile extends React.Component {
|
||||||
constructor(...args) {
|
constructor(...args) {
|
||||||
super(...args);
|
super(...args);
|
||||||
|
|
||||||
_defineProperty(this, "handleInvalidate", e => {
|
_defineProperty(this, "handleInvalidate", e => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
if (this.props.realtime) {
|
if (this.props.realtime) {
|
||||||
axios.get(window.location.pathname, {
|
axios.get(window.location.pathname, {
|
||||||
params: {
|
params: {
|
||||||
|
@ -1423,7 +1351,6 @@ class CachedFile extends React.Component {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return /*#__PURE__*/React.createElement("tr", {
|
return /*#__PURE__*/React.createElement("tr", {
|
||||||
"data-path": this.props.full_path.toLowerCase()
|
"data-path": this.props.full_path.toLowerCase()
|
||||||
|
@ -1440,35 +1367,28 @@ class CachedFile extends React.Component {
|
||||||
onClick: this.handleInvalidate
|
onClick: this.handleInvalidate
|
||||||
}, this.props.txt('force file invalidation')))));
|
}, this.props.txt('force file invalidation')))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class IgnoredFiles extends React.Component {
|
class IgnoredFiles extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "onPageChanged", currentPage => {
|
_defineProperty(this, "onPageChanged", currentPage => {
|
||||||
this.setState({
|
this.setState({
|
||||||
currentPage
|
currentPage
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
||||||
this.state = {
|
this.state = {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
refreshPagination: 0
|
refreshPagination: 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
if (!this.props.allow.fileList) {
|
if (!this.props.allow.fileList) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.allFiles.length === 0) {
|
if (this.props.allFiles.length === 0) {
|
||||||
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been ignored via <i>opcache.blacklist_filename</i>'));
|
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been ignored via <i>opcache.blacklist_filename</i>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
currentPage
|
currentPage
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
@ -1490,35 +1410,28 @@ class IgnoredFiles extends React.Component {
|
||||||
}, /*#__PURE__*/React.createElement("td", null, file));
|
}, /*#__PURE__*/React.createElement("td", null, file));
|
||||||
}))));
|
}))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class PreloadedFiles extends React.Component {
|
class PreloadedFiles extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "onPageChanged", currentPage => {
|
_defineProperty(this, "onPageChanged", currentPage => {
|
||||||
this.setState({
|
this.setState({
|
||||||
currentPage
|
currentPage
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
this.doPagination = typeof props.perPageLimit === "number" && props.perPageLimit > 0;
|
||||||
this.state = {
|
this.state = {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
refreshPagination: 0
|
refreshPagination: 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
if (!this.props.allow.fileList) {
|
if (!this.props.allow.fileList) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.allFiles.length === 0) {
|
if (this.props.allFiles.length === 0) {
|
||||||
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been preloaded <i>opcache.preload</i>'));
|
return /*#__PURE__*/React.createElement("p", null, this.props.txt('No files have been preloaded <i>opcache.preload</i>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
currentPage
|
currentPage
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
@ -1540,13 +1453,10 @@ class PreloadedFiles extends React.Component {
|
||||||
}, /*#__PURE__*/React.createElement("td", null, file));
|
}, /*#__PURE__*/React.createElement("td", null, file));
|
||||||
}))));
|
}))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Pagination extends React.Component {
|
class Pagination extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
_defineProperty(this, "gotoPage", page => {
|
_defineProperty(this, "gotoPage", page => {
|
||||||
const {
|
const {
|
||||||
onPageChanged = f => f
|
onPageChanged = f => f
|
||||||
|
@ -1556,54 +1466,43 @@ class Pagination extends React.Component {
|
||||||
currentPage
|
currentPage
|
||||||
}, () => onPageChanged(currentPage));
|
}, () => onPageChanged(currentPage));
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "totalPages", () => {
|
_defineProperty(this, "totalPages", () => {
|
||||||
return Math.ceil(this.props.totalRecords / this.props.pageLimit);
|
return Math.ceil(this.props.totalRecords / this.props.pageLimit);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleClick", (page, evt) => {
|
_defineProperty(this, "handleClick", (page, evt) => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
this.gotoPage(page);
|
this.gotoPage(page);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleJumpLeft", evt => {
|
_defineProperty(this, "handleJumpLeft", evt => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
this.gotoPage(this.state.currentPage - this.pageNeighbours * 2 - 1);
|
this.gotoPage(this.state.currentPage - this.pageNeighbours * 2 - 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleJumpRight", evt => {
|
_defineProperty(this, "handleJumpRight", evt => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
this.gotoPage(this.state.currentPage + this.pageNeighbours * 2 + 1);
|
this.gotoPage(this.state.currentPage + this.pageNeighbours * 2 + 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleMoveLeft", evt => {
|
_defineProperty(this, "handleMoveLeft", evt => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
this.gotoPage(this.state.currentPage - 1);
|
this.gotoPage(this.state.currentPage - 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "handleMoveRight", evt => {
|
_defineProperty(this, "handleMoveRight", evt => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
this.gotoPage(this.state.currentPage + 1);
|
this.gotoPage(this.state.currentPage + 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "range", (from, to, step = 1) => {
|
_defineProperty(this, "range", (from, to, step = 1) => {
|
||||||
let i = from;
|
let i = from;
|
||||||
const range = [];
|
const range = [];
|
||||||
|
|
||||||
while (i <= to) {
|
while (i <= to) {
|
||||||
range.push(i);
|
range.push(i);
|
||||||
i += step;
|
i += step;
|
||||||
}
|
}
|
||||||
|
|
||||||
return range;
|
return range;
|
||||||
});
|
});
|
||||||
|
|
||||||
_defineProperty(this, "fetchPageNumbers", () => {
|
_defineProperty(this, "fetchPageNumbers", () => {
|
||||||
const totalPages = this.totalPages();
|
const totalPages = this.totalPages();
|
||||||
const pageNeighbours = this.pageNeighbours;
|
const pageNeighbours = this.pageNeighbours;
|
||||||
const totalNumbers = this.pageNeighbours * 2 + 3;
|
const totalNumbers = this.pageNeighbours * 2 + 3;
|
||||||
const totalBlocks = totalNumbers + 2;
|
const totalBlocks = totalNumbers + 2;
|
||||||
|
|
||||||
if (totalPages > totalBlocks) {
|
if (totalPages > totalBlocks) {
|
||||||
let pages = [];
|
let pages = [];
|
||||||
const leftBound = this.state.currentPage - pageNeighbours;
|
const leftBound = this.state.currentPage - pageNeighbours;
|
||||||
|
@ -1618,7 +1517,6 @@ class Pagination extends React.Component {
|
||||||
const rightSpill = endPage < beforeLastPage;
|
const rightSpill = endPage < beforeLastPage;
|
||||||
const leftSpillPage = "LEFT";
|
const leftSpillPage = "LEFT";
|
||||||
const rightSpillPage = "RIGHT";
|
const rightSpillPage = "RIGHT";
|
||||||
|
|
||||||
if (leftSpill && !rightSpill) {
|
if (leftSpill && !rightSpill) {
|
||||||
const extraPages = this.range(startPage - singleSpillOffset, startPage - 1);
|
const extraPages = this.range(startPage - singleSpillOffset, startPage - 1);
|
||||||
pages = [leftSpillPage, ...extraPages, ...pages];
|
pages = [leftSpillPage, ...extraPages, ...pages];
|
||||||
|
@ -1628,38 +1526,30 @@ class Pagination extends React.Component {
|
||||||
} else if (leftSpill && rightSpill) {
|
} else if (leftSpill && rightSpill) {
|
||||||
pages = [leftSpillPage, ...pages, rightSpillPage];
|
pages = [leftSpillPage, ...pages, rightSpillPage];
|
||||||
}
|
}
|
||||||
|
|
||||||
return [1, ...pages, totalPages];
|
return [1, ...pages, totalPages];
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.range(1, totalPages);
|
return this.range(1, totalPages);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
currentPage: 1
|
currentPage: 1
|
||||||
};
|
};
|
||||||
this.pageNeighbours = typeof props.pageNeighbours === "number" ? Math.max(0, Math.min(props.pageNeighbours, 2)) : 0;
|
this.pageNeighbours = typeof props.pageNeighbours === "number" ? Math.max(0, Math.min(props.pageNeighbours, 2)) : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.gotoPage(1);
|
this.gotoPage(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(props) {
|
componentDidUpdate(props) {
|
||||||
const {
|
const {
|
||||||
refresh
|
refresh
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
if (props.refresh !== refresh) {
|
if (props.refresh !== refresh) {
|
||||||
this.gotoPage(1);
|
this.gotoPage(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
if (!this.props.totalRecords || this.totalPages() === 1) {
|
if (!this.props.totalRecords || this.totalPages() === 1) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
currentPage
|
currentPage
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
@ -1696,7 +1586,6 @@ class Pagination extends React.Component {
|
||||||
className: "sr-only"
|
className: "sr-only"
|
||||||
}, this.props.txt('Previous page')))));
|
}, this.props.txt('Previous page')))));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (page === "RIGHT") {
|
if (page === "RIGHT") {
|
||||||
return /*#__PURE__*/React.createElement(React.Fragment, {
|
return /*#__PURE__*/React.createElement(React.Fragment, {
|
||||||
key: index
|
key: index
|
||||||
|
@ -1724,7 +1613,6 @@ class Pagination extends React.Component {
|
||||||
className: "sr-only"
|
className: "sr-only"
|
||||||
}, this.props.txt('Jump forward')))));
|
}, this.props.txt('Jump forward')))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return /*#__PURE__*/React.createElement("li", {
|
return /*#__PURE__*/React.createElement("li", {
|
||||||
key: index,
|
key: index,
|
||||||
className: "page-item"
|
className: "page-item"
|
||||||
|
@ -1735,9 +1623,7 @@ class Pagination extends React.Component {
|
||||||
}, page));
|
}, page));
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Footer(props) {
|
function Footer(props) {
|
||||||
return /*#__PURE__*/React.createElement("footer", {
|
return /*#__PURE__*/React.createElement("footer", {
|
||||||
className: "main-footer"
|
className: "main-footer"
|
||||||
|
@ -1745,34 +1631,29 @@ function Footer(props) {
|
||||||
className: "github-link",
|
className: "github-link",
|
||||||
href: "https://github.com/amnuts/opcache-gui",
|
href: "https://github.com/amnuts/opcache-gui",
|
||||||
target: "_blank",
|
target: "_blank",
|
||||||
title: "opcache-gui (currently version {props.version}) on GitHub"
|
title: props.txt("opcache-gui (currently version {0}) on GitHub", props.version)
|
||||||
}, "https://github.com/amnuts/opcache-gui - version ", props.version), /*#__PURE__*/React.createElement("a", {
|
}, "https://github.com/amnuts/opcache-gui - ", props.txt("version {0}", props.version)), /*#__PURE__*/React.createElement("a", {
|
||||||
className: "sponsor-link",
|
className: "sponsor-link",
|
||||||
href: "https://github.com/sponsors/amnuts",
|
href: "https://github.com/sponsors/amnuts",
|
||||||
target: "_blank",
|
target: "_blank",
|
||||||
title: "Sponsor this project and author on GitHub"
|
title: props.txt("Sponsor this project and author on GitHub")
|
||||||
}, "Sponsor this project"));
|
}, props.txt("Sponsor this project")));
|
||||||
}
|
}
|
||||||
|
|
||||||
function debounce(func, wait, immediate) {
|
function debounce(func, wait, immediate) {
|
||||||
let timeout;
|
let timeout;
|
||||||
wait = wait || 250;
|
wait = wait || 250;
|
||||||
return function () {
|
return function () {
|
||||||
let context = this,
|
let context = this,
|
||||||
args = arguments;
|
args = arguments;
|
||||||
|
|
||||||
let later = function () {
|
let later = function () {
|
||||||
timeout = null;
|
timeout = null;
|
||||||
|
|
||||||
if (!immediate) {
|
if (!immediate) {
|
||||||
func.apply(context, args);
|
func.apply(context, args);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let callNow = immediate && !timeout;
|
let callNow = immediate && !timeout;
|
||||||
clearTimeout(timeout);
|
clearTimeout(timeout);
|
||||||
timeout = setTimeout(later, wait);
|
timeout = setTimeout(later, wait);
|
||||||
|
|
||||||
if (callNow) {
|
if (callNow) {
|
||||||
func.apply(context, args);
|
func.apply(context, args);
|
||||||
}
|
}
|
||||||
|
|
3354
package-lock.json
generated
Normal file
3354
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
@ -1,13 +1,13 @@
|
||||||
{
|
{
|
||||||
"name": "opcache-gui",
|
"name": "opcache-gui",
|
||||||
"description": "A clean and responsive interface for Zend OPcache information, showing statistics, settings and cached files, and providing a real-time update for the information (using jQuery and React).",
|
"description": "A clean and responsive interface for Zend OPcache information, showing statistics, settings and cached files, and providing a real-time update for the information (using jQuery and React).",
|
||||||
"version": "3.5.4",
|
"version": "3.5.5",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.12.8",
|
"@babel/cli": "^7.24.7",
|
||||||
"@babel/core": "^7.12.9",
|
"@babel/core": "^7.24.7",
|
||||||
"@babel/preset-react": "^7.12.7",
|
"@babel/preset-react": "^7.24.7",
|
||||||
"node-sass": ">=7.0.0"
|
"node-sass": "^9.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
|
|
@ -8,7 +8,7 @@ use Exception;
|
||||||
|
|
||||||
class Service
|
class Service
|
||||||
{
|
{
|
||||||
public const VERSION = '3.5.4';
|
public const VERSION = '3.5.5';
|
||||||
|
|
||||||
protected $tz;
|
protected $tz;
|
||||||
protected $data;
|
protected $data;
|
||||||
|
|
Loading…
Reference in a new issue