Skip to content

Commit adda8b8

Browse files
committed
refactor: improve cursor parser
1 parent fcd5add commit adda8b8

File tree

1 file changed

+29
-19
lines changed

1 file changed

+29
-19
lines changed

src/Pagination/Cursor/CursorParser.php

+29-19
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,13 @@ public function encode(LaravelCursor $cursor): string
3434
{
3535
$key = $cursor->parameter($this->keyName);
3636

37-
if (!$key) {
38-
return $cursor->encode();
37+
if ($key) {
38+
$parameters = $this->withoutPrivate($cursor->toArray());
39+
$parameters[$this->keyName] = $this->idParser->encode($key);
40+
$cursor = new LaravelCursor($parameters, $cursor->pointsToNextItems());
3941
}
4042

41-
$encodedId = $this->idParser->encode($key);
42-
$parameters = $cursor->toArray();
43-
unset($parameters['_pointsToNextItems']);
44-
$parameters[$this->keyName] = $encodedId;
45-
46-
$newCursor = new LaravelCursor($parameters, $cursor->pointsToNextItems());
47-
return $newCursor->encode();
43+
return $cursor->encode();
4844
}
4945

5046
/**
@@ -53,25 +49,39 @@ public function encode(LaravelCursor $cursor): string
5349
*/
5450
public function decode(Cursor $cursor): ?LaravelCursor
5551
{
56-
$encodedCursor = $cursor->isBefore() ? $cursor->getBefore() : $cursor->getAfter();
57-
if (!is_string($encodedCursor)) {
58-
return null;
59-
}
60-
61-
$parameters = json_decode(base64_decode(str_replace(['-', '_'], ['+', '/'], $encodedCursor)), true);
52+
$decoded = LaravelCursor::fromEncoded(
53+
$cursor->isBefore() ? $cursor->getBefore() : $cursor->getAfter(),
54+
);
6255

63-
if (json_last_error() !== JSON_ERROR_NONE) {
56+
if ($decoded === null) {
6457
return null;
6558
}
6659

67-
$pointsToNextItems = $parameters['_pointsToNextItems'];
68-
unset($parameters['_pointsToNextItems']);
60+
$parameters = $this->withoutPrivate($decoded->toArray());
61+
6962
if (isset($parameters[$this->keyName])) {
7063
$parameters[$this->keyName] = $this->idParser->decode(
7164
$parameters[$this->keyName],
7265
);
7366
}
7467

75-
return new LaravelCursor($parameters, $pointsToNextItems);
68+
return new LaravelCursor($parameters, $decoded->pointsToNextItems());
69+
}
70+
71+
/**
72+
* @param array<string, mixed> $values
73+
* @return array<string, mixed>
74+
*/
75+
private function withoutPrivate(array $values): array
76+
{
77+
$result = [];
78+
79+
foreach ($values as $key => $value) {
80+
if (!str_starts_with($key, '_')) {
81+
$result[$key] = $value;
82+
}
83+
}
84+
85+
return $result;
7686
}
7787
}

0 commit comments

Comments
 (0)