import { recordTracksEvent } from '@automattic/calypso-analytics';
import { useSuspenseQuery } from '@tanstack/react-query';
import {
__experimentalHStack as HStack,
__experimentalText as Text,
__experimentalVStack as VStack,
Button,
Card,
CardBody,
} from '@wordpress/components';
import { useDispatch } from '@wordpress/data';
import { createInterpolateElement } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
import { blockTable } from '@wordpress/icons';
import { store as noticesStore } from '@wordpress/notices';
import { useState } from 'react';
import { siteBySlugQuery } from '../../app/queries/site';
import Notice from '../../components/notice';
import PageLayout from '../../components/page-layout';
import { HostingFeatures } from '../../data/constants';
import { fetchPhpMyAdminToken } from '../../data/site-hosting';
import HostingFeatureGatedWithCallout from '../hosting-feature-gated-with-callout';
import SettingsPageHeader from '../settings-page-header';
import ResetPasswordModal from './reset-password-modal';
import upsellIllustrationUrl from './upsell-illustration.svg';
export default function SiteDatabaseSettings( { siteSlug }: { siteSlug: string } ) {
const { data: site } = useSuspenseQuery( siteBySlugQuery( siteSlug ) );
const { createErrorNotice, createSuccessNotice } = useDispatch( noticesStore );
const [ isFetchingToken, setIsFetchingToken ] = useState( false );
const [ isResetPasswordModalOpen, setIsResetPasswordModalOpen ] = useState( false );
const handleOpenPhpMyAdmin = async () => {
setIsFetchingToken( true );
try {
const token = await fetchPhpMyAdminToken( site.ID );
if ( ! token ) {
throw new Error( 'No token found' );
}
window.open( `https://wordpress.com/pma-login?token=${ token }` );
} catch {
createErrorNotice( __( 'Failed to fetch phpMyAdmin token.' ), { type: 'snackbar' } );
}
setIsFetchingToken( false );
};
const handleResetPasswordClick = () => {
setIsResetPasswordModalOpen( true );
recordTracksEvent( 'calypso_sites_dashboard_database_reset_password_click' );
};
const handleResetPasswordSuccess = () => {
setIsResetPasswordModalOpen( false );
createSuccessNotice( __( 'Your database password has been restored.' ), {
type: 'snackbar',
} );
};
const handleResetPasswordError = () => {
setIsResetPasswordModalOpen( false );
createErrorNotice(
__( 'Sorry, we had a problem restoring your database password. Please try again.' ),
{
type: 'snackbar',
}
);
};
return (
}
>
phpMyAdmin
{ __(
'phpMyAdmin is a free open source software tool that allows you to administer your site’s MySQL database over the Web.'
) }
{ __(
'Managing a database can be tricky and it’s not necessary for your site to function.'
) }
{ createInterpolateElement(
__( 'Having problems with access? Try resetting the password.' ),
{
link: ,
}
) }
{ isResetPasswordModalOpen && (
setIsResetPasswordModalOpen( false ) }
onSuccess={ handleResetPasswordSuccess }
onError={ handleResetPasswordError }
/>
) }
);
}