forked from online-go/online-go.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request online-go#2807 from GreenAsJade/help_for_game_log_…
…autoscore Help for game log autoscore
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) Online-Go.com | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import React from "react"; | ||
|
||
import { HelpFlow, HelpItem } from "react-dynamic-help"; | ||
|
||
import { _, pgettext } from "translate"; | ||
|
||
/** | ||
* A help flow intended for moderators and CMs wondering about mysterious auto score entries | ||
*/ | ||
|
||
export function GameLogHelp(): JSX.Element { | ||
return ( | ||
<HelpFlow | ||
id="game-log-help" | ||
showInitially={true} | ||
debug={true} | ||
description={pgettext("Name of a dynamic help flow", "Game Log Help")} | ||
> | ||
<HelpItem target="autoscore-game-log-entry" position={"bottom-center"}> | ||
<div> | ||
{_( | ||
"These come from the user's browser during autoscoring. Two of these from each user, at the beginning of the scoring phase, and if the users presses 'auto-score'", | ||
)} | ||
</div> | ||
</HelpItem> | ||
</HelpFlow> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters