Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Playground Persistence Enhancement (fix issue #1787) #1799

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 17 additions & 14 deletions src/commons/controlBar/github/ControlBarGitHubButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,21 @@ import { Octokit } from '@octokit/rest';
import * as React from 'react';
import { useMediaQuery } from 'react-responsive';

import { GitHubState } from '../../../features/github/GitHubTypes';
import { GitHubSaveInfo } from '../../../features/github/GitHubTypes';
import controlButton from '../../ControlButton';
import Constants from '../../utils/Constants';

export type ControlBarGitHubButtonsProps = {
loggedInAs: Octokit;
githubSaveInfo: { repoName: string; filePath: string };
githubSaveInfo: GitHubSaveInfo;
isDirty: boolean;
onClickOpen?: () => void;
onClickSave?: () => void;
onClickSaveAs?: () => void;
onClickLogIn?: () => void;
onClickLogOut?: () => void;
};

const stateToIntent: { [state in GitHubState]: Intent } = {
LOGGED_OUT: Intent.NONE,
LOGGED_IN: Intent.NONE
};

/**
* GitHub buttons to be used specifically in the Playground.
* Creates a dropdown upon click.
Expand All @@ -32,16 +28,23 @@ const stateToIntent: { [state in GitHubState]: Intent } = {
*/
export const ControlBarGitHubButtons: React.FC<ControlBarGitHubButtonsProps> = props => {
const isMobileBreakpoint = useMediaQuery({ maxWidth: Constants.mobileBreakpoint });
const isLoggedIn = props.loggedInAs !== undefined;

const filePath = props.githubSaveInfo.filePath || '';
const fileName = (filePath.split('\\').pop() || '').split('/').pop() || '';

const isLoggedIn = props.loggedInAs !== undefined;
const shouldDisableButtons = !isLoggedIn;
const shouldDisableSaveButton =
props.githubSaveInfo.repoName === '' || props.githubSaveInfo.filePath === '';
const hasFilePath = filePath !== '';
const hasOpenFile = isLoggedIn && hasFilePath;

const state: GitHubState = isLoggedIn ? 'LOGGED_IN' : 'LOGGED_OUT';
const mainButtonDisplayText = hasOpenFile ? fileName : 'GitHub';
let mainButtonIntent: Intent = Intent.NONE;
if (hasOpenFile) {
mainButtonIntent = props.isDirty ? Intent.WARNING : Intent.PRIMARY;
}

const mainButton = controlButton('GitHub', IconNames.GIT_BRANCH, null, {
intent: stateToIntent[state]
const mainButton = controlButton(mainButtonDisplayText, IconNames.GIT_BRANCH, null, {
intent: mainButtonIntent
});

const openButton = controlButton(
Expand All @@ -57,7 +60,7 @@ export const ControlBarGitHubButtons: React.FC<ControlBarGitHubButtonsProps> = p
IconNames.FLOPPY_DISK,
props.onClickSave,
undefined,
shouldDisableButtons || shouldDisableSaveButton
shouldDisableButtons || !hasOpenFile
);

const saveAsButton = controlButton(
Expand Down
3 changes: 1 addition & 2 deletions src/commons/gitHubOverlay/FileExplorerDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
checkIfFileCanBeOpened,
checkIfFileCanBeSavedAndGetSaveType,
checkIfUserAgreesToOverwriteEditorData,
checkIfUserAgreesToPerformCreatingSave,
checkIfUserAgreesToPerformOverwritingSave,
openFileInEditor,
performCreatingSave,
Expand Down Expand Up @@ -134,7 +133,7 @@ const FileExplorerDialog: React.FC<FileExplorerDialogProps> = props => {
);
}

if (saveType === 'Create' && (await checkIfUserAgreesToPerformCreatingSave())) {
if (saveType === 'Create') {
performCreatingSave(
props.octokit,
githubLoginID,
Expand Down
6 changes: 0 additions & 6 deletions src/commons/gitHubOverlay/__tests__/FileExplorerDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,6 @@ test('Performing creating save leads to appropriate function being called', asyn
}
);

const checkIfUserAgreesToPerformCreatingSaveMock = jest.spyOn(
GitHubUtils,
'checkIfUserAgreesToPerformCreatingSave'
);
checkIfUserAgreesToPerformCreatingSaveMock.mockImplementation(async () => true);

const performCreatingSaveMock = jest.spyOn(GitHubUtils, 'performCreatingSave');
performCreatingSaveMock.mockImplementation(
async (
Expand Down
6 changes: 5 additions & 1 deletion src/features/github/GitHubTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@ export const GITHUB_OPEN_FILE = 'GITHUB_OPEN_FILE';
export const GITHUB_SAVE_FILE = 'GITHUB_SAVE_FILE';
export const GITHUB_SAVE_FILE_AS = 'GITHUB_SAVE_FILE_AS';

export type GitHubState = 'LOGGED_IN' | 'LOGGED_OUT';
export type GitHubSaveInfo = {
repoName: string;
filePath: string;
lastSaved?: Date;
};
20 changes: 3 additions & 17 deletions src/features/github/GitHubUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,20 +173,6 @@ export async function checkIfUserAgreesToPerformOverwritingSave() {
});
}

export async function checkIfUserAgreesToPerformCreatingSave() {
return await showSimpleConfirmDialog({
contents: (
<div>
<p>Warning: You are creating a new file in the repository.</p>
<p>Please click 'Confirm' to continue, or 'Cancel' to go back.</p>
</div>
),
negativeLabel: 'Cancel',
positiveIntent: 'primary',
positiveLabel: 'Confirm'
});
}

export async function openFileInEditor(
octokit: Octokit,
repoOwner: string,
Expand All @@ -207,7 +193,7 @@ export async function openFileInEditor(
if (content) {
const newEditorValue = Buffer.from(content, 'base64').toString();
store.dispatch(actions.updateEditorValue(newEditorValue, 'playground'));
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath));
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath, new Date()));
showSuccessMessage('Successfully loaded file!', 1000);
}
}
Expand Down Expand Up @@ -259,7 +245,7 @@ export async function performOverwritingSave(
committer: { name: githubName, email: githubEmail },
author: { name: githubName, email: githubEmail }
});
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath));
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath, new Date()));
showSuccessMessage('Successfully saved file!', 1000);
} catch (err) {
console.error(err);
Expand Down Expand Up @@ -296,7 +282,7 @@ export async function performCreatingSave(
committer: { name: githubName, email: githubEmail },
author: { name: githubName, email: githubEmail }
});
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath));
store.dispatch(actions.playgroundUpdateGitHubSaveInfo(repoName, filePath, new Date()));
showSuccessMessage('Successfully created file!', 1000);
} catch (err) {
console.error(err);
Expand Down
7 changes: 5 additions & 2 deletions src/features/playground/PlaygroundActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ export const changeQueryString = (queryString: string) => action(CHANGE_QUERY_ST
export const playgroundUpdatePersistenceFile = (file?: PersistenceFile) =>
action(PLAYGROUND_UPDATE_PERSISTENCE_FILE, file);

export const playgroundUpdateGitHubSaveInfo = (repoName: string, filePath: string) =>
action(PLAYGROUND_UPDATE_GITHUB_SAVE_INFO, { repoName, filePath });
export const playgroundUpdateGitHubSaveInfo = (
repoName: string,
filePath: string,
lastSaved: Date
) => action(PLAYGROUND_UPDATE_GITHUB_SAVE_INFO, { repoName, filePath, lastSaved });
14 changes: 10 additions & 4 deletions src/pages/playground/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import { stringParamToInt } from '../../commons/utils/ParamParseHelper';
import { parseQuery } from '../../commons/utils/QueryHelper';
import Workspace, { WorkspaceProps } from '../../commons/workspace/Workspace';
import { initSession, log } from '../../features/eventLogging';
import { GitHubSaveInfo } from '../../features/github/GitHubTypes';
import { PersistenceFile } from '../../features/persistence/PersistenceTypes';
import {
CodeDelta,
Expand Down Expand Up @@ -141,7 +142,7 @@ export type StateProps = {
persistenceUser: string | undefined;
persistenceFile: PersistenceFile | undefined;
githubOctokitObject: { octokit: Octokit | undefined };
githubSaveInfo: { repoName: string; filePath: string };
githubSaveInfo: GitHubSaveInfo;
};

const keyMap = { goGreen: 'h u l k' };
Expand Down Expand Up @@ -458,13 +459,17 @@ const Playground: React.FC<PlaygroundProps> = props => {
]);

const githubOctokitObject = useSelector((store: any) => store.session.githubOctokitObject);
const githubSaveInfo = props.githubSaveInfo;
const githubPersistenceIsDirty =
githubSaveInfo && (!githubSaveInfo.lastSaved || githubSaveInfo.lastSaved < lastEdit);
const githubButtons = React.useMemo(() => {
const octokit = githubOctokitObject === undefined ? undefined : githubOctokitObject.octokit;
return (
<ControlBarGitHubButtons
loggedInAs={octokit}
githubSaveInfo={props.githubSaveInfo}
key="github"
loggedInAs={octokit}
githubSaveInfo={githubSaveInfo}
isDirty={githubPersistenceIsDirty}
onClickOpen={props.handleGitHubOpenFile}
onClickSave={props.handleGitHubSaveFile}
onClickSaveAs={props.handleGitHubSaveFileAs}
Expand All @@ -474,7 +479,8 @@ const Playground: React.FC<PlaygroundProps> = props => {
);
}, [
githubOctokitObject,
props.githubSaveInfo,
githubPersistenceIsDirty,
githubSaveInfo,
props.handleGitHubOpenFile,
props.handleGitHubSaveFileAs,
props.handleGitHubSaveFile,
Expand Down