Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: reintegrate username functionality #1101

Merged
merged 31 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
193a07a
feat: reintegrate username functionality
alexbarnsley Dec 18, 2024
39d6eb5
Merge remote-tracking branch 'origin/mainsail-develop' into feat/rein…
alexbarnsley Jan 8, 2025
a879732
add username to addressing table cell
alexbarnsley Jan 8, 2025
45595d4
additional reverted changes
alexbarnsley Jan 8, 2025
cd6f5c5
test
alexbarnsley Jan 8, 2025
481b9c5
test
alexbarnsley Jan 8, 2025
c78cb19
forget resigned usernames
alexbarnsley Jan 9, 2025
3b74745
fix formatting of wallet search username
alexbarnsley Jan 9, 2025
5cc519a
add missing hasUsername methods
alexbarnsley Jan 9, 2025
4b338a4
fix formatting of wallet search username
alexbarnsley Jan 9, 2025
1241924
test
alexbarnsley Jan 9, 2025
9cfd03f
remove unnecesary iconless component & corresponding methods
alexbarnsley Jan 9, 2025
807e1be
test
alexbarnsley Jan 9, 2025
e3eed28
style: resolve style guide violations
alexbarnsley Jan 9, 2025
6138711
chore: stanley
alexbarnsley Jan 9, 2025
e42f078
Merge branch 'feat/reintegrate-username-functionality' of github.com:…
alexbarnsley Jan 9, 2025
da93909
Merge branch 'mainsail-develop' into feat/reintegrate-username-functi…
alexbarnsley Jan 9, 2025
1c511c7
Merge branch 'mainsail-develop' into feat/reintegrate-username-functi…
alexbarnsley Jan 15, 2025
a175c9d
test
alexbarnsley Jan 15, 2025
9e7912c
style: resolve style guide violations
alexbarnsley Jan 15, 2025
379afa6
test wallet controller for username
alexbarnsley Jan 16, 2025
b2557c7
Merge branch 'mainsail-develop' into feat/reintegrate-username-functi…
alfonsobries Jan 16, 2025
deaa74f
Merge remote-tracking branch 'origin/mainsail-develop' into feat/rein…
alexbarnsley Jan 16, 2025
c1b73b7
remove duplicate address entry
alexbarnsley Jan 16, 2025
760eec0
Merge branch 'mainsail-develop' into feat/reintegrate-username-functi…
ItsANameToo Jan 17, 2025
122db1d
improve tx sort by username
alexbarnsley Jan 21, 2025
94fdb19
consolidate username method to always show known first
alexbarnsley Jan 21, 2025
ec705bd
keep null values last in sorting & add tests
alexbarnsley Jan 22, 2025
13d31d0
Merge remote-tracking branch 'origin/mainsail-develop' into feat/rein…
alexbarnsley Jan 22, 2025
ba3bd58
style: resolve style guide violations
alexbarnsley Jan 22, 2025
5c6967d
Merge remote-tracking branch 'origin/mainsail-develop' into feat/rein…
alexbarnsley Jan 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add username to addressing table cell
alexbarnsley committed Jan 8, 2025
commit a879732f9dd7107d0c5467f1b07d60003189d1d9
Original file line number Diff line number Diff line change
@@ -39,15 +39,19 @@
class="link"
href="{{ route('wallet', $transactionWallet->address()) }}"
>
@if ($withoutTruncate)
@if ($transactionWallet->hasUsername())
{{ $transactionWallet->username() }}
@elseif ($withoutTruncate)
{{ $transactionWallet->address }}
@else
<x-truncate-middle>{{ $transactionWallet->address }}</x-truncate-middle>
@endif
</a>
@else
<span class="text-theme-secondary-900 dark:text-theme-dark-50">
@if ($withoutTruncate)
@if ($transactionWallet->hasUsername())
{{ $transactionWallet->username() }}
@elseif ($withoutTruncate)
{{ $transactionWallet->address }}
@else
<x-truncate-middle>{{ $transactionWallet->address }}</x-truncate-middle>