Skip to content

Commit 72dc60c

Browse files
committedJul 10, 2021
Make fuzzy the timestamp of user created date
1 parent 43f6415 commit 72dc60c

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed
 

‎src/controllers/User/View.php

-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ protected function getUserInfo(UserViewModel &$model)
4646

4747
$model->user_profile = ($model->user ? $model->user->getUserProfile() : null);
4848

49-
// How long have they been a member?
50-
$model->user_est = Common::intervalToString($model->user->getCreatedDateTime()->diff(new DateTime('now')));
51-
$model->user_est = substr($model->user_est, 0, min(strlen($model->user_est), strpos($model->user_est, ',')));
52-
5349
// Summary of contributions
5450
$model->sum_documents = Credits::getTotalDocumentsByUserId(
5551
$model->user_id

‎src/libraries/User.php

+19
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,25 @@ public function getCreatedDateTime() {
397397
}
398398
}
399399

400+
public function getCreatedEstimate() {
401+
$c = $this->getCreatedDateTime();
402+
if (!$c) return $c;
403+
404+
$now = new DateTime('now');
405+
$d = $c->diff($now);
406+
$i = 0;
407+
$r = '';
408+
$t = 3;
409+
410+
if ($d->y > 0 && $i < $t) { ++$i; $r .= sprintf('%s%d %s%s', ($r ? ', ' : ''), $d->y, 'year', ($d->y !== 1 ? 's' : '')); }
411+
if ($d->m > 0 && $i < $t) { ++$i; $r .= sprintf('%s%d %s%s', ($r ? ', ' : ''), $d->m, 'month', ($d->m !== 1 ? 's' : '')); }
412+
if ($d->d > 0 && $i < $t) { ++$i; $r .= sprintf('%s%d %s%s', ($r ? ', ' : ''), $d->d, 'day', ($d->d !== 1 ? 's' : '')); }
413+
if ($d->h > 0 && $i < $t) { ++$i; $r .= sprintf('%s%d %s%s', ($r ? ', ' : ''), $d->h, 'hour', ($d->h !== 1 ? 's' : '')); }
414+
if ($d->i > 0 && $i < $t) { ++$i; $r .= sprintf('%s%d %s%s', ($r ? ', ' : ''), $d->i, 'minute', ($d->i !== 1 ? 's' : '')); }
415+
416+
return $r;
417+
}
418+
400419
public function getDisplayName() {
401420
return $this->display_name;
402421
}

‎src/models/User/View.php

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class View extends \BNETDocs\Models\ActiveUser
1111
public $sum_packets;
1212
public $sum_servers;
1313
public $user;
14-
public $user_est;
1514
public $user_id;
1615
public $user_profile;
1716
}

‎src/templates/User/Index.phtml

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace BNETDocs\Templates\User;
33
use \BNETDocs\Libraries\User;
44
use \CarlBennett\MVC\Libraries\Common;
55
use \CarlBennett\MVC\Libraries\Pair;
6+
use \DateTime;
67
$title = 'All Users';
78
$description = 'All users currently registered on BNETDocs';
89
$this->opengraph->attach(new Pair('url', '/user/index'));
@@ -20,6 +21,7 @@ $form_order_by = [
2021
'registered-asc' => 'Registered (Ascending)',
2122
'registered-desc' => 'Registered (Descending)',
2223
];
24+
$now = new DateTime('now');
2325
require('./header.inc.phtml'); ?>
2426
<div class="container">
2527
<h1><?=$title?></h1>
@@ -37,14 +39,14 @@ require('./header.inc.phtml'); ?>
3739
<input class="btn btn-sm btn-secondary" type="submit" value="Reorder"/>
3840
</form>
3941
<table class="table table-hover table-sm table-striped" id="users_tbl">
40-
<thead><tr><th>Account</th><th>Registered</th></tr></thead><tbody>
42+
<thead><tr><th>Account</th><th>Member for</th></tr></thead><tbody>
4143
<? foreach ($this->getContext()->users as $user)
4244
{
4345
$user_url = $user->getURI();
4446
$avatar_url = $user->getAvatarURI(22); ?>
4547
<tr>
4648
<td><a href="<?=$user_url?>"><img class="mr-2" src="<?=$avatar_url?>"/><?=filter_var($user->getName(), FILTER_SANITIZE_FULL_SPECIAL_CHARS)?></a></td>
47-
<td><time datetime="<?=$user->getCreatedDateTime()->format('c')?>"><?=$user->getCreatedDateTime()->format('l, F j, Y')?></time></td>
49+
<td><?=($user->getCreatedEstimate() ?? '<em>(null)</em>')?></td>
4850
</tr>
4951
<? } ?>
5052
</tbody></table>

‎src/templates/User/View.phtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ $sum_news_posts = $this->getContext()->sum_news_posts;
1414
$sum_packets = $this->getContext()->sum_packets;
1515
$sum_servers = $this->getContext()->sum_servers;
1616
$user = $this->getContext()->user;
17-
$user_est = $this->getContext()->user_est;
1817
$user_id = $this->getContext()->user_id;
1918
$user_profile = $this->getContext()->user_profile;
2019
$title = ($user ? $user->getName() : 'User Not Found');
@@ -27,6 +26,7 @@ if ($user)
2726
$this->opengraph->attach(new Pair('image', $user->getAvatarURI(null)));
2827

2928
$user_created_dt = $user->getCreatedDateTime();
29+
$user_est = $user->getCreatedEstimate();
3030
$user_name = filter_var($user->getName(), FILTER_SANITIZE_FULL_SPECIAL_CHARS);
3131
$user_verified_dt = $user->getVerifiedDateTime();
3232
}

0 commit comments

Comments
 (0)
Please sign in to comment.