mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 14:48:41 +00:00
refactor(web/user/system_msg): bootstrap5
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e38d44f0c5
commit
c78032628c
@ -1,4 +1,7 @@
|
||||
<?php
|
||||
requireLib('bootstrap5');
|
||||
requirePHPLib('form');
|
||||
|
||||
if (!Auth::check()) {
|
||||
redirectToLogin();
|
||||
}
|
||||
@ -11,28 +14,99 @@
|
||||
become403Page();
|
||||
}
|
||||
|
||||
$header_row = <<<EOD
|
||||
<tr>
|
||||
<th>消息</th>
|
||||
<th style="width:15em">时间</th>
|
||||
</tr>
|
||||
EOD;
|
||||
function echoSysMsg($msg) {
|
||||
echo $msg['read_time'] == null ? '<tr class="table-warning">' : '<tr>';
|
||||
echo '<td>';
|
||||
echo '<h4>'.$msg['title'].'</h4>';
|
||||
echo $msg['content'];
|
||||
echo '</td>';
|
||||
echo '<td>'.$msg['send_time'].'</td>';
|
||||
echo '</tr>';
|
||||
function newDeleteSystemMsgForm($id) {
|
||||
$form = new UOJForm('remove_system_msg_' . $id);
|
||||
|
||||
$form->addHidden("msg_id", $id, function($msg_id) {
|
||||
global $user;
|
||||
|
||||
if (!validateUInt($msg_id)) {
|
||||
return '消息 ID 不是有效的数字';
|
||||
}
|
||||
|
||||
$msg = DB::selectFirst("select * from user_system_msg where id = {$msg_id}");
|
||||
if (!$msg || $msg['receiver'] != $user['username']) {
|
||||
return '消息不存在';
|
||||
}
|
||||
|
||||
return '';
|
||||
}, null);
|
||||
$form->handle = function() {
|
||||
$msg_id = $_POST["msg_id"];
|
||||
DB::delete("delete from user_system_msg where id = {$msg_id}");
|
||||
};
|
||||
$form->submit_button_config['text'] = '删除';
|
||||
$form->submit_button_config['margin_class'] = 'mt-0';
|
||||
$form->submit_button_config['class_str'] = 'btn btn-link text-decoration-none text-danger p-0';
|
||||
$form->submit_button_config['align'] = 'inline';
|
||||
$form->submit_button_config['smart_confirm'] = '';
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
$pag_config = [
|
||||
'page_len' => 20,
|
||||
'col_names' => ['*'],
|
||||
'table_name' => 'user_system_msg',
|
||||
'cond' => "receiver = '{$user['username']}'",
|
||||
'tail' => 'order by send_time desc',
|
||||
];
|
||||
$pag = new Paginator($pag_config);
|
||||
|
||||
$system_msgs = [];
|
||||
|
||||
foreach ($pag->get() as $idx => $msg) {
|
||||
$system_msgs[$idx] = $msg;
|
||||
|
||||
if (isSuperUser($myUser)) {
|
||||
$delete_form = newDeleteSystemMsgForm($msg['id']);
|
||||
$delete_form->runAtServer();
|
||||
$system_msgs[$idx]['delete_form'] = $delete_form;
|
||||
}
|
||||
}
|
||||
|
||||
if (Auth::id() == $user['username']) {
|
||||
DB::update("update user_system_msg set read_time = now() where receiver = '" . $user['username'] . "'");
|
||||
}
|
||||
?>
|
||||
|
||||
<?php echoUOJPageHeader('系统消息') ?>
|
||||
<h2>系统消息</h2>
|
||||
<?php echoLongTable(array('*'), 'user_system_msg', "receiver='" . $user['username'] . "'", 'order by id desc', $header_row, 'echoSysMsg', array('table_classes' => array('table'))) ?>
|
||||
<?php
|
||||
if (Auth::id() == $user['username']) {
|
||||
DB::update("update user_system_msg set read_time = now() where receiver = '" . $user['username'] . "'");
|
||||
}
|
||||
?>
|
||||
|
||||
<h1 class="h2">
|
||||
系统消息
|
||||
</h1>
|
||||
|
||||
<div class="card mb-3">
|
||||
<ul class="list-group list-group-flush">
|
||||
<?php foreach ($system_msgs as $msg): ?>
|
||||
<li class="list-group-item">
|
||||
<div class="mb-2 d-flex justify-content-between">
|
||||
<div>
|
||||
<?php if ($msg['title']): ?>
|
||||
<h4 class="d-inline"><?= $msg['title'] ?></h4>
|
||||
<?php endif ?>
|
||||
|
||||
<span class="text-muted small ms-2 d-inline-block">
|
||||
发送时间: <time><?= $msg['send_time'] ?></time>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<?php if (isset($msg['delete_form'])): ?>
|
||||
<?php $msg['delete_form']->printHTML() ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
|
||||
<div><?= $msg['content'] ?></div>
|
||||
</li>
|
||||
<?php endforeach ?>
|
||||
<?php if ($pag->isEmpty()): ?>
|
||||
<div class="text-center">
|
||||
<?= UOJLocale::get('none') ?>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?= $pag->pagination() ?>
|
||||
|
||||
<?php echoUOJPageFooter() ?>
|
||||
|
Loading…
Reference in New Issue
Block a user