golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/code-snippets/js/Edit/buttons
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
127 B
Del
OK
ActionButtons.tsx
554 B
Del
OK
DeleteButton.tsx
1.56 KB
Del
OK
ExportButtons.tsx
1.73 KB
Del
OK
SubmitButton.tsx
3.67 KB
Del
OK
Edit: ExportButtons.tsx
import React from 'react' import { AxiosResponse } from 'axios' import { __ } from '@wordpress/i18n' import { Button } from '../../common/Button' import { ExportSnippets } from '../../types/ExportSnippets' import { useSnippetsAPI } from '../../utils/api/snippets' import { downloadSnippetExportFile } from '../../utils/files' import { useSnippetForm } from '../SnippetForm/context' export const ExportButtons: React.FC = () => { const api = useSnippetsAPI() const { snippet, isWorking, setIsWorking, handleRequestError } = useSnippetForm() const handleFileResponse = (response: AxiosResponse<string | ExportSnippets>) => { const data = response.data setIsWorking(false) console.info('file response', response) if ('string' === typeof data) { downloadSnippetExportFile(data, snippet) } else { const JSON_INDENT_SPACES = 2 downloadSnippetExportFile(JSON.stringify(data, undefined, JSON_INDENT_SPACES), snippet, 'json') } } return ( <> <Button name="export_snippet" onClick={() => { setIsWorking(true) api.export(snippet) .then(handleFileResponse) // translators: %s: error message. .catch(error => handleRequestError(error, __('Could not download export file.', 'code-snippets'))) }} disabled={isWorking} > {__('Export', 'code-snippets')} </Button> {window.CODE_SNIPPETS_EDIT?.enableDownloads ? <Button name="export_snippet_code" onClick={() => { api.exportCode(snippet) .then(handleFileResponse) // translators: %s: error message. .catch(error => handleRequestError(error, __('Could not download file.', 'code-snippets'))) }} disabled={isWorking} > {__('Export Code', 'code-snippets')} </Button> : ''} </> ) }
Save