mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-19 03:05:53 +08:00
Create usePolling custom hook
This commit is contained in:
parent
b9cb9211ce
commit
3dd6fdc0b0
@ -133,11 +133,14 @@ export type TasksActionTypes =
|
|||||||
| ListDeadTasksSuccessAction
|
| ListDeadTasksSuccessAction
|
||||||
| ListDeadTasksErrorAction;
|
| ListDeadTasksErrorAction;
|
||||||
|
|
||||||
export function listActiveTasksAsync(qname: string) {
|
export function listActiveTasksAsync(
|
||||||
|
qname: string,
|
||||||
|
pageOpts?: PaginationOptions
|
||||||
|
) {
|
||||||
return async (dispatch: Dispatch<TasksActionTypes>) => {
|
return async (dispatch: Dispatch<TasksActionTypes>) => {
|
||||||
dispatch({ type: LIST_ACTIVE_TASKS_BEGIN, queue: qname });
|
dispatch({ type: LIST_ACTIVE_TASKS_BEGIN, queue: qname });
|
||||||
try {
|
try {
|
||||||
const response = await listActiveTasks(qname);
|
const response = await listActiveTasks(qname, pageOpts);
|
||||||
dispatch({
|
dispatch({
|
||||||
type: LIST_ACTIVE_TASKS_SUCCESS,
|
type: LIST_ACTIVE_TASKS_SUCCESS,
|
||||||
queue: qname,
|
queue: qname,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect, useState } from "react";
|
import React, { useState, useCallback } from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Table from "@material-ui/core/Table";
|
import Table from "@material-ui/core/Table";
|
||||||
@ -28,6 +28,7 @@ import TablePaginationActions, {
|
|||||||
rowsPerPageOptions,
|
rowsPerPageOptions,
|
||||||
defaultPageSize,
|
defaultPageSize,
|
||||||
} from "./TablePaginationActions";
|
} from "./TablePaginationActions";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
table: {
|
table: {
|
||||||
@ -73,14 +74,12 @@ function ActiveTasksTable(props: Props & ReduxProps) {
|
|||||||
setPage(0);
|
setPage(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
const fetchData = useCallback(() => {
|
||||||
listActiveTasksAsync(queue);
|
const pageOpts = { page: page + 1, size: pageSize };
|
||||||
const interval = setInterval(
|
listActiveTasksAsync(queue, pageOpts);
|
||||||
() => listActiveTasksAsync(queue),
|
}, [page, pageSize, queue, listActiveTasksAsync]);
|
||||||
pollInterval * 1000
|
|
||||||
);
|
usePolling(fetchData, pollInterval);
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listActiveTasksAsync, queue]);
|
|
||||||
|
|
||||||
if (props.tasks.length === 0) {
|
if (props.tasks.length === 0) {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
import React, { useCallback, useState } from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Table from "@material-ui/core/Table";
|
import Table from "@material-ui/core/Table";
|
||||||
@ -29,6 +29,7 @@ import TablePaginationActions, {
|
|||||||
rowsPerPageOptions,
|
rowsPerPageOptions,
|
||||||
} from "./TablePaginationActions";
|
} from "./TablePaginationActions";
|
||||||
import { timeAgo } from "../timeutil";
|
import { timeAgo } from "../timeutil";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
table: {
|
table: {
|
||||||
@ -83,14 +84,12 @@ function DeadTasksTable(props: Props & ReduxProps) {
|
|||||||
setPage(0);
|
setPage(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
const fetchData = useCallback(() => {
|
||||||
const pageOpts = { page: page + 1, size: pageSize };
|
const pageOpts = { page: page + 1, size: pageSize };
|
||||||
listDeadTasksAsync(queue, pageOpts);
|
listDeadTasksAsync(queue, pageOpts);
|
||||||
const interval = setInterval(() => {
|
}, [page, pageSize, queue, listDeadTasksAsync]);
|
||||||
listDeadTasksAsync(queue, pageOpts);
|
|
||||||
}, pollInterval * 1000);
|
usePolling(fetchData, pollInterval);
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listDeadTasksAsync, queue, page, pageSize]);
|
|
||||||
|
|
||||||
if (props.tasks.length === 0) {
|
if (props.tasks.length === 0) {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect, useState } from "react";
|
import React, { useCallback, useState } from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Table from "@material-ui/core/Table";
|
import Table from "@material-ui/core/Table";
|
||||||
@ -28,6 +28,7 @@ import TablePaginationActions, {
|
|||||||
import { listPendingTasksAsync } from "../actions/tasksActions";
|
import { listPendingTasksAsync } from "../actions/tasksActions";
|
||||||
import { AppState } from "../store";
|
import { AppState } from "../store";
|
||||||
import { PendingTask } from "../api";
|
import { PendingTask } from "../api";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
table: {
|
table: {
|
||||||
@ -74,14 +75,12 @@ function PendingTasksTable(props: Props & ReduxProps) {
|
|||||||
setPage(0);
|
setPage(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
const fetchData = useCallback(() => {
|
||||||
const pageOpts = { page: page + 1, size: pageSize };
|
const pageOpts = { page: page + 1, size: pageSize };
|
||||||
listPendingTasksAsync(queue, pageOpts);
|
listPendingTasksAsync(queue, pageOpts);
|
||||||
const interval = setInterval(() => {
|
}, [page, pageSize, queue, listPendingTasksAsync]);
|
||||||
listPendingTasksAsync(queue, pageOpts);
|
|
||||||
}, pollInterval * 1000);
|
usePolling(fetchData, pollInterval);
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listPendingTasksAsync, queue, page, pageSize]);
|
|
||||||
|
|
||||||
if (props.tasks.length === 0) {
|
if (props.tasks.length === 0) {
|
||||||
return (
|
return (
|
||||||
|
@ -25,7 +25,7 @@ function ProcessedTasksChart(props: Props) {
|
|||||||
const theme = useTheme<Theme>();
|
const theme = useTheme<Theme>();
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer>
|
<ResponsiveContainer>
|
||||||
<BarChart data={props.data} maxBarSize={100}>
|
<BarChart data={props.data} maxBarSize={120}>
|
||||||
<CartesianGrid strokeDasharray="3 3" />
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
<XAxis dataKey="queue" />
|
<XAxis dataKey="queue" />
|
||||||
<YAxis />
|
<YAxis />
|
||||||
|
@ -26,7 +26,7 @@ interface TaskBreakdown {
|
|||||||
function QueueSizeChart(props: Props) {
|
function QueueSizeChart(props: Props) {
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer>
|
<ResponsiveContainer>
|
||||||
<BarChart data={props.data}>
|
<BarChart data={props.data} maxBarSize={120}>
|
||||||
<CartesianGrid strokeDasharray="3 3" />
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
<XAxis dataKey="queue" />
|
<XAxis dataKey="queue" />
|
||||||
<YAxis />
|
<YAxis />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect, useState } from "react";
|
import React, { useCallback, useState } from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Table from "@material-ui/core/Table";
|
import Table from "@material-ui/core/Table";
|
||||||
@ -29,6 +29,7 @@ import TablePaginationActions, {
|
|||||||
rowsPerPageOptions,
|
rowsPerPageOptions,
|
||||||
} from "./TablePaginationActions";
|
} from "./TablePaginationActions";
|
||||||
import { durationBefore } from "../timeutil";
|
import { durationBefore } from "../timeutil";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
table: {
|
table: {
|
||||||
@ -75,14 +76,12 @@ function RetryTasksTable(props: Props & ReduxProps) {
|
|||||||
setPage(0);
|
setPage(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
const fetchData = useCallback(() => {
|
||||||
const pageOpts = { page: page + 1, size: pageSize };
|
const pageOpts = { page: page + 1, size: pageSize };
|
||||||
listRetryTasksAsync(queue, pageOpts);
|
listRetryTasksAsync(queue, pageOpts);
|
||||||
const interval = setInterval(() => {
|
}, [page, pageSize, queue, listRetryTasksAsync]);
|
||||||
listRetryTasksAsync(queue, pageOpts);
|
|
||||||
}, pollInterval * 1000);
|
usePolling(fetchData, pollInterval);
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listRetryTasksAsync, queue, page, pageSize]);
|
|
||||||
|
|
||||||
if (props.tasks.length === 0) {
|
if (props.tasks.length === 0) {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect, useState } from "react";
|
import React, { useState, useCallback } from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Table from "@material-ui/core/Table";
|
import Table from "@material-ui/core/Table";
|
||||||
@ -29,6 +29,7 @@ import TablePaginationActions, {
|
|||||||
rowsPerPageOptions,
|
rowsPerPageOptions,
|
||||||
} from "./TablePaginationActions";
|
} from "./TablePaginationActions";
|
||||||
import { durationBefore } from "../timeutil";
|
import { durationBefore } from "../timeutil";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
table: {
|
table: {
|
||||||
@ -75,14 +76,12 @@ function ScheduledTasksTable(props: Props & ReduxProps) {
|
|||||||
setPage(0);
|
setPage(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
const fetchData = useCallback(() => {
|
||||||
const pageOpts = { page: page + 1, size: pageSize };
|
const pageOpts = { page: page + 1, size: pageSize };
|
||||||
listScheduledTasksAsync(queue, pageOpts);
|
listScheduledTasksAsync(queue, pageOpts);
|
||||||
const interval = setInterval(() => {
|
}, [page, pageSize, queue, listScheduledTasksAsync]);
|
||||||
listScheduledTasksAsync(queue, pageOpts);
|
|
||||||
}, pollInterval * 1000);
|
usePolling(fetchData, pollInterval);
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listScheduledTasksAsync, queue, page, pageSize]);
|
|
||||||
|
|
||||||
if (props.tasks.length === 0) {
|
if (props.tasks.length === 0) {
|
||||||
return (
|
return (
|
||||||
|
11
ui/src/hooks/index.tsx
Normal file
11
ui/src/hooks/index.tsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { useEffect } from "react";
|
||||||
|
|
||||||
|
// usePolling repeatedly calls doFn with a fix time delay specified
|
||||||
|
// by interval (in millisecond).
|
||||||
|
export function usePolling(doFn: () => void, interval: number) {
|
||||||
|
useEffect(() => {
|
||||||
|
doFn();
|
||||||
|
const id = setInterval(doFn, interval * 1000);
|
||||||
|
return () => clearInterval(id);
|
||||||
|
}, [interval, doFn]);
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect } from "react";
|
import React from "react";
|
||||||
import { connect, ConnectedProps } from "react-redux";
|
import { connect, ConnectedProps } from "react-redux";
|
||||||
import Container from "@material-ui/core/Container";
|
import Container from "@material-ui/core/Container";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
@ -18,6 +18,7 @@ import ProcessedTasksChart from "../components/ProcessedTasksChart";
|
|||||||
import QueuesOverviewTable from "../components/QueuesOverviewTable";
|
import QueuesOverviewTable from "../components/QueuesOverviewTable";
|
||||||
import Tooltip from "../components/Tooltip";
|
import Tooltip from "../components/Tooltip";
|
||||||
import { getCurrentUTCDate } from "../timeutil";
|
import { getCurrentUTCDate } from "../timeutil";
|
||||||
|
import { usePolling } from "../hooks";
|
||||||
|
|
||||||
const useStyles = makeStyles((theme) => ({
|
const useStyles = makeStyles((theme) => ({
|
||||||
container: {
|
container: {
|
||||||
@ -78,11 +79,7 @@ function DashboardView(props: Props) {
|
|||||||
const { pollInterval, listQueuesAsync, queues } = props;
|
const { pollInterval, listQueuesAsync, queues } = props;
|
||||||
const classes = useStyles();
|
const classes = useStyles();
|
||||||
|
|
||||||
useEffect(() => {
|
usePolling(listQueuesAsync, pollInterval);
|
||||||
listQueuesAsync();
|
|
||||||
const interval = setInterval(listQueuesAsync, pollInterval * 1000);
|
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [pollInterval, listQueuesAsync]);
|
|
||||||
|
|
||||||
const processedStats = queues.map((q) => ({
|
const processedStats = queues.map((q) => ({
|
||||||
queue: q.queue,
|
queue: q.queue,
|
||||||
|
Loading…
Reference in New Issue
Block a user