| import page, { type Callback, type Context } from '@automattic/calypso-router'; | |
| import { makeLayout, render as clientRender } from 'calypso/controller'; | |
| import { siteSelection, sites, navigation } from 'calypso/my-sites/controller'; | |
| import { LOGS_PHP, LOGS_WEB } from 'calypso/sites/components/site-preview-pane/constants'; | |
| import { siteDashboard, redirectToHostingFeaturesIfNotAtomic } from 'calypso/sites/controller'; | |
| import { phpErrorLogs, webServerLogs } from './controller'; | |
| export default function () { | |
| page( '/site-logs', siteSelection, sites, makeLayout, clientRender ); | |
| const redirectSiteLogsToPhp: Callback = ( context: Context ) => { | |
| context.page.replace( `/site-logs/${ context.params.site }/php` ); | |
| }; | |
| page( '/site-logs/:site', redirectSiteLogsToPhp ); | |
| page( | |
| '/site-logs/:site/php', | |
| siteSelection, | |
| redirectToHostingFeaturesIfNotAtomic, | |
| navigation, | |
| phpErrorLogs, | |
| siteDashboard( LOGS_PHP ), | |
| makeLayout, | |
| clientRender | |
| ); | |
| page( | |
| '/site-logs/:site/web', | |
| siteSelection, | |
| redirectToHostingFeaturesIfNotAtomic, | |
| navigation, | |
| webServerLogs, | |
| siteDashboard( LOGS_WEB ), | |
| makeLayout, | |
| clientRender | |
| ); | |
| } | |