refactor(problems/new_remote): add problem

This commit is contained in:
Baoshuo Ren 2023-01-19 10:17:48 +08:00
parent 7fc962436e
commit 8d9d036abf
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -55,7 +55,7 @@ if (UOJProblem::userCanCreateProblem(Auth::user())) {
如有,在此处填写其他于题意或数据相关的说明。 如有,在此处填写其他于题意或数据相关的说明。
EOD; EOD;
$new_problem_form = new UOJBs4Form('new_problem'); $new_problem_form = new UOJForm('new_problem');
$new_problem_form->handle = function () use ($default_statement) { $new_problem_form->handle = function () use ($default_statement) {
DB::insert([ DB::insert([
"insert into problems", "insert into problems",
@ -77,11 +77,10 @@ EOD;
redirectTo("/problem/{$id}/manage/statement"); redirectTo("/problem/{$id}/manage/statement");
die(); die();
}; };
$new_problem_form->submit_button_config['align'] = 'right'; $new_problem_form->config['submit_container']['class'] = '';
$new_problem_form->submit_button_config['class_str'] = 'btn btn-primary'; $new_problem_form->config['submit_button']['class'] = 'bg-transparent border-0 d-block w-100 px-3 py-2 text-start';
$new_problem_form->submit_button_config['text'] = UOJLocale::get('problems::add new'); $new_problem_form->config['submit_button']['text'] = '<i class="bi bi-plus-lg"></i> 新建本地题目';
$new_problem_form->submit_button_config['smart_confirm'] = ''; $new_problem_form->config['confirm']['text'] = '添加新题';
$new_problem_form->runAtServer(); $new_problem_form->runAtServer();
} }
@ -257,25 +256,20 @@ $pag = new Paginator([
<!-- left col --> <!-- left col -->
<div class="col-md-9"> <div class="col-md-9">
<!-- title --> <!-- title -->
<div class="d-flex justify-content-between"> <div class="d-flex justify-content-between flex-wrap">
<h1> <h1>
<?= UOJLocale::get('problems') ?> <?= UOJLocale::get('problems') ?>
</h1> </h1>
<?php if (isset($new_problem_form)) : ?> <div>
<div class="text-end"> <?= HTML::tablist($tabs_info, $cur_tab, 'nav-pills') ?>
<?php $new_problem_form->printHTML(); ?>
</div> </div>
<?php endif ?>
</div> </div>
<!-- end title --> <!-- end title -->
<div class="row"> <?= $pag->pagination() ?>
<div class="col-sm-4 col-12">
<?= HTML::tablist($tabs_info, $cur_tab, 'nav-pills') ?> <div class="text-end">
</div>
<div class="text-end p-2 col-12 col-sm-8">
<div class="form-check d-inline-block me-2"> <div class="form-check d-inline-block me-2">
<input type="checkbox" id="input-show_tags_mode" class="form-check-input" <?= isset($_COOKIE['show_tags_mode']) ? 'checked="checked" ' : '' ?> /> <input type="checkbox" id="input-show_tags_mode" class="form-check-input" <?= isset($_COOKIE['show_tags_mode']) ? 'checked="checked" ' : '' ?> />
<label class="form-check-label" for="input-show_tags_mode"> <label class="form-check-label" for="input-show_tags_mode">
@ -290,9 +284,6 @@ $pag = new Paginator([
</label> </label>
</div> </div>
</div> </div>
</div>
<?= $pag->pagination() ?>
<script type="text/javascript"> <script type="text/javascript">
$('#input-show_tags_mode').click(function() { $('#input-show_tags_mode').click(function() {
@ -393,6 +384,23 @@ $pag = new Paginator([
}); });
</script> </script>
<?php if (UOJProblem::userCanCreateProblem(Auth::user())) : ?>
<div class="card mb-3">
<div class="card-header fw-bold">
新建题目
</div>
<div class="list-group list-group-flush">
<div class="list-group-item list-group-item-action p-0">
<?php $new_problem_form->printHTML() ?>
</div>
<a class="list-group-item list-group-item-action" href="/problems/new/remote">
<i class="bi bi-cloud-plus"></i>
新建远端评测题目
</a>
</div>
</div>
<?php endif ?>
<!-- sidebar --> <!-- sidebar -->
<?php uojIncludeView('sidebar') ?> <?php uojIncludeView('sidebar') ?>
</aside> </aside>