// @flow import type {Settings} from '../../models/settings'; import type {Response} from '../../models/response'; import type {OAuth2Token} from '../../models/o-auth-2-token'; import type {Workspace} from '../../models/workspace'; import type {Request, RequestAuthentication, RequestBody, RequestHeader, RequestParameter} from '../../models/request'; import {updateMimeType} from '../../models/request'; import * as React from 'react'; import autobind from 'autobind-decorator'; import classnames from 'classnames'; import {registerModal, showModal} from './modals/index'; import AlertModal from './modals/alert-modal'; import ErrorModal from './modals/error-modal'; import ChangelogModal from './modals/changelog-modal'; import CookiesModal from './modals/cookies-modal'; import CookieModifyModal from '../components/modals/cookie-modify-modal'; import EnvironmentEditModal from './modals/environment-edit-modal'; import GenerateCodeModal from './modals/generate-code-modal'; import LoginModal from './modals/login-modal'; import PaymentNotificationModal from './modals/payment-notification-modal'; import NunjucksModal from './modals/nunjucks-modal'; import PromptModal from './modals/prompt-modal'; import AskModal from './modals/ask-modal'; import RequestCreateModal from './modals/request-create-modal'; import RequestPane from './request-pane'; import RequestSwitcherModal from './modals/request-switcher-modal'; import SetupSyncModal from './modals/setup-sync-modal'; import SettingsModal from './modals/settings-modal'; import FilterHelpModal from './modals/filter-help-modal'; import ResponsePane from './response-pane'; import RequestSettingsModal from './modals/request-settings-modal'; import RequestRenderErrorModal from './modals/request-render-error-modal'; import Sidebar from './sidebar/sidebar'; import WorkspaceEnvironmentsEditModal from './modals/workspace-environments-edit-modal'; import WorkspaceSettingsModal from './modals/workspace-settings-modal'; import WorkspaceShareSettingsModal from './modals/workspace-share-settings-modal'; import CodePromptModal from './modals/code-prompt-modal'; import * as models from '../../models/index'; import {trackEvent} from '../../analytics/index'; import * as importers from 'insomnia-importers'; import type {CookieJar} from '../../models/cookie-jar'; import type {Environment} from '../../models/environment'; import ErrorBoundary from './error-boundary'; import type {ClientCertificate} from '../../models/client-certificate'; type Props = { // Helper Functions handleActivateRequest: Function, handleSetSidebarFilter: Function, handleToggleMenuBar: Function, handleImportFileToWorkspace: Function, handleImportUriToWorkspace: Function, handleExportFile: Function, handleSetActiveWorkspace: Function, handleSetActiveEnvironment: Function, handleMoveDoc: Function, handleCreateRequest: Function, handleDuplicateRequest: Function, handleDuplicateRequestGroup: Function, handleDuplicateWorkspace: Function, handleCreateRequestGroup: Function, handleGenerateCodeForActiveRequest: Function, handleGenerateCode: Function, handleCopyAsCurl: Function, handleCreateRequestForWorkspace: Function, handleSetRequestPaneRef: Function, handleSetResponsePaneRef: Function, handleSetResponsePreviewMode: Function, handleRender: Function, handleGetRenderContext: Function, handleSetResponseFilter: Function, handleSetActiveResponse: Function, handleSetSidebarRef: Function, handleStartDragSidebar: Function, handleResetDragSidebar: Function, handleStartDragPaneHorizontal: Function, handleStartDragPaneVertical: Function, handleResetDragPaneHorizontal: Function, handleResetDragPaneVertical: Function, handleSetRequestGroupCollapsed: Function, handleSendRequestWithEnvironment: Function, handleSendAndDownloadRequestWithEnvironment: Function, // Properties loadStartTime: number, isLoading: boolean, paneWidth: number, paneHeight: number, responsePreviewMode: string, responseFilter: string, responseFilterHistory: Array, sidebarWidth: number, sidebarHidden: boolean, sidebarFilter: string, sidebarChildren: Array, settings: Settings, workspaces: Array, unseenWorkspaces: Array, workspaceChildren: Array, environments: Array, activeRequestResponses: Array, activeWorkspace: Workspace, activeCookieJar: CookieJar, activeEnvironment: Environment | null, activeWorkspaceClientCertificates: Array, // Optional oAuth2Token: ?OAuth2Token, activeRequest: ?Request, activeResponse: ?Response, }; type State = { forceRefreshKey: number }; const rUpdate = (request, ...args) => { if (!request) { throw new Error('Tried to update null request'); } return models.request.update(request, ...args); }; const sUpdate = models.settings.update; @autobind class Wrapper extends React.PureComponent { constructor (props: any) { super(props); this.state = { forceRefreshKey: Date.now() }; } // Request updaters async _handleForceUpdateRequest (patch: Object): Promise { const newRequest = await rUpdate(this.props.activeRequest, patch); // Give it a second for the app to render first. If we don't wait, it will refresh // on the old request and won't catch the newest one. window.setTimeout(this._forceRequestPaneRefresh, 100); return newRequest; } _handleUpdateRequestBody (body: RequestBody): Promise { return rUpdate(this.props.activeRequest, {body}); } _handleUpdateRequestMethod (method: string): Promise { return rUpdate(this.props.activeRequest, {method}); } _handleUpdateRequestParameters (parameters: Array): Promise { return rUpdate(this.props.activeRequest, {parameters}); } _handleUpdateRequestAuthentication (authentication: RequestAuthentication): Promise { return rUpdate(this.props.activeRequest, {authentication}); } _handleUpdateRequestHeaders (headers: Array): Promise { return rUpdate(this.props.activeRequest, {headers}); } _handleUpdateRequestUrl (url: string): Promise { return rUpdate(this.props.activeRequest, {url}); } // Special request updaters async _handleUpdateRequestMimeType (mimeType: string): Promise { if (!this.props.activeRequest) { console.warn('Tried to update request mime-type when no active request'); return null; } const newRequest = await updateMimeType(this.props.activeRequest, mimeType); // Force it to update, because other editor components (header editor) // needs to change. Need to wait a delay so the next render can finish setTimeout(this._forceRequestPaneRefresh, 300); return newRequest; } _handleStartDragSidebar (e: Event): void { e.preventDefault(); this.props.handleStartDragSidebar(); } async _handleImport (text: string): Promise { // Allow user to paste any import file into the url. If it results in // only one item, it will overwrite the current request. try { const {data} = importers.convert(text); const {resources} = data; const r = resources[0]; if (r && r._type === 'request') { trackEvent('Import', 'Url Bar'); // Only pull fields that we want to update return this._handleForceUpdateRequest({ url: r.url, method: r.method, headers: r.headers, body: r.body, authentication: r.authentication, parameters: r.parameters }); } } catch (e) { // Import failed, that's alright } return null; } // Settings updaters _handleUpdateSettingsShowPasswords (showPasswords: boolean): Promise { return sUpdate(this.props.settings, {showPasswords}); } _handleUpdateSettingsUseBulkHeaderEditor (useBulkHeaderEditor: boolean): Promise { return sUpdate(this.props.settings, {useBulkHeaderEditor}); } // Other Helpers _handleImportFile (): void { this.props.handleImportFileToWorkspace(this.props.activeWorkspace._id); } _handleImportUri (uri: string): void { this.props.handleImportUriToWorkspace(this.props.activeWorkspace._id, uri); } _handleExportWorkspaceToFile (): void { this.props.handleExportFile(this.props.activeWorkspace._id); } _handleSetActiveResponse (responseId: string | null): void { if (!this.props.activeRequest) { console.warn('Tried to set active response when request not active'); return; } this.props.handleSetActiveResponse(this.props.activeRequest._id, responseId); } _handleShowEnvironmentsModal (): void { showModal(WorkspaceEnvironmentsEditModal, this.props.activeWorkspace); } _handleShowCookiesModal (): void { showModal(CookiesModal, this.props.activeWorkspace); } _handleShowModifyCookieModal (cookie: Object): void { showModal(CookieModifyModal, cookie); } _handleShowRequestSettingsModal (): void { showModal(RequestSettingsModal, {request: this.props.activeRequest}); } _handleDeleteResponses (): void { if (!this.props.activeRequest) { console.warn('Tried to delete responses when request not active'); return; } models.response.removeForRequest(this.props.activeRequest._id); this._handleSetActiveResponse(null); } async _handleDeleteResponse (response: Response): Promise { if (response) { await models.response.remove(response); } // Also unset active response it's the one we're deleting if (this.props.activeResponse && this.props.activeResponse._id === response._id) { this._handleSetActiveResponse(null); } } async _handleRemoveActiveWorkspace (): Promise { const {workspaces, activeWorkspace} = this.props; if (workspaces.length <= 1) { showModal(AlertModal, { title: 'Deleting Last Workspace', message: 'Since you deleted your only workspace, a new one has been created for you.' }); models.workspace.create({name: 'Insomnia'}); trackEvent('Workspace', 'Delete', 'Last'); } else { trackEvent('Workspace', 'Delete'); } await models.workspace.remove(activeWorkspace); } _handleSendRequestWithActiveEnvironment (): void { const {activeRequest, activeEnvironment, handleSendRequestWithEnvironment} = this.props; const activeRequestId = activeRequest ? activeRequest._id : 'n/a'; const activeEnvironmentId = activeEnvironment ? activeEnvironment._id : 'n/a'; handleSendRequestWithEnvironment(activeRequestId, activeEnvironmentId); } _handleSendAndDownloadRequestWithActiveEnvironment (filename: string): void { const {activeRequest, activeEnvironment, handleSendAndDownloadRequestWithEnvironment} = this.props; const activeRequestId = activeRequest ? activeRequest._id : 'n/a'; const activeEnvironmentId = activeEnvironment ? activeEnvironment._id : 'n/a'; handleSendAndDownloadRequestWithEnvironment(activeRequestId, activeEnvironmentId, filename); } _handleSetPreviewMode (previewMode: string): void { const activeRequest = this.props.activeRequest; const activeRequestId = activeRequest ? activeRequest._id : 'n/a'; this.props.handleSetResponsePreviewMode(activeRequestId, previewMode); } _handleSetResponseFilter (filter: string): void { const activeRequest = this.props.activeRequest; const activeRequestId = activeRequest ? activeRequest._id : 'n/a'; this.props.handleSetResponseFilter(activeRequestId, filter); } _forceRequestPaneRefresh (): void { this.setState({forceRefreshKey: Date.now()}); } render () { const { activeEnvironment, activeRequest, activeWorkspace, activeCookieJar, activeRequestResponses, activeResponse, activeWorkspaceClientCertificates, environments, handleActivateRequest, handleCreateRequest, handleCreateRequestForWorkspace, handleCreateRequestGroup, handleDuplicateRequest, handleDuplicateRequestGroup, handleExportFile, handleMoveDoc, handleResetDragPaneHorizontal, handleResetDragPaneVertical, handleResetDragSidebar, handleSetActiveEnvironment, handleSetActiveWorkspace, handleSetRequestGroupCollapsed, handleSetRequestPaneRef, handleSetResponsePaneRef, handleSetSidebarRef, handleStartDragPaneHorizontal, handleStartDragPaneVertical, handleSetSidebarFilter, handleToggleMenuBar, handleRender, handleGetRenderContext, handleDuplicateWorkspace, handleGenerateCodeForActiveRequest, handleGenerateCode, handleCopyAsCurl, isLoading, loadStartTime, paneWidth, paneHeight, responseFilter, responseFilterHistory, responsePreviewMode, oAuth2Token, settings, sidebarChildren, sidebarFilter, sidebarHidden, sidebarWidth, workspaceChildren, workspaces, unseenWorkspaces } = this.props; const realSidebarWidth = sidebarHidden ? 0 : sidebarWidth; const columns = `${realSidebarWidth}rem 0 minmax(0, ${paneWidth}fr) 0 minmax(0, ${1 - paneWidth}fr)`; const rows = `minmax(0, ${paneHeight}fr) 0 minmax(0, ${1 - paneHeight}fr)`; return [
,
]; } } export default Wrapper;