forked from omegaup/omegaup
-
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.
# Description This is initial code for new page `ephemeral/grader/`. There are a couple of problems: 1- The icons for `upload` and `download` buttons do not appear on standalone page, but they do appear in problem page (for smaller size editor). ![image](https://github.com/user-attachments/assets/0d323c8b-d58a-4876-be10-1d75c0f5dcc9) ![image](https://github.com/user-attachments/assets/62782b03-00a1-4faf-ba08-95e9d9114759). **Edit**: This is addressed in omegaup#7799, where I have used `font-awesome` components instead of vanilla CSS classes. 2- The editor exceeds height of the body ![image](https://github.com/user-attachments/assets/76062c3c-67b7-4484-ae23-229fb68bbcdb) ![image](https://github.com/user-attachments/assets/cfcda0c1-72f8-4857-adac-23fc6751e129) **Edit**: I made some changes with styling and now it works as intended: https://github.com/user-attachments/assets/642e5de0-a2f3-4e27-94ce-399561f94e34 Fixes: omegaup#7793 # Checklist: - [x] The code follows the [coding guidelines](https://github.com/omegaup/omegaup/wiki/Coding-guidelines) of omegaUp. - [x] The tests were executed and all of them passed.
- Loading branch information
Showing
25 changed files
with
192 additions
and
52 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,11 @@ | ||
<?php | ||
namespace OmegaUp; | ||
require_once(dirname(__DIR__, 2) . '/server/bootstrap.php'); | ||
|
||
\OmegaUp\UITools::render( | ||
function (\OmegaUp\Request $r): array { | ||
return \OmegaUp\Controllers\Grader::getGraderForTypeScript( | ||
$r | ||
); | ||
} | ||
); |
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
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
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
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
Oops, something went wrong.