mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-11 01:32:16 +01:00
Compare commits
65 Commits
feature/up
...
feature/us
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3ec660243 | ||
|
|
37496a7547 | ||
|
|
8c71a43191 | ||
|
|
f4107a9a49 | ||
|
|
4afcb24dc9 | ||
|
|
f9271664f0 | ||
|
|
5dcd8197dc | ||
|
|
e8c8edb4d5 | ||
|
|
96ecc5335a | ||
|
|
c8024de452 | ||
|
|
eef2cdaec5 | ||
|
|
ed037d40a1 | ||
|
|
6c0041d249 | ||
|
|
e8f632f330 | ||
|
|
a865469d57 | ||
|
|
b18b4ef2ce | ||
|
|
cb42daecbf | ||
|
|
42f9efd570 | ||
|
|
4349b0dfb1 | ||
|
|
dba214f424 | ||
|
|
acb1a07ca0 | ||
|
|
1f4a957258 | ||
|
|
10a66fa065 | ||
|
|
b2a5b7a8c1 | ||
|
|
161cd258f3 | ||
|
|
d6ed3fb3fc | ||
|
|
7b6cdf1d45 | ||
|
|
19e1edca31 | ||
|
|
0335c355cc | ||
|
|
d645588aed | ||
|
|
dc35afdae8 | ||
|
|
12b4633e0d | ||
|
|
002c8e66a0 | ||
|
|
15fe8beecc | ||
|
|
15b5f4b586 | ||
|
|
390acf89e1 | ||
|
|
a54d914f13 | ||
|
|
bde3ec7a75 | ||
|
|
8637437808 | ||
|
|
0f6e0feeae | ||
|
|
08eba2d90b | ||
|
|
d732064f31 | ||
|
|
cb5c2547f4 | ||
|
|
13a25524f3 | ||
|
|
112f6aa6a6 | ||
|
|
8eab0485c9 | ||
|
|
0aa0f0bd77 | ||
|
|
eb63c4ef03 | ||
|
|
54fffd07bc | ||
|
|
da235dfdc8 | ||
|
|
0debdddef9 | ||
|
|
62354cfe8b | ||
|
|
396e7b2b6b | ||
|
|
221889ff87 | ||
|
|
7ce3fa2740 | ||
|
|
df34014bfe | ||
|
|
faf3ee471c | ||
|
|
866e5d8594 | ||
|
|
72cd0b6f05 | ||
|
|
6d93e48b1d | ||
|
|
09af0f775f | ||
|
|
1cc000a584 | ||
|
|
1a754f6756 | ||
|
|
d69d25d059 | ||
|
|
0e15d9d9c2 |
4
.github/workflows/build-onpremise.yml
vendored
4
.github/workflows/build-onpremise.yml
vendored
@@ -35,7 +35,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Check out code"
|
- name: "Check out code"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ jobs:
|
|||||||
node-version: '20.x'
|
node-version: '20.x'
|
||||||
|
|
||||||
- name: "Checkout invoicing extension"
|
- name: "Checkout invoicing extension"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
repository: solidtime-io/extension-invoicing
|
repository: solidtime-io/extension-invoicing
|
||||||
path: extensions/Invoicing
|
path: extensions/Invoicing
|
||||||
|
|||||||
8
.github/workflows/build-private.yml
vendored
8
.github/workflows/build-private.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Check out code"
|
- name: "Check out code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ jobs:
|
|||||||
node-version: '20.x'
|
node-version: '20.x'
|
||||||
|
|
||||||
- name: "Checkout billing extension"
|
- name: "Checkout billing extension"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
repository: solidtime-io/extension-billing
|
repository: solidtime-io/extension-billing
|
||||||
path: extensions/Billing
|
path: extensions/Billing
|
||||||
@@ -93,7 +93,7 @@ jobs:
|
|||||||
run: cd extensions/Billing && npm ci
|
run: cd extensions/Billing && npm ci
|
||||||
|
|
||||||
- name: "Checkout services extension"
|
- name: "Checkout services extension"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
repository: solidtime-io/extension-services
|
repository: solidtime-io/extension-services
|
||||||
path: extensions/Services
|
path: extensions/Services
|
||||||
@@ -111,7 +111,7 @@ jobs:
|
|||||||
run: cd extensions/Services && npm ci
|
run: cd extensions/Services && npm ci
|
||||||
|
|
||||||
- name: "Checkout invoicing extension"
|
- name: "Checkout invoicing extension"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
repository: solidtime-io/extension-invoicing
|
repository: solidtime-io/extension-invoicing
|
||||||
path: extensions/Invoicing
|
path: extensions/Invoicing
|
||||||
|
|||||||
2
.github/workflows/build-public.yml
vendored
2
.github/workflows/build-public.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Check out code"
|
- name: "Check out code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/generate-api-docs.yml
vendored
2
.github/workflows/generate-api-docs.yml
vendored
@@ -29,7 +29,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup PHP"
|
- name: "Setup PHP"
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/npm-build.yml
vendored
2
.github/workflows/npm-build.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup PHP (for Ziggy)"
|
- name: "Setup PHP (for Ziggy)"
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/npm-format-check.yml
vendored
2
.github/workflows/npm-format-check.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Use Node.js"
|
- name: "Use Node.js"
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
|
|||||||
2
.github/workflows/npm-lint.yml
vendored
2
.github/workflows/npm-lint.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Use Node.js"
|
- name: "Use Node.js"
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
|
|||||||
2
.github/workflows/npm-publish-api.yml
vendored
2
.github/workflows/npm-publish-api.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
# Setup .npmrc file to publish to npm
|
# Setup .npmrc file to publish to npm
|
||||||
- name: Install root project dependencies
|
- name: Install root project dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|||||||
2
.github/workflows/npm-publish-ui.yml
vendored
2
.github/workflows/npm-publish-ui.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
# Setup .npmrc file to publish to npm
|
# Setup .npmrc file to publish to npm
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
|
|||||||
27
.github/workflows/npm-test-unit.yml
vendored
Normal file
27
.github/workflows/npm-test-unit.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
name: NPM Test Unit
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
|
env:
|
||||||
|
TZ: UTC
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "Checkout code"
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: "Use Node.js"
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: '20.x'
|
||||||
|
|
||||||
|
- name: "Install npm dependencies"
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: "Run vitest"
|
||||||
|
run: npm run test:unit
|
||||||
2
.github/workflows/npm-typecheck.yml
vendored
2
.github/workflows/npm-typecheck.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup PHP (for Ziggy)"
|
- name: "Setup PHP (for Ziggy)"
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/phpstan.yml
vendored
2
.github/workflows/phpstan.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup PHP"
|
- name: "Setup PHP"
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/phpunit.yml
vendored
2
.github/workflows/phpunit.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
|||||||
--health-retries 5
|
--health-retries 5
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup PHP"
|
- name: "Setup PHP"
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/pint.yml
vendored
2
.github/workflows/pint.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Check code style"
|
- name: "Check code style"
|
||||||
uses: aglipanci/laravel-pint-action@2.6
|
uses: aglipanci/laravel-pint-action@2.6
|
||||||
|
|||||||
4
.github/workflows/playwright.yml
vendored
4
.github/workflows/playwright.yml
vendored
@@ -35,7 +35,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup node"
|
- name: "Setup node"
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
@@ -99,7 +99,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: "Setup node"
|
- name: "Setup node"
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ use Illuminate\Support\Facades\Validator;
|
|||||||
use Illuminate\Validation\ValidationException;
|
use Illuminate\Validation\ValidationException;
|
||||||
use Korridor\LaravelModelValidationRules\Rules\UniqueEloquent;
|
use Korridor\LaravelModelValidationRules\Rules\UniqueEloquent;
|
||||||
use Laravel\Fortify\Contracts\CreatesNewUsers;
|
use Laravel\Fortify\Contracts\CreatesNewUsers;
|
||||||
use Laravel\Jetstream\Jetstream;
|
|
||||||
use Log;
|
use Log;
|
||||||
|
|
||||||
class CreateNewUser implements CreatesNewUsers
|
class CreateNewUser implements CreatesNewUsers
|
||||||
@@ -55,7 +54,7 @@ class CreateNewUser implements CreatesNewUsers
|
|||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
'password' => $this->passwordRules(),
|
'password' => $this->passwordRules(),
|
||||||
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature() ? ['accepted', 'required'] : '',
|
'terms' => ['accepted', 'required'],
|
||||||
'newsletter_consent' => [
|
'newsletter_consent' => [
|
||||||
'boolean',
|
'boolean',
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -4,16 +4,9 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace App\Actions\Fortify;
|
namespace App\Actions\Fortify;
|
||||||
|
|
||||||
use App\Enums\Weekday;
|
use App\Exceptions\MovedToApiException;
|
||||||
use App\Mail\VerifyUpdatedEmailMail;
|
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
use Illuminate\Support\Facades\Mail;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Support\Str;
|
|
||||||
use Illuminate\Validation\Rule;
|
|
||||||
use Illuminate\Validation\ValidationException;
|
use Illuminate\Validation\ValidationException;
|
||||||
use Korridor\LaravelModelValidationRules\Rules\UniqueEloquent;
|
|
||||||
use Laravel\Fortify\Contracts\UpdatesUserProfileInformation;
|
use Laravel\Fortify\Contracts\UpdatesUserProfileInformation;
|
||||||
|
|
||||||
class UpdateUserProfileInformation implements UpdatesUserProfileInformation
|
class UpdateUserProfileInformation implements UpdatesUserProfileInformation
|
||||||
@@ -27,61 +20,6 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
|
|||||||
*/
|
*/
|
||||||
public function update(User $user, array $input): void
|
public function update(User $user, array $input): void
|
||||||
{
|
{
|
||||||
if (isset($input['email']) && is_string($input['email'])) {
|
throw new MovedToApiException;
|
||||||
$input['email'] = Str::lower($input['email']);
|
|
||||||
}
|
|
||||||
|
|
||||||
Validator::make($input, [
|
|
||||||
'name' => [
|
|
||||||
'required',
|
|
||||||
'string',
|
|
||||||
'max:255',
|
|
||||||
],
|
|
||||||
'email' => [
|
|
||||||
'required',
|
|
||||||
'email',
|
|
||||||
'max:255',
|
|
||||||
UniqueEloquent::make(User::class, 'email')->ignore($user->id)->query(function (Builder $query) {
|
|
||||||
/** @var Builder<User> $query */
|
|
||||||
return $query->where('is_placeholder', '=', false);
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
'photo' => [
|
|
||||||
'nullable',
|
|
||||||
'mimes:jpg,jpeg,png',
|
|
||||||
'max:1024',
|
|
||||||
],
|
|
||||||
'timezone' => [
|
|
||||||
'required',
|
|
||||||
'timezone:all',
|
|
||||||
],
|
|
||||||
'week_start' => [
|
|
||||||
'required',
|
|
||||||
Rule::enum(Weekday::class),
|
|
||||||
],
|
|
||||||
])->validateWithBag('updateProfileInformation');
|
|
||||||
|
|
||||||
if (isset($input['photo'])) {
|
|
||||||
$user->updateProfilePhoto($input['photo']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$email = Str::lower((string) $input['email']);
|
|
||||||
|
|
||||||
if ($email !== Str::lower($user->email)) {
|
|
||||||
$user->forceFill([
|
|
||||||
'name' => $input['name'],
|
|
||||||
'pending_email' => $email,
|
|
||||||
'timezone' => $input['timezone'],
|
|
||||||
'week_start' => $input['week_start'],
|
|
||||||
])->save();
|
|
||||||
|
|
||||||
Mail::to($email)->send(new VerifyUpdatedEmailMail($user, $email));
|
|
||||||
} else {
|
|
||||||
$user->forceFill([
|
|
||||||
'name' => $input['name'],
|
|
||||||
'timezone' => $input['timezone'],
|
|
||||||
'week_start' => $input['week_start'],
|
|
||||||
])->save();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Exceptions\MovedToApiException;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use Laravel\Jetstream\Contracts\AddsTeamMembers;
|
|
||||||
|
|
||||||
class AddOrganizationMember implements AddsTeamMembers
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Add a new team member to the given team.
|
|
||||||
*/
|
|
||||||
public function add(User $owner, Organization $organization, string $email, ?string $role = null): void
|
|
||||||
{
|
|
||||||
throw new MovedToApiException;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Events\AfterCreateOrganization;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Service\IpLookup\IpLookupServiceContract;
|
|
||||||
use App\Service\OrganizationService;
|
|
||||||
use App\Service\UserService;
|
|
||||||
use Illuminate\Auth\Access\AuthorizationException;
|
|
||||||
use Illuminate\Support\Facades\Gate;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Validation\ValidationException;
|
|
||||||
use Laravel\Jetstream\Contracts\CreatesTeams;
|
|
||||||
use Laravel\Jetstream\Jetstream;
|
|
||||||
|
|
||||||
class CreateOrganization implements CreatesTeams
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Validate and create a new team for the given user.
|
|
||||||
*
|
|
||||||
* @param array<string, string> $input
|
|
||||||
*
|
|
||||||
* @throws AuthorizationException
|
|
||||||
* @throws ValidationException
|
|
||||||
*
|
|
||||||
* @deprecated Use REST endpoint instead
|
|
||||||
*/
|
|
||||||
public function create(User $user, array $input): Organization
|
|
||||||
{
|
|
||||||
Gate::forUser($user)->authorize('create', Jetstream::newTeamModel());
|
|
||||||
|
|
||||||
Validator::make($input, [
|
|
||||||
'name' => ['required', 'string', 'max:255'],
|
|
||||||
])->validateWithBag('createTeam');
|
|
||||||
|
|
||||||
$ipLookupResponse = app(IpLookupServiceContract::class)->lookup(request()->ip());
|
|
||||||
|
|
||||||
$currency = null;
|
|
||||||
if ($ipLookupResponse !== null) {
|
|
||||||
$currency = $ipLookupResponse->currency;
|
|
||||||
}
|
|
||||||
|
|
||||||
$organization = app(OrganizationService::class)->createOrganization(
|
|
||||||
$input['name'],
|
|
||||||
$user,
|
|
||||||
false,
|
|
||||||
$currency
|
|
||||||
);
|
|
||||||
|
|
||||||
app(UserService::class)->switchCurrentOrganization($user, $organization);
|
|
||||||
|
|
||||||
AfterCreateOrganization::dispatch($organization);
|
|
||||||
|
|
||||||
return $organization;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Service\DeletionService;
|
|
||||||
use Laravel\Jetstream\Contracts\DeletesTeams;
|
|
||||||
|
|
||||||
class DeleteOrganization implements DeletesTeams
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Delete the given team.
|
|
||||||
*
|
|
||||||
* @deprecated Use REST endpoint instead
|
|
||||||
*/
|
|
||||||
public function delete(Organization $organization): void
|
|
||||||
{
|
|
||||||
/** @see ValidateOrganizationDeletion */
|
|
||||||
app(DeletionService::class)->deleteOrganization($organization);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Exceptions\Api\ApiException;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Service\DeletionService;
|
|
||||||
use Illuminate\Validation\ValidationException;
|
|
||||||
use Laravel\Jetstream\Contracts\DeletesUsers;
|
|
||||||
|
|
||||||
class DeleteUser implements DeletesUsers
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Delete the given user.
|
|
||||||
*
|
|
||||||
* @throws ValidationException
|
|
||||||
*
|
|
||||||
* @deprecated Use REST endpoint instead
|
|
||||||
*/
|
|
||||||
public function delete(User $user): void
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
app(DeletionService::class)->deleteUser($user);
|
|
||||||
} catch (ApiException $exception) {
|
|
||||||
throw ValidationException::withMessages([
|
|
||||||
'password' => $exception->getTranslatedMessage(),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Exceptions\MovedToApiException;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use Exception;
|
|
||||||
use Laravel\Jetstream\Contracts\InvitesTeamMembers;
|
|
||||||
|
|
||||||
class InviteOrganizationMember implements InvitesTeamMembers
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Invite a new team member to the given team.
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function invite(User $user, Organization $organization, string $email, ?string $role = null): void
|
|
||||||
{
|
|
||||||
throw new MovedToApiException;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Exceptions\MovedToApiException;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use Exception;
|
|
||||||
use Laravel\Jetstream\Contracts\RemovesTeamMembers;
|
|
||||||
|
|
||||||
class RemoveOrganizationMember implements RemovesTeamMembers
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Remove the team member from the given team.
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function remove(User $user, Organization $organization, User $teamMember): void
|
|
||||||
{
|
|
||||||
throw new MovedToApiException;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Enums\Role;
|
|
||||||
use App\Exceptions\MovedToApiException;
|
|
||||||
use App\Models\Member;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use Exception;
|
|
||||||
|
|
||||||
class UpdateMemberRole
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Update the role for the given team member.
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function update(User $actingUser, Organization $organization, string $userId, string $role): void
|
|
||||||
{
|
|
||||||
throw new MovedToApiException;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Rules\CurrencyRule;
|
|
||||||
use Illuminate\Auth\Access\AuthorizationException;
|
|
||||||
use Illuminate\Support\Facades\Gate;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Validation\ValidationException;
|
|
||||||
use Laravel\Jetstream\Contracts\UpdatesTeamNames;
|
|
||||||
|
|
||||||
class UpdateOrganization implements UpdatesTeamNames
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Validate and update the given team's name.
|
|
||||||
*
|
|
||||||
* @param array<string, string> $input
|
|
||||||
*
|
|
||||||
* @throws AuthorizationException
|
|
||||||
* @throws ValidationException
|
|
||||||
*/
|
|
||||||
public function update(User $user, Organization $organization, array $input): void
|
|
||||||
{
|
|
||||||
Gate::forUser($user)->authorize('update', $organization);
|
|
||||||
|
|
||||||
Validator::make($input, [
|
|
||||||
'name' => [
|
|
||||||
'required',
|
|
||||||
'string',
|
|
||||||
'max:255',
|
|
||||||
],
|
|
||||||
'currency' => [
|
|
||||||
'required',
|
|
||||||
'string',
|
|
||||||
new CurrencyRule,
|
|
||||||
],
|
|
||||||
])->validateWithBag('updateTeamName');
|
|
||||||
|
|
||||||
$organization->forceFill([
|
|
||||||
'name' => $input['name'],
|
|
||||||
'currency' => $input['currency'],
|
|
||||||
])->save();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Actions\Jetstream;
|
|
||||||
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Service\PermissionStore;
|
|
||||||
use Illuminate\Auth\Access\AuthorizationException;
|
|
||||||
|
|
||||||
class ValidateOrganizationDeletion
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Validate that the team can be deleted by the given user.
|
|
||||||
*
|
|
||||||
* @param User $user Authenticated user
|
|
||||||
* @param Organization $organization Organization to be deleted
|
|
||||||
*
|
|
||||||
* @throws AuthorizationException
|
|
||||||
*
|
|
||||||
* @deprecated Use REST endpoint instead
|
|
||||||
*/
|
|
||||||
public function validate(User $user, Organization $organization): void
|
|
||||||
{
|
|
||||||
if (! app(PermissionStore::class)->userHas($organization, $user, 'organizations:delete')) {
|
|
||||||
throw new AuthorizationException;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,8 +4,12 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace App\Enums;
|
namespace App\Enums;
|
||||||
|
|
||||||
|
use Datomatic\LaravelEnumHelper\LaravelEnumHelper;
|
||||||
|
|
||||||
enum Role: string
|
enum Role: string
|
||||||
{
|
{
|
||||||
|
use LaravelEnumHelper;
|
||||||
|
|
||||||
case Owner = 'owner';
|
case Owner = 'owner';
|
||||||
case Admin = 'admin';
|
case Admin = 'admin';
|
||||||
case Manager = 'manager';
|
case Manager = 'manager';
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ use App\Models\Organization;
|
|||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replaces legacy TeamMemberAdded event.
|
||||||
|
*/
|
||||||
class MemberAdded
|
class MemberAdded
|
||||||
{
|
{
|
||||||
use Dispatchable;
|
use Dispatchable;
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ use App\Models\Organization;
|
|||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replaces legacy AddingTeamMember event.
|
||||||
|
*/
|
||||||
class MemberAdding
|
class MemberAdding
|
||||||
{
|
{
|
||||||
use Dispatchable;
|
use Dispatchable;
|
||||||
|
|||||||
38
app/Events/OrganizationInvitationAdding.php
Normal file
38
app/Events/OrganizationInvitationAdding.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Events;
|
||||||
|
|
||||||
|
use App\Enums\Role;
|
||||||
|
use App\Models\Organization;
|
||||||
|
use App\Models\User;
|
||||||
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replaces legacy InvitingTeamMember event.
|
||||||
|
*/
|
||||||
|
class OrganizationInvitationAdding
|
||||||
|
{
|
||||||
|
use Dispatchable;
|
||||||
|
|
||||||
|
public Organization $organization;
|
||||||
|
|
||||||
|
public string $email;
|
||||||
|
|
||||||
|
public Role $role;
|
||||||
|
|
||||||
|
public User $inviter;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
Organization $organization,
|
||||||
|
string $email,
|
||||||
|
Role $role,
|
||||||
|
User $inviter
|
||||||
|
) {
|
||||||
|
$this->role = $role;
|
||||||
|
$this->email = $email;
|
||||||
|
$this->organization = $organization;
|
||||||
|
$this->inviter = $inviter;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -64,7 +64,7 @@ class InvitationsRelationManager extends RelationManager
|
|||||||
$ownerRecord = $this->getOwnerRecord();
|
$ownerRecord = $this->getOwnerRecord();
|
||||||
|
|
||||||
return app(InvitationService::class)
|
return app(InvitationService::class)
|
||||||
->inviteUser($ownerRecord, $data['email'], Role::from($data['role']));
|
->inviteUser($ownerRecord, $data['email'], Role::from($data['role']), auth()->user());
|
||||||
}),
|
}),
|
||||||
])
|
])
|
||||||
->actions([
|
->actions([
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ class InvitationController extends Controller
|
|||||||
$email = $request->getEmail();
|
$email = $request->getEmail();
|
||||||
$role = $request->getRole();
|
$role = $request->getRole();
|
||||||
|
|
||||||
$invitationService->inviteUser($organization, $email, $role);
|
$invitationService->inviteUser($organization, $email, $role, $this->user());
|
||||||
|
|
||||||
return response()->json(null, 204);
|
return response()->json(null, 204);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ class MemberController extends Controller
|
|||||||
throw new ThisPlaceholderCanNotBeInvitedUseTheMergeToolInsteadException;
|
throw new ThisPlaceholderCanNotBeInvitedUseTheMergeToolInsteadException;
|
||||||
}
|
}
|
||||||
|
|
||||||
$invitationService->inviteUser($organization, $user->email, Role::Employee);
|
$invitationService->inviteUser($organization, $user->email, Role::Employee, $this->user());
|
||||||
|
|
||||||
return response()->json(null, 204);
|
return response()->json(null, 204);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ namespace App\Http\Controllers\Api\V1;
|
|||||||
|
|
||||||
use App\Enums\Role;
|
use App\Enums\Role;
|
||||||
use App\Events\AfterCreateOrganization;
|
use App\Events\AfterCreateOrganization;
|
||||||
|
use App\Http\Requests\V1\Organization\OrganizationDestroyRequest;
|
||||||
use App\Http\Requests\V1\Organization\OrganizationStoreRequest;
|
use App\Http\Requests\V1\Organization\OrganizationStoreRequest;
|
||||||
use App\Http\Requests\V1\Organization\OrganizationUpdateRequest;
|
use App\Http\Requests\V1\Organization\OrganizationUpdateRequest;
|
||||||
use App\Http\Resources\V1\Organization\OrganizationResource;
|
use App\Http\Resources\V1\Organization\OrganizationResource;
|
||||||
@@ -50,6 +51,9 @@ class OrganizationController extends Controller
|
|||||||
if ($request->getName() !== null) {
|
if ($request->getName() !== null) {
|
||||||
$organization->name = $request->getName();
|
$organization->name = $request->getName();
|
||||||
}
|
}
|
||||||
|
if ($request->getCurrency() !== null) {
|
||||||
|
$organization->currency = $request->getCurrency();
|
||||||
|
}
|
||||||
if ($request->getEmployeesCanSeeBillableRates() !== null) {
|
if ($request->getEmployeesCanSeeBillableRates() !== null) {
|
||||||
$organization->employees_can_see_billable_rates = $request->getEmployeesCanSeeBillableRates();
|
$organization->employees_can_see_billable_rates = $request->getEmployeesCanSeeBillableRates();
|
||||||
}
|
}
|
||||||
@@ -121,7 +125,7 @@ class OrganizationController extends Controller
|
|||||||
*
|
*
|
||||||
* @throws AuthorizationException
|
* @throws AuthorizationException
|
||||||
*/
|
*/
|
||||||
public function destroy(Organization $organization, DeletionService $deletionService): JsonResponse
|
public function destroy(Organization $organization, OrganizationDestroyRequest $request, DeletionService $deletionService): JsonResponse
|
||||||
{
|
{
|
||||||
$this->checkPermission($organization, 'organizations:delete');
|
$this->checkPermission($organization, 'organizations:delete');
|
||||||
|
|
||||||
|
|||||||
33
app/Http/Controllers/Api/V1/TimeZoneController.php
Normal file
33
app/Http/Controllers/Api/V1/TimeZoneController.php
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Api\V1;
|
||||||
|
|
||||||
|
use App\Service\TimezoneService;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
|
|
||||||
|
class TimeZoneController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Get all timezones
|
||||||
|
*
|
||||||
|
* @response object{key: string}[]
|
||||||
|
*
|
||||||
|
* @operationId getTimezones
|
||||||
|
*/
|
||||||
|
public function index(): JsonResponse
|
||||||
|
{
|
||||||
|
$timezones = app(TimezoneService::class)->getTimezones();
|
||||||
|
|
||||||
|
$response = [];
|
||||||
|
|
||||||
|
foreach ($timezones as $timezone) {
|
||||||
|
$response[] = (object) [
|
||||||
|
'key' => $timezone,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return response()->json($response);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,11 +6,15 @@ namespace App\Http\Controllers\Api\V1;
|
|||||||
|
|
||||||
use App\Exceptions\Api\CanNotDeleteUserWhoIsOwnerOfOrganizationWithMultipleMembers;
|
use App\Exceptions\Api\CanNotDeleteUserWhoIsOwnerOfOrganizationWithMultipleMembers;
|
||||||
use App\Exceptions\Api\UserResendEmailVerificationNoPendingEmailApiException;
|
use App\Exceptions\Api\UserResendEmailVerificationNoPendingEmailApiException;
|
||||||
|
use App\Http\Requests\V1\User\UserDestroyRequest;
|
||||||
|
use App\Http\Requests\V1\User\UserUpdateCurrentOrganizationRequest;
|
||||||
use App\Http\Requests\V1\User\UserUpdateRequest;
|
use App\Http\Requests\V1\User\UserUpdateRequest;
|
||||||
use App\Http\Resources\V1\User\UserResource;
|
use App\Http\Resources\V1\User\UserResource;
|
||||||
use App\Mail\VerifyUpdatedEmailMail;
|
use App\Mail\VerifyUpdatedEmailMail;
|
||||||
|
use App\Models\Organization;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use App\Service\DeletionService;
|
use App\Service\DeletionService;
|
||||||
|
use App\Service\UserService;
|
||||||
use App\Support\Base64File;
|
use App\Support\Base64File;
|
||||||
use Illuminate\Auth\Access\AuthorizationException;
|
use Illuminate\Auth\Access\AuthorizationException;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
@@ -36,6 +40,35 @@ class UserController extends Controller
|
|||||||
return new UserResource($user);
|
return new UserResource($user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the current organization of the current user
|
||||||
|
*
|
||||||
|
* Switches the organization that the user is currently working in. The user
|
||||||
|
* must be a member of the given organization. This endpoint is independent of
|
||||||
|
* the organization.
|
||||||
|
*
|
||||||
|
* @operationId updateMyCurrentOrganization
|
||||||
|
*
|
||||||
|
* @throws AuthorizationException
|
||||||
|
*/
|
||||||
|
public function updateMyCurrentOrganization(UserUpdateCurrentOrganizationRequest $request, UserService $userService): UserResource
|
||||||
|
{
|
||||||
|
$user = $this->user();
|
||||||
|
|
||||||
|
/** @var Organization|null $organization */
|
||||||
|
$organization = $user->organizations()
|
||||||
|
->whereKey($request->getOrganizationId())
|
||||||
|
->first();
|
||||||
|
|
||||||
|
if ($organization === null) {
|
||||||
|
throw new AuthorizationException;
|
||||||
|
}
|
||||||
|
|
||||||
|
$userService->switchCurrentOrganization($user, $organization);
|
||||||
|
|
||||||
|
return new UserResource($user->refresh());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update the current user
|
* Update the current user
|
||||||
*
|
*
|
||||||
@@ -50,7 +83,7 @@ class UserController extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($request->hasPhotoKey()) {
|
if ($request->hasPhotoKey()) {
|
||||||
$photoDisk = (string) config('jetstream.profile_photo_disk', 'public');
|
$photoDisk = (string) config('filesystems.public');
|
||||||
$previousPhotoPath = $user->profile_photo_path;
|
$previousPhotoPath = $user->profile_photo_path;
|
||||||
$newPhoto = $request->getPhoto();
|
$newPhoto = $request->getPhoto();
|
||||||
|
|
||||||
@@ -161,7 +194,7 @@ class UserController extends Controller
|
|||||||
* @throws AuthorizationException Thrown when the authenticated user does not match the user to be deleted.
|
* @throws AuthorizationException Thrown when the authenticated user does not match the user to be deleted.
|
||||||
* @throws CanNotDeleteUserWhoIsOwnerOfOrganizationWithMultipleMembers Thrown when the user to be deleted is the owner of an organization with multiple members.
|
* @throws CanNotDeleteUserWhoIsOwnerOfOrganizationWithMultipleMembers Thrown when the user to be deleted is the owner of an organization with multiple members.
|
||||||
*/
|
*/
|
||||||
public function destroy(User $user, DeletionService $deletionService): JsonResponse
|
public function destroy(User $user, UserDestroyRequest $request, DeletionService $deletionService): JsonResponse
|
||||||
{
|
{
|
||||||
if ($user->getKey() !== $this->user()->getKey()) {
|
if ($user->getKey() !== $this->user()->getKey()) {
|
||||||
throw new AuthorizationException;
|
throw new AuthorizationException;
|
||||||
|
|||||||
@@ -4,4 +4,21 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace App\Http\Controllers\Web;
|
namespace App\Http\Controllers\Web;
|
||||||
|
|
||||||
abstract class Controller extends \App\Http\Controllers\Controller {}
|
use App\Models\Organization;
|
||||||
|
use App\Service\PermissionStore;
|
||||||
|
use Illuminate\Auth\Access\AuthorizationException;
|
||||||
|
|
||||||
|
abstract class Controller extends \App\Http\Controllers\Controller
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
protected PermissionStore $permissionStore,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws AuthorizationException
|
||||||
|
*/
|
||||||
|
protected function hasPermission(Organization $organization, string $permission): bool
|
||||||
|
{
|
||||||
|
return $this->permissionStore->has($organization, $permission);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
63
app/Http/Controllers/Web/OrganizationController.php
Normal file
63
app/Http/Controllers/Web/OrganizationController.php
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Web;
|
||||||
|
|
||||||
|
use App\Models\Organization;
|
||||||
|
use Brick\Money\Currency;
|
||||||
|
use Brick\Money\ISOCurrencyProvider;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
use Inertia\Inertia;
|
||||||
|
use Inertia\Response;
|
||||||
|
|
||||||
|
class OrganizationController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Show the team creation screen.
|
||||||
|
*/
|
||||||
|
public function create(Request $request): Response
|
||||||
|
{
|
||||||
|
return Inertia::render('Teams/Create');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the organizatio details screen.
|
||||||
|
*
|
||||||
|
* @param string $organizationId The organization ID
|
||||||
|
*/
|
||||||
|
public function show(string $organizationId): Response|RedirectResponse
|
||||||
|
{
|
||||||
|
$organization = Str::isUuid($organizationId) ? Organization::find($organizationId) : null;
|
||||||
|
if ($organization === null) {
|
||||||
|
return redirect()->route('dashboard');
|
||||||
|
}
|
||||||
|
if (! $this->hasPermission($organization, 'organizations:view')) {
|
||||||
|
return redirect()->route('dashboard');
|
||||||
|
}
|
||||||
|
|
||||||
|
$owner = $organization->owner;
|
||||||
|
|
||||||
|
return Inertia::render('Teams/Show', [
|
||||||
|
'team' => [
|
||||||
|
'id' => $organization->getKey(),
|
||||||
|
'name' => $organization->name,
|
||||||
|
'currency' => $organization->currency,
|
||||||
|
'owner' => [
|
||||||
|
'id' => $owner->getKey(),
|
||||||
|
'name' => $owner->name,
|
||||||
|
'profile_photo_url' => $owner->profile_photo_url,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'currencies' => array_map(function (Currency $currency): string {
|
||||||
|
return $currency->getName();
|
||||||
|
}, ISOCurrencyProvider::getInstance()->getAvailableCurrencies()),
|
||||||
|
'permissions' => [
|
||||||
|
'canDeleteTeam' => $this->hasPermission($organization, 'organizations:delete'),
|
||||||
|
'canUpdateTeam' => $this->hasPermission($organization, 'organizations:update'),
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
54
app/Http/Controllers/Web/OtherBrowserSessionsController.php
Normal file
54
app/Http/Controllers/Web/OtherBrowserSessionsController.php
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Web;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\Auth\StatefulGuard;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Routing\Controller;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Laravel\Fortify\Actions\ConfirmPassword;
|
||||||
|
|
||||||
|
class OtherBrowserSessionsController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Log the user out of their other browser sessions across all devices.
|
||||||
|
*/
|
||||||
|
public function destroy(Request $request, StatefulGuard $guard): RedirectResponse
|
||||||
|
{
|
||||||
|
$password = (string) $request->string('password');
|
||||||
|
|
||||||
|
$confirmed = app(ConfirmPassword::class)($guard, $request->user(), $password);
|
||||||
|
|
||||||
|
if (! $confirmed) {
|
||||||
|
throw ValidationException::withMessages([
|
||||||
|
'password' => __('The password is incorrect.'),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$guard->logoutOtherDevices($password);
|
||||||
|
|
||||||
|
$this->deleteOtherSessionRecords($request);
|
||||||
|
|
||||||
|
return back(303);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete the other browser session records from storage.
|
||||||
|
*/
|
||||||
|
protected function deleteOtherSessionRecords(Request $request): void
|
||||||
|
{
|
||||||
|
if (config('session.driver') !== 'database') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DB::connection(config('session.connection'))
|
||||||
|
->table(config('session.table', 'sessions'))
|
||||||
|
->where('user_id', $request->user()->getAuthIdentifier())
|
||||||
|
->where('id', '!=', $request->session()->getId())
|
||||||
|
->delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
142
app/Http/Controllers/Web/UserProfileController.php
Normal file
142
app/Http/Controllers/Web/UserProfileController.php
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Web;
|
||||||
|
|
||||||
|
use App\Enums\Weekday;
|
||||||
|
use App\Service\Dto\UserAgentDto;
|
||||||
|
use App\Service\TimezoneService;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Routing\Controller;
|
||||||
|
use Illuminate\Support\Carbon;
|
||||||
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Inertia\Inertia;
|
||||||
|
use Inertia\Response;
|
||||||
|
use Laravel\Fortify\Actions\DisableTwoFactorAuthentication;
|
||||||
|
use Laravel\Fortify\Features;
|
||||||
|
|
||||||
|
class UserProfileController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Validate the two-factor authentication state for the request.
|
||||||
|
*/
|
||||||
|
protected function validateTwoFactorAuthenticationState(Request $request): void
|
||||||
|
{
|
||||||
|
if (! Features::optionEnabled(Features::twoFactorAuthentication(), 'confirm')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$currentTime = time();
|
||||||
|
|
||||||
|
// Notate totally disabled state in session...
|
||||||
|
if ($this->twoFactorAuthenticationDisabled($request)) {
|
||||||
|
$request->session()->put('two_factor_empty_at', $currentTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If was previously totally disabled this session but is now confirming, notate time...
|
||||||
|
if ($this->hasJustBegunConfirmingTwoFactorAuthentication($request)) {
|
||||||
|
$request->session()->put('two_factor_confirming_at', $currentTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the profile is reloaded and is not confirmed but was previously in confirming state, disable...
|
||||||
|
if ($this->neverFinishedConfirmingTwoFactorAuthentication($request, $currentTime)) {
|
||||||
|
app(DisableTwoFactorAuthentication::class)(Auth::user());
|
||||||
|
|
||||||
|
$request->session()->put('two_factor_empty_at', $currentTime);
|
||||||
|
$request->session()->remove('two_factor_confirming_at');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if two-factor authentication is totally disabled.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected function twoFactorAuthenticationDisabled(Request $request)
|
||||||
|
{
|
||||||
|
return is_null($request->user()->two_factor_secret) &&
|
||||||
|
is_null($request->user()->two_factor_confirmed_at);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if two-factor authentication is just now being confirmed within the last request cycle.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected function hasJustBegunConfirmingTwoFactorAuthentication(Request $request)
|
||||||
|
{
|
||||||
|
return ! is_null($request->user()->two_factor_secret) &&
|
||||||
|
is_null($request->user()->two_factor_confirmed_at) &&
|
||||||
|
$request->session()->has('two_factor_empty_at') &&
|
||||||
|
is_null($request->session()->get('two_factor_confirming_at'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if two-factor authentication was never totally confirmed once confirmation started.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected function neverFinishedConfirmingTwoFactorAuthentication(Request $request, int $currentTime)
|
||||||
|
{
|
||||||
|
return ! array_key_exists('code', $request->session()->getOldInput()) &&
|
||||||
|
is_null($request->user()->two_factor_confirmed_at) &&
|
||||||
|
$request->session()->get('two_factor_confirming_at', 0) !== $currentTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the general profile settings screen.
|
||||||
|
*/
|
||||||
|
public function show(Request $request): Response
|
||||||
|
{
|
||||||
|
$this->validateTwoFactorAuthenticationState($request);
|
||||||
|
|
||||||
|
return Inertia::render('Profile/Show', [
|
||||||
|
'timezones' => app(TimezoneService::class)->getSelectOptions(),
|
||||||
|
'weekdays' => Weekday::toSelectArray(),
|
||||||
|
'confirmsTwoFactorAuthentication' => Features::optionEnabled(Features::twoFactorAuthentication(), 'confirm'),
|
||||||
|
'sessions' => $this->sessions($request),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current sessions.
|
||||||
|
*
|
||||||
|
* @return array<int, object{agent: array{is_desktop: bool, platform: string|null, browser: string|null}, ip_address: string, is_current_device: bool, last_active: string}&\stdClass>
|
||||||
|
*/
|
||||||
|
public function sessions(Request $request): array
|
||||||
|
{
|
||||||
|
if (config('session.driver') !== 'database') {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
return collect(
|
||||||
|
DB::connection(config('session.connection'))->table(config('session.table', 'sessions'))
|
||||||
|
->where('user_id', $request->user()->getAuthIdentifier())
|
||||||
|
->orderBy('last_activity', 'desc')
|
||||||
|
->get()
|
||||||
|
)->map(function (object $session) use ($request): object {
|
||||||
|
$agent = $this->createAgent(is_string($session->user_agent) ? $session->user_agent : '');
|
||||||
|
|
||||||
|
return (object) [
|
||||||
|
'agent' => [
|
||||||
|
'is_desktop' => $agent->isDesktop(),
|
||||||
|
'platform' => $agent->platform(),
|
||||||
|
'browser' => $agent->browser(),
|
||||||
|
],
|
||||||
|
'ip_address' => is_string($session->ip_address) ? $session->ip_address : '',
|
||||||
|
'is_current_device' => $session->id === $request->session()->getId(),
|
||||||
|
'last_active' => Carbon::createFromTimestamp($session->last_activity)->diffForHumans(),
|
||||||
|
];
|
||||||
|
})->all();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new agent instance from the given session.
|
||||||
|
*/
|
||||||
|
protected function createAgent(string $userAgent): UserAgentDto
|
||||||
|
{
|
||||||
|
return tap(new UserAgentDto, fn ($agent) => $agent->setUserAgent($userAgent));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,7 +17,7 @@ class EnsureEmailIsVerified
|
|||||||
*/
|
*/
|
||||||
public function handle(Request $request, Closure $next, ?string $redirectToRoute = null): Response
|
public function handle(Request $request, Closure $next, ?string $redirectToRoute = null): Response
|
||||||
{
|
{
|
||||||
if (! app()->isLocal()) {
|
if (! app()->isLocal() || config('app.local_email_verification')) {
|
||||||
if ($request->user() === null ||
|
if ($request->user() === null ||
|
||||||
(! $request->user()->hasVerifiedEmail())) {
|
(! $request->user()->hasVerifiedEmail())) {
|
||||||
return $request->expectsJson()
|
return $request->expectsJson()
|
||||||
|
|||||||
@@ -9,12 +9,10 @@ use App\Models\User;
|
|||||||
use App\Service\PermissionStore;
|
use App\Service\PermissionStore;
|
||||||
use Closure;
|
use Closure;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Gate;
|
|
||||||
use Illuminate\Support\Facades\Session;
|
use Illuminate\Support\Facades\Session;
|
||||||
use Illuminate\Support\MessageBag;
|
use Illuminate\Support\MessageBag;
|
||||||
use Inertia\Inertia;
|
use Inertia\Inertia;
|
||||||
use Laravel\Fortify\Features;
|
use Laravel\Fortify\Features;
|
||||||
use Laravel\Jetstream\Jetstream;
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
class ShareInertiaData
|
class ShareInertiaData
|
||||||
@@ -27,27 +25,8 @@ class ShareInertiaData
|
|||||||
/** @var PermissionStore $permissions */
|
/** @var PermissionStore $permissions */
|
||||||
$permissions = app(PermissionStore::class);
|
$permissions = app(PermissionStore::class);
|
||||||
Inertia::share([
|
Inertia::share([
|
||||||
'jetstream' => function () use ($request) {
|
|
||||||
/** @var User|null $user */
|
|
||||||
$user = $request->user();
|
|
||||||
|
|
||||||
return [
|
|
||||||
'canCreateTeams' => $user !== null &&
|
|
||||||
Jetstream::userHasTeamFeatures($user) &&
|
|
||||||
Gate::forUser($user)->check('create', Jetstream::newTeamModel()),
|
|
||||||
'canManageTwoFactorAuthentication' => Features::canManageTwoFactorAuthentication(),
|
|
||||||
'canUpdatePassword' => Features::enabled(Features::updatePasswords()),
|
|
||||||
'canUpdateProfileInformation' => Features::canUpdateProfileInformation(),
|
|
||||||
'hasEmailVerification' => Features::enabled(Features::emailVerification()),
|
|
||||||
'hasAccountDeletionFeatures' => Jetstream::hasAccountDeletionFeatures(),
|
|
||||||
'hasApiFeatures' => Jetstream::hasApiFeatures(),
|
|
||||||
'hasTeamFeatures' => Jetstream::hasTeamFeatures(),
|
|
||||||
'hasTermsAndPrivacyPolicyFeature' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
||||||
'managesProfilePhotos' => Jetstream::managesProfilePhotos(),
|
|
||||||
];
|
|
||||||
},
|
|
||||||
'auth' => [
|
'auth' => [
|
||||||
'permissions' => $request->user() !== null && $request->user()->currentTeam !== null ? $permissions->getPermissions($request->user()->currentTeam) : [],
|
'permissions' => $request->user() !== null && $request->user()->currentOrganization !== null ? $permissions->getPermissions($request->user()->currentOrganization) : [],
|
||||||
'user' => function () use ($request): array {
|
'user' => function () use ($request): array {
|
||||||
/** @var User|null $user */
|
/** @var User|null $user */
|
||||||
$user = $request->user();
|
$user = $request->user();
|
||||||
@@ -56,6 +35,8 @@ class ShareInertiaData
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$currentOrganization = $user->currentOrganization;
|
||||||
|
|
||||||
return array_merge([
|
return array_merge([
|
||||||
'id' => $user->id,
|
'id' => $user->id,
|
||||||
'name' => $user->name,
|
'name' => $user->name,
|
||||||
@@ -68,12 +49,12 @@ class ShareInertiaData
|
|||||||
'profile_photo_url' => $user->profile_photo_url,
|
'profile_photo_url' => $user->profile_photo_url,
|
||||||
'two_factor_enabled' => Features::enabled(Features::twoFactorAuthentication())
|
'two_factor_enabled' => Features::enabled(Features::twoFactorAuthentication())
|
||||||
&& ! is_null($user->two_factor_secret),
|
&& ! is_null($user->two_factor_secret),
|
||||||
'current_team' => $user->currentTeam !== null ? [
|
'current_team' => $currentOrganization !== null ? [
|
||||||
'id' => $user->currentTeam->id,
|
'id' => $currentOrganization->id,
|
||||||
'user_id' => $user->currentTeam->user_id,
|
'user_id' => $currentOrganization->user_id,
|
||||||
'name' => $user->currentTeam->name,
|
'name' => $currentOrganization->name,
|
||||||
'personal_team' => $user->currentTeam->personal_team,
|
'personal_team' => $currentOrganization->personal_team,
|
||||||
'currency' => $user->currentTeam->currency,
|
'currency' => $currentOrganization->currency,
|
||||||
] : null,
|
] : null,
|
||||||
], array_filter([
|
], array_filter([
|
||||||
'all_teams' => $user->organizations->map(function (Organization $organization): array {
|
'all_teams' => $user->organizations->map(function (Organization $organization): array {
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Requests\V1\Organization;
|
||||||
|
|
||||||
|
use App\Http\Requests\V1\BaseFormRequest;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Validation\Validator;
|
||||||
|
|
||||||
|
class OrganizationDestroyRequest extends BaseFormRequest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Get the validation rules that apply to the request.
|
||||||
|
*
|
||||||
|
* @return array<string, array<string>>
|
||||||
|
*/
|
||||||
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'password' => [
|
||||||
|
'required',
|
||||||
|
'string',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<int, callable(Validator): void>
|
||||||
|
*/
|
||||||
|
public function after(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
function (Validator $validator): void {
|
||||||
|
if ($validator->errors()->has('password')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$user = $this->user();
|
||||||
|
$password = $this->input('password');
|
||||||
|
|
||||||
|
if (! is_string($password) || $user === null || ! Hash::check($password, (string) $user->password)) {
|
||||||
|
$validator->errors()->add('password', __('The password is incorrect.'));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -11,6 +11,8 @@ use App\Enums\NumberFormat;
|
|||||||
use App\Enums\TimeFormat;
|
use App\Enums\TimeFormat;
|
||||||
use App\Http\Requests\V1\BaseFormRequest;
|
use App\Http\Requests\V1\BaseFormRequest;
|
||||||
use App\Models\Organization;
|
use App\Models\Organization;
|
||||||
|
use App\Rules\CurrencyRule;
|
||||||
|
use Illuminate\Contracts\Validation\ValidationRule;
|
||||||
use Illuminate\Validation\Rule;
|
use Illuminate\Validation\Rule;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -21,7 +23,7 @@ class OrganizationUpdateRequest extends BaseFormRequest
|
|||||||
/**
|
/**
|
||||||
* Get the validation rules that apply to the request.
|
* Get the validation rules that apply to the request.
|
||||||
*
|
*
|
||||||
* @return array<string, array<string|\Illuminate\Contracts\Validation\Rule>>
|
* @return array<string, array<string|\Illuminate\Contracts\Validation\Rule|ValidationRule>>
|
||||||
*/
|
*/
|
||||||
public function rules(): array
|
public function rules(): array
|
||||||
{
|
{
|
||||||
@@ -30,6 +32,10 @@ class OrganizationUpdateRequest extends BaseFormRequest
|
|||||||
'string',
|
'string',
|
||||||
'max:255',
|
'max:255',
|
||||||
],
|
],
|
||||||
|
'currency' => [
|
||||||
|
'string',
|
||||||
|
new CurrencyRule,
|
||||||
|
],
|
||||||
'billable_rate' => array_merge(
|
'billable_rate' => array_merge(
|
||||||
[
|
[
|
||||||
'nullable',
|
'nullable',
|
||||||
@@ -68,6 +74,11 @@ class OrganizationUpdateRequest extends BaseFormRequest
|
|||||||
return $this->has('name') ? (string) $this->input('name') : null;
|
return $this->has('name') ? (string) $this->input('name') : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getCurrency(): ?string
|
||||||
|
{
|
||||||
|
return $this->has('currency') ? (string) $this->input('currency') : null;
|
||||||
|
}
|
||||||
|
|
||||||
public function getNumberFormat(): ?NumberFormat
|
public function getNumberFormat(): ?NumberFormat
|
||||||
{
|
{
|
||||||
return $this->has('number_format') ? NumberFormat::from($this->input('number_format')) : null;
|
return $this->has('number_format') ? NumberFormat::from($this->input('number_format')) : null;
|
||||||
|
|||||||
48
app/Http/Requests/V1/User/UserDestroyRequest.php
Normal file
48
app/Http/Requests/V1/User/UserDestroyRequest.php
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Requests\V1\User;
|
||||||
|
|
||||||
|
use App\Http\Requests\V1\BaseFormRequest;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Validation\Validator;
|
||||||
|
|
||||||
|
class UserDestroyRequest extends BaseFormRequest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Get the validation rules that apply to the request.
|
||||||
|
*
|
||||||
|
* @return array<string, array<string>>
|
||||||
|
*/
|
||||||
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'password' => [
|
||||||
|
'required',
|
||||||
|
'string',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<int, callable(Validator): void>
|
||||||
|
*/
|
||||||
|
public function after(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
function (Validator $validator): void {
|
||||||
|
if ($validator->errors()->has('password')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$user = $this->user();
|
||||||
|
$password = $this->input('password');
|
||||||
|
|
||||||
|
if (! is_string($password) || $user === null || ! Hash::check($password, (string) $user->password)) {
|
||||||
|
$validator->errors()->add('password', __('The password is incorrect.'));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Requests\V1\User;
|
||||||
|
|
||||||
|
use App\Http\Requests\V1\BaseFormRequest;
|
||||||
|
use Illuminate\Contracts\Validation\ValidationRule;
|
||||||
|
|
||||||
|
class UserUpdateCurrentOrganizationRequest extends BaseFormRequest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Get the validation rules that apply to the request.
|
||||||
|
*
|
||||||
|
* @return array<string, array<string|ValidationRule>>
|
||||||
|
*/
|
||||||
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'organization_id' => [
|
||||||
|
'required',
|
||||||
|
'string',
|
||||||
|
'uuid',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getOrganizationId(): string
|
||||||
|
{
|
||||||
|
return (string) $this->input('organization_id');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,10 +9,11 @@ use App\Models\Concerns\HasUuids;
|
|||||||
use Database\Factories\MemberFactory;
|
use Database\Factories\MemberFactory;
|
||||||
use Illuminate\Database\Eloquent\Collection;
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||||
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
use Laravel\Jetstream\Membership as JetstreamMembership;
|
|
||||||
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -30,7 +31,7 @@ use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
|||||||
*
|
*
|
||||||
* @method static MemberFactory factory()
|
* @method static MemberFactory factory()
|
||||||
*/
|
*/
|
||||||
class Member extends JetstreamMembership implements AuditableContract
|
class Member extends Pivot implements AuditableContract
|
||||||
{
|
{
|
||||||
use CustomAuditable;
|
use CustomAuditable;
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ use App\Models\Concerns\HasUuids;
|
|||||||
use Database\Factories\OrganizationFactory;
|
use Database\Factories\OrganizationFactory;
|
||||||
use Illuminate\Database\Eloquent\Collection;
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||||
@@ -21,11 +22,6 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
|
|||||||
use Illuminate\Database\Eloquent\Relations\Pivot;
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Laravel\Jetstream\Events\TeamCreated;
|
|
||||||
use Laravel\Jetstream\Events\TeamDeleted;
|
|
||||||
use Laravel\Jetstream\Events\TeamUpdated;
|
|
||||||
use Laravel\Jetstream\Team;
|
|
||||||
use Laravel\Jetstream\Team as JetstreamTeam;
|
|
||||||
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -53,7 +49,7 @@ use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
|||||||
*
|
*
|
||||||
* @method static OrganizationFactory factory()
|
* @method static OrganizationFactory factory()
|
||||||
*/
|
*/
|
||||||
class Organization extends JetstreamTeam implements AuditableContract
|
class Organization extends Model implements AuditableContract
|
||||||
{
|
{
|
||||||
use CustomAuditable;
|
use CustomAuditable;
|
||||||
|
|
||||||
@@ -91,17 +87,6 @@ class Organization extends JetstreamTeam implements AuditableContract
|
|||||||
'personal_team',
|
'personal_team',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
|
||||||
* The event map for the model.
|
|
||||||
*
|
|
||||||
* @var array<string, class-string>
|
|
||||||
*/
|
|
||||||
protected $dispatchesEvents = [
|
|
||||||
'created' => TeamCreated::class,
|
|
||||||
'updated' => TeamUpdated::class,
|
|
||||||
'deleted' => TeamDeleted::class,
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The model's default values for attributes.
|
* The model's default values for attributes.
|
||||||
*
|
*
|
||||||
@@ -163,12 +148,13 @@ class Organization extends JetstreamTeam implements AuditableContract
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method prevents an unhandled exception when the ID is not a UUID.
|
* Find a model by its primary key or throw an exception.
|
||||||
* Normally this can be fixed with a route pattern, but Jetstream does not use route model binding.
|
|
||||||
*
|
*
|
||||||
* @param array<string> $columns
|
* @param array<int, string> $columns
|
||||||
|
*
|
||||||
|
* @throws ModelNotFoundException<Model>
|
||||||
*/
|
*/
|
||||||
public function findOrFail(string $id, array $columns = ['*']): Team
|
public static function findOrFail(string $id, array $columns = ['*']): Model
|
||||||
{
|
{
|
||||||
if (! Str::isUuid($id)) {
|
if (! Str::isUuid($id)) {
|
||||||
throw (new ModelNotFoundException)->setModel(
|
throw (new ModelNotFoundException)->setModel(
|
||||||
|
|||||||
@@ -8,9 +8,9 @@ use App\Models\Concerns\CustomAuditable;
|
|||||||
use App\Models\Concerns\HasUuids;
|
use App\Models\Concerns\HasUuids;
|
||||||
use Database\Factories\OrganizationInvitationFactory;
|
use Database\Factories\OrganizationInvitationFactory;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
use Laravel\Jetstream\TeamInvitation as JetstreamTeamInvitation;
|
|
||||||
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -25,7 +25,7 @@ use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
|||||||
*
|
*
|
||||||
* @method static OrganizationInvitationFactory factory()
|
* @method static OrganizationInvitationFactory factory()
|
||||||
*/
|
*/
|
||||||
class OrganizationInvitation extends JetstreamTeamInvitation implements AuditableContract
|
class OrganizationInvitation extends Model implements AuditableContract
|
||||||
{
|
{
|
||||||
use CustomAuditable;
|
use CustomAuditable;
|
||||||
|
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ use Illuminate\Notifications\Notifiable;
|
|||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
use Illuminate\Support\Facades\Storage;
|
use Illuminate\Support\Facades\Storage;
|
||||||
use Laravel\Fortify\TwoFactorAuthenticatable;
|
use Laravel\Fortify\TwoFactorAuthenticatable;
|
||||||
use Laravel\Jetstream\HasProfilePhoto;
|
|
||||||
use Laravel\Jetstream\HasTeams;
|
|
||||||
use Laravel\Passport\AuthCode;
|
use Laravel\Passport\AuthCode;
|
||||||
use Laravel\Passport\Contracts\OAuthenticatable;
|
use Laravel\Passport\Contracts\OAuthenticatable;
|
||||||
use Laravel\Passport\HasApiTokens;
|
use Laravel\Passport\HasApiTokens;
|
||||||
@@ -46,7 +44,6 @@ use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
|
|||||||
* @property Weekday $week_start
|
* @property Weekday $week_start
|
||||||
* @property string|null $profile_photo_path
|
* @property string|null $profile_photo_path
|
||||||
* @property-read Organization|null $currentOrganization
|
* @property-read Organization|null $currentOrganization
|
||||||
* @property-read Organization|null $currentTeam
|
|
||||||
* @property-read string $profile_photo_url
|
* @property-read string $profile_photo_url
|
||||||
* @property-read Collection<int, Token> $tokens
|
* @property-read Collection<int, Token> $tokens
|
||||||
* @property Carbon|null $created_at
|
* @property Carbon|null $created_at
|
||||||
@@ -71,8 +68,6 @@ class User extends Authenticatable implements AuditableContract, FilamentUser, M
|
|||||||
/** @use HasFactory<UserFactory> */
|
/** @use HasFactory<UserFactory> */
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
use HasProfilePhoto;
|
|
||||||
use HasTeams;
|
|
||||||
use HasUuids;
|
use HasUuids;
|
||||||
use Notifiable;
|
use Notifiable;
|
||||||
use TwoFactorAuthenticatable;
|
use TwoFactorAuthenticatable;
|
||||||
|
|||||||
@@ -1,102 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Policies;
|
|
||||||
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Service\PermissionStore;
|
|
||||||
use Filament\Facades\Filament;
|
|
||||||
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
||||||
|
|
||||||
class OrganizationPolicy
|
|
||||||
{
|
|
||||||
use HandlesAuthorization;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can view any models.
|
|
||||||
*/
|
|
||||||
public function viewAny(User $user): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can view the model.
|
|
||||||
*/
|
|
||||||
public function view(User $user, Organization $organization): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $user->isMemberOfOrganization($organization);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can create models.
|
|
||||||
*/
|
|
||||||
public function create(User $user): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can update the model.
|
|
||||||
*/
|
|
||||||
public function update(User $user, Organization $organization): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return app(PermissionStore::class)->userHas($organization, $user, 'organizations:update');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can update team member permissions.
|
|
||||||
*/
|
|
||||||
public function updateTeamMember(User $user, Organization $organization): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Note: since this policy is only used for jetstream endpoints, we can return false here
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can remove team members.
|
|
||||||
*/
|
|
||||||
public function removeTeamMember(User $user, Organization $organization): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Note: since this policy is only used for jetstream endpoints that are no longer in use, we can return false here
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine whether the user can delete the model.
|
|
||||||
*/
|
|
||||||
public function delete(User $user, Organization $organization): bool
|
|
||||||
{
|
|
||||||
if (Filament::isServing()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return app(PermissionStore::class)->userHas($organization, $user, 'organizations:delete');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,14 +4,11 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace App\Providers;
|
namespace App\Providers;
|
||||||
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\Passport\AuthCode;
|
use App\Models\Passport\AuthCode;
|
||||||
use App\Models\Passport\Client;
|
use App\Models\Passport\Client;
|
||||||
use App\Models\Passport\RefreshToken;
|
use App\Models\Passport\RefreshToken;
|
||||||
use App\Models\Passport\Token;
|
use App\Models\Passport\Token;
|
||||||
use App\Policies\OrganizationPolicy;
|
|
||||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||||
use Laravel\Jetstream\Jetstream;
|
|
||||||
use Laravel\Passport\Passport;
|
use Laravel\Passport\Passport;
|
||||||
|
|
||||||
class AuthServiceProvider extends ServiceProvider
|
class AuthServiceProvider extends ServiceProvider
|
||||||
@@ -22,7 +19,6 @@ class AuthServiceProvider extends ServiceProvider
|
|||||||
* @var array<class-string, class-string>
|
* @var array<class-string, class-string>
|
||||||
*/
|
*/
|
||||||
protected $policies = [
|
protected $policies = [
|
||||||
Organization::class => OrganizationPolicy::class,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -56,11 +52,5 @@ class AuthServiceProvider extends ServiceProvider
|
|||||||
// Passport::tokensExpireIn(now()->addDays(15));
|
// Passport::tokensExpireIn(now()->addDays(15));
|
||||||
// Passport::refreshTokensExpireIn(now()->addDays(30));
|
// Passport::refreshTokensExpireIn(now()->addDays(30));
|
||||||
Passport::personalAccessTokensExpireIn(now()->addMonths(12));
|
Passport::personalAccessTokensExpireIn(now()->addMonths(12));
|
||||||
|
|
||||||
// same as passport default above
|
|
||||||
Jetstream::defaultApiTokenPermissions(['read']);
|
|
||||||
|
|
||||||
// use passport scopes for jetstream token permissions
|
|
||||||
Jetstream::permissions(Passport::scopeIds());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,12 +15,13 @@ use Illuminate\Cache\RateLimiting\Limit;
|
|||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Hash;
|
use Illuminate\Support\Facades\Hash;
|
||||||
use Illuminate\Support\Facades\RateLimiter;
|
use Illuminate\Support\Facades\RateLimiter;
|
||||||
|
use Illuminate\Support\Facades\Route;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Inertia\Inertia;
|
use Inertia\Inertia;
|
||||||
|
use Laravel\Fortify\Contracts\LoginResponse as LoginResponseContract;
|
||||||
use Laravel\Fortify\Contracts\TwoFactorLoginResponse;
|
use Laravel\Fortify\Contracts\TwoFactorLoginResponse;
|
||||||
use Laravel\Fortify\Fortify;
|
use Laravel\Fortify\Fortify;
|
||||||
use Laravel\Fortify\Http\Responses\LoginResponse;
|
|
||||||
|
|
||||||
class FortifyServiceProvider extends ServiceProvider
|
class FortifyServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
@@ -50,6 +51,40 @@ class FortifyServiceProvider extends ServiceProvider
|
|||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Fortify::loginView(function () {
|
||||||
|
return Inertia::render('Auth/Login', [
|
||||||
|
'canResetPassword' => Route::has('password.request'),
|
||||||
|
'status' => session('status'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
Fortify::requestPasswordResetLinkView(function () {
|
||||||
|
return Inertia::render('Auth/ForgotPassword', [
|
||||||
|
'status' => session('status'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
Fortify::resetPasswordView(function (Request $request) {
|
||||||
|
return Inertia::render('Auth/ResetPassword', [
|
||||||
|
'email' => $request->input('email'),
|
||||||
|
'token' => $request->route('token'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
Fortify::verifyEmailView(function () {
|
||||||
|
return Inertia::render('Auth/VerifyEmail', [
|
||||||
|
'status' => session('status'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
Fortify::twoFactorChallengeView(function () {
|
||||||
|
return Inertia::render('Auth/TwoFactorChallenge');
|
||||||
|
});
|
||||||
|
|
||||||
|
Fortify::confirmPasswordView(function () {
|
||||||
|
return Inertia::render('Auth/ConfirmPassword');
|
||||||
|
});
|
||||||
|
|
||||||
Fortify::authenticateUsing(function (Request $request): ?User {
|
Fortify::authenticateUsing(function (Request $request): ?User {
|
||||||
/** @var User|null $user */
|
/** @var User|null $user */
|
||||||
$user = User::query()
|
$user = User::query()
|
||||||
@@ -74,7 +109,7 @@ class FortifyServiceProvider extends ServiceProvider
|
|||||||
return Limit::perMinute(5)->by($request->session()->get('login.id'));
|
return Limit::perMinute(5)->by($request->session()->get('login.id'));
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->app->instance(LoginResponse::class, new CustomLoginResponse);
|
$this->app->instance(LoginResponseContract::class, new CustomLoginResponse);
|
||||||
$this->app->instance(TwoFactorLoginResponse::class, new CustomTwoFactorLoginResponse);
|
$this->app->instance(TwoFactorLoginResponse::class, new CustomTwoFactorLoginResponse);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,113 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace App\Providers;
|
|
||||||
|
|
||||||
use App\Actions\Jetstream\AddOrganizationMember;
|
|
||||||
use App\Actions\Jetstream\CreateOrganization;
|
|
||||||
use App\Actions\Jetstream\DeleteOrganization;
|
|
||||||
use App\Actions\Jetstream\DeleteUser;
|
|
||||||
use App\Actions\Jetstream\InviteOrganizationMember;
|
|
||||||
use App\Actions\Jetstream\RemoveOrganizationMember;
|
|
||||||
use App\Actions\Jetstream\UpdateMemberRole;
|
|
||||||
use App\Actions\Jetstream\UpdateOrganization;
|
|
||||||
use App\Actions\Jetstream\ValidateOrganizationDeletion;
|
|
||||||
use App\Enums\Weekday;
|
|
||||||
use App\Models\Member;
|
|
||||||
use App\Models\Organization;
|
|
||||||
use App\Models\OrganizationInvitation;
|
|
||||||
use App\Models\User;
|
|
||||||
use App\Service\PermissionStore;
|
|
||||||
use App\Service\TimezoneService;
|
|
||||||
use Brick\Money\Currency;
|
|
||||||
use Brick\Money\ISOCurrencyProvider;
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Illuminate\Support\Facades\Gate;
|
|
||||||
use Illuminate\Support\ServiceProvider;
|
|
||||||
use Laravel\Jetstream\Actions\UpdateTeamMemberRole;
|
|
||||||
use Laravel\Jetstream\Actions\ValidateTeamDeletion;
|
|
||||||
use Laravel\Jetstream\Jetstream;
|
|
||||||
|
|
||||||
class JetstreamServiceProvider extends ServiceProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Register any application services.
|
|
||||||
*/
|
|
||||||
public function register(): void
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bootstrap any application services.
|
|
||||||
*/
|
|
||||||
public function boot(): void
|
|
||||||
{
|
|
||||||
$this->configurePermissions();
|
|
||||||
|
|
||||||
Jetstream::createTeamsUsing(CreateOrganization::class);
|
|
||||||
Jetstream::updateTeamNamesUsing(UpdateOrganization::class);
|
|
||||||
Jetstream::addTeamMembersUsing(AddOrganizationMember::class);
|
|
||||||
Jetstream::inviteTeamMembersUsing(InviteOrganizationMember::class);
|
|
||||||
Jetstream::removeTeamMembersUsing(RemoveOrganizationMember::class);
|
|
||||||
Jetstream::deleteTeamsUsing(DeleteOrganization::class);
|
|
||||||
Jetstream::deleteUsersUsing(DeleteUser::class);
|
|
||||||
Jetstream::useTeamModel(Organization::class);
|
|
||||||
Jetstream::useMembershipModel(Member::class);
|
|
||||||
Jetstream::useTeamInvitationModel(OrganizationInvitation::class);
|
|
||||||
app()->singleton(UpdateTeamMemberRole::class, UpdateMemberRole::class);
|
|
||||||
app()->singleton(ValidateTeamDeletion::class, ValidateOrganizationDeletion::class);
|
|
||||||
Gate::define('removeTeamMember', function (User $user, Organization $team) {
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Configure the roles and permissions that are available within the application.
|
|
||||||
*/
|
|
||||||
protected function configurePermissions(): void
|
|
||||||
{
|
|
||||||
Jetstream::defaultApiTokenPermissions([]);
|
|
||||||
|
|
||||||
foreach (PermissionStore::roleDefinitions() as $role => $definition) {
|
|
||||||
Jetstream::role($role, $definition['name'], $definition['permissions'])
|
|
||||||
->description($definition['description']);
|
|
||||||
}
|
|
||||||
|
|
||||||
Jetstream::inertia()
|
|
||||||
->whenRendering(
|
|
||||||
'Profile/Show',
|
|
||||||
function (Request $request, array $data): array {
|
|
||||||
return array_merge($data, [
|
|
||||||
'timezones' => $this->app->get(TimezoneService::class)->getSelectOptions(),
|
|
||||||
'weekdays' => Weekday::toSelectArray(),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
)
|
|
||||||
->whenRendering(
|
|
||||||
'Teams/Show',
|
|
||||||
function (Request $request, array $data): array {
|
|
||||||
/** @var Organization $teamModel */
|
|
||||||
$teamModel = $data['team'];
|
|
||||||
$owner = $teamModel->owner;
|
|
||||||
|
|
||||||
return array_merge($data, [
|
|
||||||
'team' => [
|
|
||||||
'id' => $teamModel->getKey(),
|
|
||||||
'name' => $teamModel->name,
|
|
||||||
'currency' => $teamModel->currency,
|
|
||||||
'owner' => [
|
|
||||||
'id' => $owner->getKey(),
|
|
||||||
'name' => $owner->name,
|
|
||||||
'profile_photo_url' => $owner->profile_photo_url,
|
|
||||||
],
|
|
||||||
],
|
|
||||||
'currencies' => array_map(function (Currency $currency): string {
|
|
||||||
return $currency->getName();
|
|
||||||
}, ISOCurrencyProvider::getInstance()->getAvailableCurrencies()),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
179
app/Service/Dto/UserAgentDto.php
Normal file
179
app/Service/Dto/UserAgentDto.php
Normal file
@@ -0,0 +1,179 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Service\Dto;
|
||||||
|
|
||||||
|
use Closure;
|
||||||
|
use Detection\MobileDetect;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright Originally created by Jens Segers: https://github.com/jenssegers/agent
|
||||||
|
*/
|
||||||
|
class UserAgentDto extends MobileDetect
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* List of additional operating systems.
|
||||||
|
*
|
||||||
|
* @var array<string, string>
|
||||||
|
*/
|
||||||
|
protected static array $additionalOperatingSystems = [
|
||||||
|
'Windows' => 'Windows',
|
||||||
|
'Windows NT' => 'Windows NT',
|
||||||
|
'OS X' => 'Mac OS X',
|
||||||
|
'Debian' => 'Debian',
|
||||||
|
'Ubuntu' => 'Ubuntu',
|
||||||
|
'Macintosh' => 'PPC',
|
||||||
|
'OpenBSD' => 'OpenBSD',
|
||||||
|
'Linux' => 'Linux',
|
||||||
|
'ChromeOS' => 'CrOS',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List of additional browsers.
|
||||||
|
*
|
||||||
|
* @var array<string, string>
|
||||||
|
*/
|
||||||
|
protected static array $additionalBrowsers = [
|
||||||
|
'Opera Mini' => 'Opera Mini',
|
||||||
|
'Opera' => 'Opera|OPR',
|
||||||
|
'Edge' => 'Edge|Edg',
|
||||||
|
'Coc Coc' => 'coc_coc_browser',
|
||||||
|
'UCBrowser' => 'UCBrowser',
|
||||||
|
'Vivaldi' => 'Vivaldi',
|
||||||
|
'Chrome' => 'Chrome',
|
||||||
|
'Firefox' => 'Firefox',
|
||||||
|
'Safari' => 'Safari',
|
||||||
|
'IE' => 'MSIE|IEMobile|MSIEMobile|Trident/[.0-9]+',
|
||||||
|
'Netscape' => 'Netscape',
|
||||||
|
'Mozilla' => 'Mozilla',
|
||||||
|
'WeChat' => 'MicroMessenger',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key value store for resolved strings.
|
||||||
|
*
|
||||||
|
* @var array<string, mixed>
|
||||||
|
*/
|
||||||
|
protected array $store = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the platform name from the User Agent.
|
||||||
|
*/
|
||||||
|
public function platform(): ?string
|
||||||
|
{
|
||||||
|
return $this->retrieveUsingCacheOrResolve('platform', function () {
|
||||||
|
return $this->findDetectionRulesAgainstUserAgent(
|
||||||
|
$this->mergeRules(MobileDetect::getOperatingSystems(), static::$additionalOperatingSystems)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the browser name from the User Agent.
|
||||||
|
*/
|
||||||
|
public function browser(): ?string
|
||||||
|
{
|
||||||
|
return $this->retrieveUsingCacheOrResolve('browser', function (): ?string {
|
||||||
|
return $this->findDetectionRulesAgainstUserAgent(
|
||||||
|
$this->mergeRules(static::$additionalBrowsers, MobileDetect::getBrowsers())
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if the device is a desktop computer.
|
||||||
|
*/
|
||||||
|
public function isDesktop(): bool
|
||||||
|
{
|
||||||
|
return $this->retrieveUsingCacheOrResolve('desktop', function (): bool {
|
||||||
|
// Check specifically for cloudfront headers if the useragent === 'Amazon CloudFront'
|
||||||
|
if (
|
||||||
|
$this->getUserAgent() === static::$cloudFrontUA
|
||||||
|
&& $this->getHttpHeader('HTTP_CLOUDFRONT_IS_DESKTOP_VIEWER') === 'true'
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ! $this->isMobile() && ! $this->isTablet();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match a detection rule and return the matched key.
|
||||||
|
*
|
||||||
|
* @param array<string, string|list<string>> $rules
|
||||||
|
*/
|
||||||
|
protected function findDetectionRulesAgainstUserAgent(array $rules): ?string
|
||||||
|
{
|
||||||
|
$userAgent = $this->getUserAgent();
|
||||||
|
|
||||||
|
foreach ($rules as $key => $regex) {
|
||||||
|
if (is_array($regex)) {
|
||||||
|
$regex = implode('|', $regex);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($regex)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->match($regex, $userAgent)) {
|
||||||
|
if ($key !== '') {
|
||||||
|
return $key;
|
||||||
|
}
|
||||||
|
|
||||||
|
$match = reset($this->matchesArray);
|
||||||
|
|
||||||
|
return is_string($match) ? $match : null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve from the given key from the cache or resolve the value.
|
||||||
|
*
|
||||||
|
* @template TReturn of string|bool|null
|
||||||
|
*
|
||||||
|
* @param Closure():TReturn $callback
|
||||||
|
* @return TReturn
|
||||||
|
*/
|
||||||
|
protected function retrieveUsingCacheOrResolve(string $key, Closure $callback): string|bool|null
|
||||||
|
{
|
||||||
|
$cacheKey = $this->createCacheKey($key);
|
||||||
|
|
||||||
|
if (! is_null($cacheItem = $this->store[$cacheKey] ?? null)) {
|
||||||
|
return $cacheItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
return tap(call_user_func($callback), function ($result) use ($cacheKey): void {
|
||||||
|
$this->store[$cacheKey] = $result;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Merge multiple rules into one array.
|
||||||
|
*
|
||||||
|
* @param array<string, string|list<string>> ...$all
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
|
protected function mergeRules(array ...$all): array
|
||||||
|
{
|
||||||
|
$merged = [];
|
||||||
|
|
||||||
|
foreach ($all as $rules) {
|
||||||
|
foreach ($rules as $key => $value) {
|
||||||
|
$value = is_array($value) ? implode('|', $value) : $value;
|
||||||
|
|
||||||
|
if (empty($merged[$key])) {
|
||||||
|
$merged[$key] = $value;
|
||||||
|
} else {
|
||||||
|
$merged[$key] .= '|'.$value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $merged;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace App\Service;
|
namespace App\Service;
|
||||||
|
|
||||||
use App\Enums\Role;
|
use App\Enums\Role;
|
||||||
|
use App\Events\OrganizationInvitationAdding;
|
||||||
use App\Exceptions\Api\InvitationForTheEmailAlreadyExistsApiException;
|
use App\Exceptions\Api\InvitationForTheEmailAlreadyExistsApiException;
|
||||||
use App\Exceptions\Api\UserIsAlreadyMemberOfOrganizationApiException;
|
use App\Exceptions\Api\UserIsAlreadyMemberOfOrganizationApiException;
|
||||||
use App\Mail\OrganizationInvitationMail;
|
use App\Mail\OrganizationInvitationMail;
|
||||||
@@ -14,14 +15,13 @@ use App\Models\User;
|
|||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
use Illuminate\Support\Facades\Mail;
|
use Illuminate\Support\Facades\Mail;
|
||||||
use Laravel\Jetstream\Events\InvitingTeamMember;
|
|
||||||
|
|
||||||
class InvitationService
|
class InvitationService
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @throws UserIsAlreadyMemberOfOrganizationApiException|InvitationForTheEmailAlreadyExistsApiException
|
* @throws UserIsAlreadyMemberOfOrganizationApiException|InvitationForTheEmailAlreadyExistsApiException
|
||||||
*/
|
*/
|
||||||
public function inviteUser(Organization $organization, string $email, Role $role): OrganizationInvitation
|
public function inviteUser(Organization $organization, string $email, Role $role, User $inviter): OrganizationInvitation
|
||||||
{
|
{
|
||||||
if (app(MemberService::class)->isEmailAlreadyMember($organization, $email)) {
|
if (app(MemberService::class)->isEmailAlreadyMember($organization, $email)) {
|
||||||
throw new UserIsAlreadyMemberOfOrganizationApiException;
|
throw new UserIsAlreadyMemberOfOrganizationApiException;
|
||||||
@@ -34,7 +34,7 @@ class InvitationService
|
|||||||
throw new InvitationForTheEmailAlreadyExistsApiException;
|
throw new InvitationForTheEmailAlreadyExistsApiException;
|
||||||
}
|
}
|
||||||
|
|
||||||
InvitingTeamMember::dispatch($organization, $email, $role->value);
|
OrganizationInvitationAdding::dispatch($organization, $email, $role, $inviter);
|
||||||
|
|
||||||
$invitation = new OrganizationInvitation;
|
$invitation = new OrganizationInvitation;
|
||||||
$invitation->email = $email;
|
$invitation->email = $email;
|
||||||
|
|||||||
@@ -23,8 +23,6 @@ use App\Models\User;
|
|||||||
use Illuminate\Database\Eloquent\Builder;
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use InvalidArgumentException;
|
use InvalidArgumentException;
|
||||||
use Laravel\Jetstream\Events\AddingTeamMember;
|
|
||||||
use Laravel\Jetstream\Events\TeamMemberAdded;
|
|
||||||
|
|
||||||
class MemberService
|
class MemberService
|
||||||
{
|
{
|
||||||
@@ -39,7 +37,6 @@ class MemberService
|
|||||||
{
|
{
|
||||||
if (! $asSuperAdmin) {
|
if (! $asSuperAdmin) {
|
||||||
MemberAdding::dispatch($user, $organization, $role);
|
MemberAdding::dispatch($user, $organization, $role);
|
||||||
AddingTeamMember::dispatch($organization, $user); // Legacy event
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$member = new Member;
|
$member = new Member;
|
||||||
@@ -56,7 +53,6 @@ class MemberService
|
|||||||
|
|
||||||
if (! $asSuperAdmin) {
|
if (! $asSuperAdmin) {
|
||||||
MemberAdded::dispatch($member, $organization, $user);
|
MemberAdded::dispatch($member, $organization, $user);
|
||||||
TeamMemberAdded::dispatch($organization, $user); // Legacy event
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $member;
|
return $member;
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ class TimeEntryFilter
|
|||||||
if ($start === null) {
|
if ($start === null) {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
$this->builder->where('start', '>', $start);
|
$this->builder->where('start', '>=', $start);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ class UserService
|
|||||||
$intervalFormat,
|
$intervalFormat,
|
||||||
$timeFormat,
|
$timeFormat,
|
||||||
);
|
);
|
||||||
|
$this->switchCurrentOrganization($user, $organization);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $user;
|
return $user;
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"korridor/laravel-computed-attributes": "^3.1",
|
"korridor/laravel-computed-attributes": "^3.1",
|
||||||
"korridor/laravel-has-many-sync": "^3.1",
|
"korridor/laravel-has-many-sync": "^3.1",
|
||||||
"korridor/laravel-model-validation-rules": "^3.0",
|
"korridor/laravel-model-validation-rules": "^3.0",
|
||||||
|
"laravel/fortify": "^1.37",
|
||||||
"laravel/framework": "^12.19.3",
|
"laravel/framework": "^12.19.3",
|
||||||
"laravel/jetstream": "^5.0",
|
|
||||||
"laravel/octane": "^2.3",
|
"laravel/octane": "^2.3",
|
||||||
"laravel/passport": "^13.0.5",
|
"laravel/passport": "^13.0.5",
|
||||||
"laravel/tinker": "^2.8",
|
"laravel/tinker": "^2.8",
|
||||||
@@ -27,6 +27,7 @@
|
|||||||
"league/flysystem-aws-s3-v3": "^3.0",
|
"league/flysystem-aws-s3-v3": "^3.0",
|
||||||
"league/iso3166": "^4.3",
|
"league/iso3166": "^4.3",
|
||||||
"maatwebsite/excel": "^3.1",
|
"maatwebsite/excel": "^3.1",
|
||||||
|
"mobiledetect/mobiledetectlib": "^4.11",
|
||||||
"novadaemon/filament-pretty-json": "^2.2",
|
"novadaemon/filament-pretty-json": "^2.2",
|
||||||
"nwidart/laravel-modules": "^12.0.4",
|
"nwidart/laravel-modules": "^12.0.4",
|
||||||
"owen-it/laravel-auditing": "^14.0.0",
|
"owen-it/laravel-auditing": "^14.0.0",
|
||||||
@@ -131,7 +132,8 @@
|
|||||||
"pestphp/pest-plugin": true,
|
"pestphp/pest-plugin": true,
|
||||||
"php-http/discovery": true,
|
"php-http/discovery": true,
|
||||||
"wikimedia/composer-merge-plugin": true
|
"wikimedia/composer-merge-plugin": true
|
||||||
}
|
},
|
||||||
|
"process-timeout": 900
|
||||||
},
|
},
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"prefer-stable": true
|
"prefer-stable": true
|
||||||
|
|||||||
92
composer.lock
generated
92
composer.lock
generated
@@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "4c728f01d2beb426b2d157143618fdae",
|
"content-hash": "897ca7bc13f827db641f7affa54a8523",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "anourvalar/eloquent-serialize",
|
"name": "anourvalar/eloquent-serialize",
|
||||||
@@ -4413,72 +4413,6 @@
|
|||||||
},
|
},
|
||||||
"time": "2026-05-20T11:48:19+00:00"
|
"time": "2026-05-20T11:48:19+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "laravel/jetstream",
|
|
||||||
"version": "v5.5.3",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/laravel/jetstream.git",
|
|
||||||
"reference": "61cac5cde455311890f6981fb2da47acd298e4e2"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/laravel/jetstream/zipball/61cac5cde455311890f6981fb2da47acd298e4e2",
|
|
||||||
"reference": "61cac5cde455311890f6981fb2da47acd298e4e2",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-json": "*",
|
|
||||||
"illuminate/console": "^11.0|^12.0|^13.0",
|
|
||||||
"illuminate/support": "^11.0|^12.0|^13.0",
|
|
||||||
"laravel/fortify": "^1.20",
|
|
||||||
"mobiledetect/mobiledetectlib": "^4.8.08",
|
|
||||||
"php": "^8.2.0",
|
|
||||||
"symfony/console": "^7.0|^8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"inertiajs/inertia-laravel": "^2.0",
|
|
||||||
"laravel/sanctum": "^4.0",
|
|
||||||
"livewire/livewire": "^3.3",
|
|
||||||
"mockery/mockery": "^1.0",
|
|
||||||
"orchestra/testbench": "^9.15|^10.8|^11.0",
|
|
||||||
"phpstan/phpstan": "^1.10"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"laravel": {
|
|
||||||
"providers": [
|
|
||||||
"Laravel\\Jetstream\\JetstreamServiceProvider"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Laravel\\Jetstream\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Taylor Otwell",
|
|
||||||
"email": "taylor@laravel.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Tailwind scaffolding for the Laravel framework.",
|
|
||||||
"keywords": [
|
|
||||||
"auth",
|
|
||||||
"laravel",
|
|
||||||
"tailwind"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/laravel/jetstream/issues",
|
|
||||||
"source": "https://github.com/laravel/jetstream"
|
|
||||||
},
|
|
||||||
"time": "2026-05-19T01:30:03+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "laravel/octane",
|
"name": "laravel/octane",
|
||||||
"version": "v2.17.4",
|
"version": "v2.17.4",
|
||||||
@@ -6445,16 +6379,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mobiledetect/mobiledetectlib",
|
"name": "mobiledetect/mobiledetectlib",
|
||||||
"version": "4.10.0",
|
"version": "4.11.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/serbanghita/Mobile-Detect.git",
|
"url": "https://github.com/serbanghita/Mobile-Detect.git",
|
||||||
"reference": "1473bd9d6aa40158f75f1e05116e6dd081148b2c"
|
"reference": "ab39168b7556f44c11c80be1222b44b239f5c2e4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/1473bd9d6aa40158f75f1e05116e6dd081148b2c",
|
"url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/ab39168b7556f44c11c80be1222b44b239f5c2e4",
|
||||||
"reference": "1473bd9d6aa40158f75f1e05116e6dd081148b2c",
|
"reference": "ab39168b7556f44c11c80be1222b44b239f5c2e4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -6497,7 +6431,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/serbanghita/Mobile-Detect/issues",
|
"issues": "https://github.com/serbanghita/Mobile-Detect/issues",
|
||||||
"source": "https://github.com/serbanghita/Mobile-Detect/tree/4.10.0"
|
"source": "https://github.com/serbanghita/Mobile-Detect/tree/4.11.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -6505,7 +6439,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2026-04-23T13:05:57+00:00"
|
"time": "2026-05-24T12:32:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "monolog/monolog",
|
"name": "monolog/monolog",
|
||||||
@@ -13803,16 +13737,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "web-auth/webauthn-lib",
|
"name": "web-auth/webauthn-lib",
|
||||||
"version": "5.3.3",
|
"version": "5.3.5",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/web-auth/webauthn-lib.git",
|
"url": "https://github.com/web-auth/webauthn-lib.git",
|
||||||
"reference": "e6f656d6c6b29fa305382fe6a0a3be8177d177df"
|
"reference": "9e0986d999f4102e24ac8a598d3a80d98b56c19f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/web-auth/webauthn-lib/zipball/e6f656d6c6b29fa305382fe6a0a3be8177d177df",
|
"url": "https://api.github.com/repos/web-auth/webauthn-lib/zipball/9e0986d999f4102e24ac8a598d3a80d98b56c19f",
|
||||||
"reference": "e6f656d6c6b29fa305382fe6a0a3be8177d177df",
|
"reference": "9e0986d999f4102e24ac8a598d3a80d98b56c19f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -13873,7 +13807,7 @@
|
|||||||
"webauthn"
|
"webauthn"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/web-auth/webauthn-lib/tree/5.3.3"
|
"source": "https://github.com/web-auth/webauthn-lib/tree/5.3.5"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -13885,7 +13819,7 @@
|
|||||||
"type": "patreon"
|
"type": "patreon"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2026-05-17T19:04:30+00:00"
|
"time": "2026-05-31T15:00:08+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webmozart/assert",
|
"name": "webmozart/assert",
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ use App\Providers\AuthServiceProvider;
|
|||||||
use App\Providers\EventServiceProvider;
|
use App\Providers\EventServiceProvider;
|
||||||
use App\Providers\Filament\AdminPanelProvider;
|
use App\Providers\Filament\AdminPanelProvider;
|
||||||
use App\Providers\FortifyServiceProvider;
|
use App\Providers\FortifyServiceProvider;
|
||||||
use App\Providers\JetstreamServiceProvider;
|
|
||||||
use App\Providers\RouteServiceProvider;
|
use App\Providers\RouteServiceProvider;
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
@@ -82,6 +81,8 @@ return [
|
|||||||
|
|
||||||
'enable_registration' => (bool) env('APP_ENABLE_REGISTRATION', false),
|
'enable_registration' => (bool) env('APP_ENABLE_REGISTRATION', false),
|
||||||
|
|
||||||
|
'local_email_verification' => (bool) env('APP_LOCAL_EMAIL_VERIFICATION', false),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Application Timezone
|
| Application Timezone
|
||||||
@@ -203,7 +204,6 @@ return [
|
|||||||
AdminPanelProvider::class,
|
AdminPanelProvider::class,
|
||||||
RouteServiceProvider::class,
|
RouteServiceProvider::class,
|
||||||
FortifyServiceProvider::class,
|
FortifyServiceProvider::class,
|
||||||
JetstreamServiceProvider::class,
|
|
||||||
// Warning: Do not add TelescopeServiceProvider here since it is already conditionally registered in AppServiceProvider
|
// Warning: Do not add TelescopeServiceProvider here since it is already conditionally registered in AppServiceProvider
|
||||||
LaravelModulesServiceProvider::class,
|
LaravelModulesServiceProvider::class,
|
||||||
])->toArray(),
|
])->toArray(),
|
||||||
|
|||||||
@@ -1,82 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
use Laravel\Jetstream\Features;
|
|
||||||
use Laravel\Jetstream\Http\Middleware\AuthenticateSession;
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Jetstream Stack
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This configuration value informs Jetstream which "stack" you will be
|
|
||||||
| using for your application. In general, this value is set for you
|
|
||||||
| during installation and will not need to be changed after that.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'stack' => 'inertia',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Jetstream Route Middleware
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here you may specify which middleware Jetstream will assign to the routes
|
|
||||||
| that it registers with the application. When necessary, you may modify
|
|
||||||
| these middleware; however, this default value is usually sufficient.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'middleware' => ['web'],
|
|
||||||
|
|
||||||
'auth_session' => AuthenticateSession::class,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Jetstream Guard
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here you may specify the authentication guard Jetstream will use while
|
|
||||||
| authenticating users. This value should correspond with one of your
|
|
||||||
| guards that is already present in your "auth" configuration file.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'guard' => 'web',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Features
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Some of Jetstream's features are optional. You may disable the features
|
|
||||||
| by removing them from this array. You're free to only remove some of
|
|
||||||
| these features or you can even remove all of these if you need to.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'features' => [
|
|
||||||
Features::termsAndPrivacyPolicy(),
|
|
||||||
Features::profilePhotos(),
|
|
||||||
Features::teams(['invitations' => true]),
|
|
||||||
Features::accountDeletion(),
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Profile Photo Disk
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This configuration value determines the default disk that will be used
|
|
||||||
| when storing profile photos for your application's users. Typically
|
|
||||||
| this will be the "public" disk but you may adjust this if needed.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'profile_photo_disk' => env('PROFILE_PHOTO_DISK', env('PUBLIC_FILESYSTEM_DISK', 'public')),
|
|
||||||
|
|
||||||
];
|
|
||||||
@@ -94,7 +94,7 @@ class UserFactory extends Factory
|
|||||||
$profilePhoto = $this->faker->image(null, 500, 500);
|
$profilePhoto = $this->faker->image(null, 500, 500);
|
||||||
/** @see FileHelpers::hashName */
|
/** @see FileHelpers::hashName */
|
||||||
$path = 'profile-photos/'.Str::random(40).'.png';
|
$path = 'profile-photos/'.Str::random(40).'.png';
|
||||||
Storage::disk(config('jetstream.profile_photo_disk', 'public'))->put($path, $profilePhoto);
|
Storage::disk(config('filesystems.public'))->put($path, $profilePhoto);
|
||||||
|
|
||||||
return $this->state(function (array $attributes) use ($path): array {
|
return $this->state(function (array $attributes) use ($path): array {
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ services:
|
|||||||
- sail
|
- sail
|
||||||
- reverse-proxy
|
- reverse-proxy
|
||||||
playwright:
|
playwright:
|
||||||
image: mcr.microsoft.com/playwright:v1.58.1-jammy
|
image: mcr.microsoft.com/playwright:v1.60.0-jammy
|
||||||
command: ['npx', 'playwright', 'test', '--ui-port=8080', '--ui-host=0.0.0.0']
|
command: ['npx', 'playwright', 'test', '--ui-port=8080', '--ui-host=0.0.0.0']
|
||||||
working_dir: /src
|
working_dir: /src
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
createRunningTimeEntryWithStartViaApi,
|
createRunningTimeEntryWithStartViaApi,
|
||||||
createTaskViaApi,
|
createTaskViaApi,
|
||||||
createProjectWithClientViaApi,
|
createProjectWithClientViaApi,
|
||||||
updateUserProfileViaWeb,
|
updateUserProfileViaApi,
|
||||||
updateOrganizationSettingViaApi,
|
updateOrganizationSettingViaApi,
|
||||||
} from './utils/api';
|
} from './utils/api';
|
||||||
|
|
||||||
@@ -1803,28 +1803,22 @@ test.describe('Click-Drag Selection to Create', () => {
|
|||||||
// =============================================
|
// =============================================
|
||||||
|
|
||||||
test.describe('Timezone & Localization', () => {
|
test.describe('Timezone & Localization', () => {
|
||||||
test('week start day: monday shows Mon as first column', async ({ page }) => {
|
test('week start day: monday shows Mon as first column', async ({ page, ctx }) => {
|
||||||
// Navigate to calendar first to load Inertia page props
|
await updateUserProfileViaApi(ctx, { week_start: 'monday' });
|
||||||
await goToCalendar(page);
|
await goToCalendar(page);
|
||||||
await updateUserProfileViaWeb(page, { week_start: 'monday' });
|
|
||||||
await page.reload();
|
|
||||||
await expect(page.locator('.fc')).toBeVisible();
|
await expect(page.locator('.fc')).toBeVisible();
|
||||||
|
|
||||||
const firstHeader = page.locator('.fc-col-header-cell').first();
|
const firstHeader = page.locator('.fc-col-header-cell').first();
|
||||||
await expect(firstHeader).toContainText('Mon');
|
await expect(firstHeader).toContainText('Mon');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('week start day: sunday shows Sun as first column', async ({ page }) => {
|
test('week start day: sunday shows Sun as first column', async ({ page, ctx }) => {
|
||||||
|
await updateUserProfileViaApi(ctx, { week_start: 'sunday' });
|
||||||
await goToCalendar(page);
|
await goToCalendar(page);
|
||||||
await updateUserProfileViaWeb(page, { week_start: 'sunday' });
|
|
||||||
await page.reload();
|
|
||||||
await expect(page.locator('.fc')).toBeVisible();
|
await expect(page.locator('.fc')).toBeVisible();
|
||||||
|
|
||||||
const firstHeader = page.locator('.fc-col-header-cell').first();
|
const firstHeader = page.locator('.fc-col-header-cell').first();
|
||||||
await expect(firstHeader).toContainText('Sun');
|
await expect(firstHeader).toContainText('Sun');
|
||||||
|
|
||||||
// Reset to monday for other tests
|
|
||||||
await updateUserProfileViaWeb(page, { week_start: 'monday' });
|
|
||||||
});
|
});
|
||||||
|
|
||||||
test('12-hour time format shows AM/PM on slot labels', async ({ page, ctx }) => {
|
test('12-hour time format shows AM/PM on slot labels', async ({ page, ctx }) => {
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ test.describe('Command Palette', () => {
|
|||||||
const newOrgName = 'TestOrg' + Math.floor(Math.random() * 10000);
|
const newOrgName = 'TestOrg' + Math.floor(Math.random() * 10000);
|
||||||
|
|
||||||
// Create a new organization
|
// Create a new organization
|
||||||
await page.goto(PLAYWRIGHT_BASE_URL + '/teams/create');
|
await page.goto(PLAYWRIGHT_BASE_URL + '/organizations/create');
|
||||||
await page.getByLabel('Organization Name').fill(newOrgName);
|
await page.getByLabel('Organization Name').fill(newOrgName);
|
||||||
await page.getByRole('button', { name: 'Create' }).click();
|
await page.getByRole('button', { name: 'Create' }).click();
|
||||||
|
|
||||||
@@ -393,7 +393,7 @@ test.describe('Command Palette', () => {
|
|||||||
const newOrgName = 'GroupTestOrg' + Math.floor(Math.random() * 10000);
|
const newOrgName = 'GroupTestOrg' + Math.floor(Math.random() * 10000);
|
||||||
|
|
||||||
// Create a new organization to ensure we have multiple
|
// Create a new organization to ensure we have multiple
|
||||||
await page.goto(PLAYWRIGHT_BASE_URL + '/teams/create');
|
await page.goto(PLAYWRIGHT_BASE_URL + '/organizations/create');
|
||||||
await page.getByLabel('Organization Name').fill(newOrgName);
|
await page.getByLabel('Organization Name').fill(newOrgName);
|
||||||
await page.getByRole('button', { name: 'Create' }).click();
|
await page.getByRole('button', { name: 'Create' }).click();
|
||||||
await expect(page.getByTestId('dashboard_view')).toBeVisible({ timeout: 10000 });
|
await expect(page.getByTestId('dashboard_view')).toBeVisible({ timeout: 10000 });
|
||||||
|
|||||||
@@ -907,7 +907,7 @@ test.describe('Employee Sidebar Navigation', () => {
|
|||||||
|
|
||||||
// Visible links
|
// Visible links
|
||||||
await expect(employee.page.getByRole('link', { name: 'Dashboard' })).toBeVisible();
|
await expect(employee.page.getByRole('link', { name: 'Dashboard' })).toBeVisible();
|
||||||
await expect(employee.page.getByRole('link', { name: 'Time' })).toBeVisible();
|
await expect(employee.page.getByRole('link', { name: 'Time', exact: true })).toBeVisible();
|
||||||
await expect(employee.page.getByRole('link', { name: 'Calendar' })).toBeVisible();
|
await expect(employee.page.getByRole('link', { name: 'Calendar' })).toBeVisible();
|
||||||
await expect(employee.page.getByRole('link', { name: 'Projects' })).toBeVisible();
|
await expect(employee.page.getByRole('link', { name: 'Projects' })).toBeVisible();
|
||||||
await expect(employee.page.getByRole('link', { name: 'Clients' })).toBeVisible();
|
await expect(employee.page.getByRole('link', { name: 'Clients' })).toBeVisible();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { expect, test } from '../playwright/fixtures';
|
import { expect, test } from '../playwright/fixtures';
|
||||||
import { PLAYWRIGHT_BASE_URL } from '../playwright/config';
|
import { PLAYWRIGHT_BASE_URL, TEST_USER_PASSWORD } from '../playwright/config';
|
||||||
|
|
||||||
async function goToOrganizationSettings(page) {
|
async function goToOrganizationSettings(page) {
|
||||||
await page.goto(PLAYWRIGHT_BASE_URL + '/dashboard');
|
await page.goto(PLAYWRIGHT_BASE_URL + '/dashboard');
|
||||||
@@ -36,13 +36,52 @@ async function createTimeEntry(page, duration: string) {
|
|||||||
test('test that organization name can be updated', async ({ page }) => {
|
test('test that organization name can be updated', async ({ page }) => {
|
||||||
await goToOrganizationSettings(page);
|
await goToOrganizationSettings(page);
|
||||||
await page.getByLabel('Organization Name').fill('NEW ORG NAME');
|
await page.getByLabel('Organization Name').fill('NEW ORG NAME');
|
||||||
await page.getByLabel('Organization Name').press('Enter');
|
await Promise.all([
|
||||||
await page.getByLabel('Organization Name').press('Meta+r');
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/v1/organizations/') &&
|
||||||
|
response.request().method() === 'PUT' &&
|
||||||
|
response.status() === 200
|
||||||
|
),
|
||||||
|
page
|
||||||
|
.locator('form')
|
||||||
|
.filter({ hasText: 'Organization Name' })
|
||||||
|
.getByRole('button', { name: 'Save' })
|
||||||
|
.click(),
|
||||||
|
]);
|
||||||
|
await page.reload();
|
||||||
await expect(page.locator('[data-testid="organization_switcher"]:visible')).toContainText(
|
await expect(page.locator('[data-testid="organization_switcher"]:visible')).toContainText(
|
||||||
'NEW ORG NAME'
|
'NEW ORG NAME'
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('test that organization currency can be updated', async ({ page }) => {
|
||||||
|
await goToOrganizationSettings(page);
|
||||||
|
await page.getByLabel('Currency', { exact: true }).selectOption('USD');
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForRequest(
|
||||||
|
(request) =>
|
||||||
|
request.url().includes('/api/v1/organizations/') &&
|
||||||
|
request.method() === 'PUT' &&
|
||||||
|
request.postDataJSON().currency === 'USD'
|
||||||
|
),
|
||||||
|
page.waitForResponse(
|
||||||
|
async (response) =>
|
||||||
|
response.url().includes('/api/v1/organizations/') &&
|
||||||
|
response.request().method() === 'PUT' &&
|
||||||
|
response.status() === 200 &&
|
||||||
|
(await response.json()).data.currency === 'USD'
|
||||||
|
),
|
||||||
|
page
|
||||||
|
.locator('form')
|
||||||
|
.filter({ hasText: 'Organization Name' })
|
||||||
|
.getByRole('button', { name: 'Save' })
|
||||||
|
.click(),
|
||||||
|
]);
|
||||||
|
await page.reload();
|
||||||
|
await expect(page.getByLabel('Currency', { exact: true })).toHaveValue('USD');
|
||||||
|
});
|
||||||
|
|
||||||
test('test that organization billable rate can be updated with all existing time entries', async ({
|
test('test that organization billable rate can be updated with all existing time entries', async ({
|
||||||
page,
|
page,
|
||||||
}) => {
|
}) => {
|
||||||
@@ -369,13 +408,153 @@ test('test that format settings persist after page reload', async ({ page }) =>
|
|||||||
await expect(page.getByLabel('Date Format')).toContainText('DD/MM/YYYY');
|
await expect(page.getByLabel('Date Format')).toContainText('DD/MM/YYYY');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// =============================================
|
||||||
|
// Create, Delete & Switch
|
||||||
|
// =============================================
|
||||||
|
|
||||||
|
test.describe('Organization Create, Delete & Switch', () => {
|
||||||
|
async function createOrganization(page, name: string) {
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/organizations/create');
|
||||||
|
await page.getByLabel('Organization Name').fill(name);
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/v1/organizations') &&
|
||||||
|
response.request().method() === 'POST' &&
|
||||||
|
response.status() === 201
|
||||||
|
),
|
||||||
|
page.getByRole('button', { name: 'Create' }).click(),
|
||||||
|
]);
|
||||||
|
// The backend switches the current organization to the new one and the
|
||||||
|
// frontend reloads into its dashboard.
|
||||||
|
await expect(page.getByTestId('dashboard_view')).toBeVisible({ timeout: 10000 });
|
||||||
|
}
|
||||||
|
|
||||||
|
test('can create a new organization and switches to it automatically', async ({ page }) => {
|
||||||
|
const newOrgName = 'CreateOrg' + Math.floor(Math.random() * 100000);
|
||||||
|
await createOrganization(page, newOrgName);
|
||||||
|
|
||||||
|
await expect(page.locator('[data-testid="organization_switcher"]:visible')).toContainText(
|
||||||
|
newOrgName
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('does not create an organization when the name is empty', async ({ page }) => {
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/organizations/create');
|
||||||
|
|
||||||
|
// The form posts to the API, which rejects the empty name with a 422.
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/v1/organizations') &&
|
||||||
|
response.request().method() === 'POST' &&
|
||||||
|
response.status() === 422
|
||||||
|
),
|
||||||
|
page.getByRole('button', { name: 'Create' }).click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Validation failed, so we stay on the create form and never reach a
|
||||||
|
// dashboard. Assert on the form rather than the URL.
|
||||||
|
await expect(page.getByText('Organization Details')).toBeVisible();
|
||||||
|
await expect(page.getByRole('alert')).toContainText('The name field is required.');
|
||||||
|
await expect(page.getByLabel('Organization Name')).toHaveAttribute('aria-invalid', 'true');
|
||||||
|
await expect(page.getByTestId('dashboard_view')).toHaveCount(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('can delete an organization', async ({ page }) => {
|
||||||
|
// Create a throwaway organization so the primary one is never deleted.
|
||||||
|
const orgName = 'DeleteOrg' + Math.floor(Math.random() * 100000);
|
||||||
|
await createOrganization(page, orgName);
|
||||||
|
|
||||||
|
// Open the (now current) throwaway organization's settings.
|
||||||
|
await goToOrganizationSettings(page);
|
||||||
|
|
||||||
|
// Open the confirmation modal, then confirm inside the dialog.
|
||||||
|
await page.getByRole('button', { name: 'Delete Organization' }).click();
|
||||||
|
await page.getByRole('dialog').getByPlaceholder('Password').fill(TEST_USER_PASSWORD);
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/v1/organizations') &&
|
||||||
|
response.request().method() === 'DELETE' &&
|
||||||
|
response.status() === 204
|
||||||
|
),
|
||||||
|
page.getByRole('dialog').getByRole('button', { name: 'Delete Organization' }).click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// We are redirected to the dashboard of a different organization.
|
||||||
|
await expect(page.getByTestId('dashboard_view')).toBeVisible({ timeout: 10000 });
|
||||||
|
await expect(
|
||||||
|
page.locator('[data-testid="organization_switcher"]:visible')
|
||||||
|
).not.toContainText(orgName);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('delete organization shows an error when the password is wrong', async ({ page }) => {
|
||||||
|
const orgName = 'DeleteOrgWrongPassword' + Math.floor(Math.random() * 100000);
|
||||||
|
await createOrganization(page, orgName);
|
||||||
|
await goToOrganizationSettings(page);
|
||||||
|
|
||||||
|
await page.getByRole('button', { name: 'Delete Organization' }).click();
|
||||||
|
const dialog = page.getByRole('dialog');
|
||||||
|
await dialog.getByPlaceholder('Password').fill('not-the-real-password');
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/v1/organizations') &&
|
||||||
|
response.request().method() === 'DELETE' &&
|
||||||
|
response.status() === 422
|
||||||
|
),
|
||||||
|
dialog.getByRole('button', { name: 'Delete Organization' }).click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
await expect(dialog.getByRole('alert')).toBeVisible();
|
||||||
|
await expect(dialog).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('can switch the current organization via the organization switcher', async ({ page }) => {
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/dashboard');
|
||||||
|
const orgSwitcher = page.locator('[data-testid="organization_switcher"]:visible');
|
||||||
|
await expect(orgSwitcher).toBeVisible();
|
||||||
|
const previousOrgNameLines = (await orgSwitcher.innerText())
|
||||||
|
.split('\n')
|
||||||
|
.map((line) => line.trim())
|
||||||
|
.filter(Boolean);
|
||||||
|
const previousOrgName = previousOrgNameLines[previousOrgNameLines.length - 1];
|
||||||
|
|
||||||
|
// Ensure there are at least two organizations to switch between.
|
||||||
|
const orgName = 'SwitchOrg' + Math.floor(Math.random() * 100000);
|
||||||
|
await createOrganization(page, orgName);
|
||||||
|
|
||||||
|
await expect(orgSwitcher).toContainText(orgName);
|
||||||
|
|
||||||
|
// Open the switcher and pick a different organization.
|
||||||
|
await orgSwitcher.click();
|
||||||
|
await expect(page.getByText('Switch Organizations')).toBeVisible();
|
||||||
|
const otherOrgButton = page.getByRole('menuitem', { name: previousOrgName });
|
||||||
|
await expect(otherOrgButton).toBeVisible();
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/users/me/current-organization') &&
|
||||||
|
response.request().method() === 'PUT' &&
|
||||||
|
response.status() === 200
|
||||||
|
),
|
||||||
|
otherOrgButton.click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
await expect(orgSwitcher).not.toContainText(orgName, { timeout: 10000 });
|
||||||
|
await expect(orgSwitcher).toContainText(previousOrgName, { timeout: 10000 });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// =============================================
|
// =============================================
|
||||||
// Admin Permission Tests
|
// Admin Permission Tests
|
||||||
// =============================================
|
// =============================================
|
||||||
|
|
||||||
test.describe('Admin Organization Settings Access', () => {
|
test.describe('Admin Organization Settings Access', () => {
|
||||||
test('admin can see and edit organization settings', async ({ ctx, admin }) => {
|
test('admin can see and edit organization settings', async ({ ctx, admin }) => {
|
||||||
await admin.page.goto(PLAYWRIGHT_BASE_URL + '/teams/' + ctx.orgId);
|
await admin.page.goto(PLAYWRIGHT_BASE_URL + '/organizations/' + ctx.orgId);
|
||||||
|
|
||||||
// Organization Name section is visible
|
// Organization Name section is visible
|
||||||
await expect(
|
await expect(
|
||||||
@@ -396,6 +575,9 @@ test.describe('Admin Organization Settings Access', () => {
|
|||||||
// Save buttons should be visible (admin can update)
|
// Save buttons should be visible (admin can update)
|
||||||
await expect(admin.page.getByRole('button', { name: 'Save' }).first()).toBeVisible();
|
await expect(admin.page.getByRole('button', { name: 'Save' }).first()).toBeVisible();
|
||||||
|
|
||||||
|
// The Organization Name input is editable (admin can update)
|
||||||
|
await expect(admin.page.getByLabel('Organization Name')).toBeEnabled();
|
||||||
|
|
||||||
// Delete organization should NOT be visible (owner only)
|
// Delete organization should NOT be visible (owner only)
|
||||||
await expect(
|
await expect(
|
||||||
admin.page.getByRole('heading', { name: 'Delete Organization' })
|
admin.page.getByRole('heading', { name: 'Delete Organization' })
|
||||||
@@ -409,13 +591,17 @@ test.describe('Admin Organization Settings Access', () => {
|
|||||||
|
|
||||||
test.describe('Employee Organization Settings Restrictions', () => {
|
test.describe('Employee Organization Settings Restrictions', () => {
|
||||||
test('employee can see org name but not editable settings', async ({ ctx, employee }) => {
|
test('employee can see org name but not editable settings', async ({ ctx, employee }) => {
|
||||||
await employee.page.goto(PLAYWRIGHT_BASE_URL + '/teams/' + ctx.orgId);
|
await employee.page.goto(PLAYWRIGHT_BASE_URL + '/organizations/' + ctx.orgId);
|
||||||
|
|
||||||
// Organization Name section is visible (but inputs are disabled)
|
// Organization Name section is visible (but inputs are disabled)
|
||||||
await expect(
|
await expect(
|
||||||
employee.page.getByRole('heading', { name: 'Organization Name', level: 3 })
|
employee.page.getByRole('heading', { name: 'Organization Name', level: 3 })
|
||||||
).toBeVisible({ timeout: 10000 });
|
).toBeVisible({ timeout: 10000 });
|
||||||
|
|
||||||
|
// The name and currency inputs are rendered but disabled (employee cannot update)
|
||||||
|
await expect(employee.page.getByLabel('Organization Name')).toBeDisabled();
|
||||||
|
await expect(employee.page.getByLabel('Currency')).toBeDisabled();
|
||||||
|
|
||||||
// Editable settings sections should NOT be visible
|
// Editable settings sections should NOT be visible
|
||||||
await expect(
|
await expect(
|
||||||
employee.page.getByRole('heading', { name: 'Billable Rate', level: 3 })
|
employee.page.getByRole('heading', { name: 'Billable Rate', level: 3 })
|
||||||
@@ -429,5 +615,10 @@ test.describe('Employee Organization Settings Restrictions', () => {
|
|||||||
|
|
||||||
// Save button should not be visible (employee cannot update)
|
// Save button should not be visible (employee cannot update)
|
||||||
await expect(employee.page.getByRole('button', { name: 'Save' })).not.toBeVisible();
|
await expect(employee.page.getByRole('button', { name: 'Save' })).not.toBeVisible();
|
||||||
|
|
||||||
|
// Delete organization should NOT be visible (owner only)
|
||||||
|
await expect(
|
||||||
|
employee.page.getByRole('heading', { name: 'Delete Organization' })
|
||||||
|
).not.toBeVisible();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -342,8 +342,8 @@ test('delete account shows an error when the password is wrong', async ({ page }
|
|||||||
await Promise.all([
|
await Promise.all([
|
||||||
page.waitForResponse(
|
page.waitForResponse(
|
||||||
(response) =>
|
(response) =>
|
||||||
response.url().includes('/user/confirm-password') &&
|
response.url().includes('/api/v1/users/') &&
|
||||||
response.request().method() === 'POST' &&
|
response.request().method() === 'DELETE' &&
|
||||||
response.status() === 422
|
response.status() === 422
|
||||||
),
|
),
|
||||||
dialog.getByRole('button', { name: 'Delete Account' }).click(),
|
dialog.getByRole('button', { name: 'Delete Account' }).click(),
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import { formatCentsWithOrganizationDefaults } from './utils/money';
|
|||||||
import {
|
import {
|
||||||
createProjectViaApi,
|
createProjectViaApi,
|
||||||
createPublicProjectViaApi,
|
createPublicProjectViaApi,
|
||||||
|
createProjectMemberViaApi,
|
||||||
createTaskViaApi,
|
createTaskViaApi,
|
||||||
createClientViaApi,
|
createClientViaApi,
|
||||||
createTimeEntryViaApi,
|
createTimeEntryViaApi,
|
||||||
@@ -217,6 +218,59 @@ test('test that creating a non-billable project works', async ({ page }) => {
|
|||||||
await expect(page.getByTestId('project_table')).toContainText(newProjectName);
|
await expect(page.getByTestId('project_table')).toContainText(newProjectName);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('test that creating a public project via the modal works', async ({ page }) => {
|
||||||
|
const newProjectName = 'Public Project ' + Math.floor(1 + Math.random() * 10000);
|
||||||
|
await goToProjectsOverview(page);
|
||||||
|
await page.getByRole('button', { name: 'Create Project' }).click();
|
||||||
|
await page.getByLabel('Project Name').fill(newProjectName);
|
||||||
|
|
||||||
|
// Visibility defaults to Private — switch it to Public
|
||||||
|
await expect(page.getByRole('dialog').locator('#visibility')).toContainText('Private');
|
||||||
|
await page.getByRole('dialog').locator('#visibility').click();
|
||||||
|
await page.getByRole('option', { name: 'Public' }).click();
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.getByRole('button', { name: 'Create Project' }).click(),
|
||||||
|
page.waitForResponse(
|
||||||
|
async (response) =>
|
||||||
|
response.url().includes('/projects') &&
|
||||||
|
response.request().method() === 'POST' &&
|
||||||
|
response.status() === 201 &&
|
||||||
|
(await response.json()).data.is_public === true
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
|
||||||
|
await expect(page.getByTestId('project_table')).toContainText(newProjectName);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that changing a project to public via the edit modal works', async ({ page, ctx }) => {
|
||||||
|
const newProjectName = 'Edit Visibility Project ' + Math.floor(1 + Math.random() * 10000);
|
||||||
|
await createProjectViaApi(ctx, { name: newProjectName });
|
||||||
|
|
||||||
|
await goToProjectsOverview(page);
|
||||||
|
await expect(page.getByText(newProjectName)).toBeVisible({ timeout: 10000 });
|
||||||
|
|
||||||
|
const projectRow = page.getByRole('row').filter({ hasText: newProjectName }).first();
|
||||||
|
await projectRow.getByRole('button').click();
|
||||||
|
await page.locator(`[aria-label='Edit Project ${newProjectName}']`).click();
|
||||||
|
|
||||||
|
// Loaded as Private — switch it to Public
|
||||||
|
await expect(page.getByRole('dialog').locator('#visibility')).toContainText('Private');
|
||||||
|
await page.getByRole('dialog').locator('#visibility').click();
|
||||||
|
await page.getByRole('option', { name: 'Public' }).click();
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.getByRole('button', { name: 'Update Project' }).click(),
|
||||||
|
page.waitForResponse(
|
||||||
|
async (response) =>
|
||||||
|
response.url().includes('/projects/') &&
|
||||||
|
response.request().method() === 'PUT' &&
|
||||||
|
response.status() === 200 &&
|
||||||
|
(await response.json()).data.is_public === true
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
test('test that switching from custom rate to default rate clears billable rate', async ({
|
test('test that switching from custom rate to default rate clears billable rate', async ({
|
||||||
page,
|
page,
|
||||||
ctx,
|
ctx,
|
||||||
@@ -640,7 +694,7 @@ test('test that creating a project with estimated time in human-readable format
|
|||||||
await page.getByLabel('Project Name').fill(newProjectName);
|
await page.getByLabel('Project Name').fill(newProjectName);
|
||||||
|
|
||||||
// Fill in estimated time using human-readable format
|
// Fill in estimated time using human-readable format
|
||||||
const estimatedTimeInput = page.getByPlaceholder('e.g. 2h 30m or 1.5');
|
const estimatedTimeInput = page.getByLabel('Time Estimated');
|
||||||
await estimatedTimeInput.fill('2h 30m');
|
await estimatedTimeInput.fill('2h 30m');
|
||||||
await estimatedTimeInput.press('Tab');
|
await estimatedTimeInput.press('Tab');
|
||||||
|
|
||||||
@@ -668,7 +722,7 @@ test('test that creating a project with estimated time using decimal notation wo
|
|||||||
await page.getByLabel('Project Name').fill(newProjectName);
|
await page.getByLabel('Project Name').fill(newProjectName);
|
||||||
|
|
||||||
// Fill in estimated time using decimal notation (1.5 hours = 1h 30m)
|
// Fill in estimated time using decimal notation (1.5 hours = 1h 30m)
|
||||||
const estimatedTimeInput = page.getByPlaceholder('e.g. 2h 30m or 1.5');
|
const estimatedTimeInput = page.getByLabel('Time Estimated');
|
||||||
await estimatedTimeInput.fill('1.5');
|
await estimatedTimeInput.fill('1.5');
|
||||||
await estimatedTimeInput.press('Tab');
|
await estimatedTimeInput.press('Tab');
|
||||||
|
|
||||||
@@ -696,7 +750,7 @@ test('test that creating a project with estimated time using comma decimal notat
|
|||||||
await page.getByLabel('Project Name').fill(newProjectName);
|
await page.getByLabel('Project Name').fill(newProjectName);
|
||||||
|
|
||||||
// Fill in estimated time using comma decimal notation (2,5 hours = 2h 30m)
|
// Fill in estimated time using comma decimal notation (2,5 hours = 2h 30m)
|
||||||
const estimatedTimeInput = page.getByPlaceholder('e.g. 2h 30m or 1.5');
|
const estimatedTimeInput = page.getByLabel('Time Estimated');
|
||||||
await estimatedTimeInput.fill('2,5');
|
await estimatedTimeInput.fill('2,5');
|
||||||
await estimatedTimeInput.press('Tab');
|
await estimatedTimeInput.press('Tab');
|
||||||
|
|
||||||
@@ -727,7 +781,7 @@ test('test that updating estimated time on existing project works', async ({ pag
|
|||||||
await page.getByRole('menuitem').getByText('Edit').first().click();
|
await page.getByRole('menuitem').getByText('Edit').first().click();
|
||||||
|
|
||||||
// Fill in estimated time
|
// Fill in estimated time
|
||||||
const estimatedTimeInput = page.getByPlaceholder('e.g. 2h 30m or 1.5');
|
const estimatedTimeInput = page.getByLabel('Time Estimated');
|
||||||
await estimatedTimeInput.fill('4h 15m');
|
await estimatedTimeInput.fill('4h 15m');
|
||||||
await estimatedTimeInput.press('Tab');
|
await estimatedTimeInput.press('Tab');
|
||||||
|
|
||||||
@@ -748,7 +802,7 @@ test('test that estimated time input displays formatted value after blur', async
|
|||||||
await goToProjectsOverview(page);
|
await goToProjectsOverview(page);
|
||||||
await page.getByRole('button', { name: 'Create Project' }).click();
|
await page.getByRole('button', { name: 'Create Project' }).click();
|
||||||
|
|
||||||
const estimatedTimeInput = page.getByPlaceholder('e.g. 2h 30m or 1.5');
|
const estimatedTimeInput = page.getByLabel('Time Estimated');
|
||||||
|
|
||||||
// Enter time in various formats and check the displayed value
|
// Enter time in various formats and check the displayed value
|
||||||
await estimatedTimeInput.fill('90');
|
await estimatedTimeInput.fill('90');
|
||||||
@@ -925,6 +979,39 @@ test.describe('Employee Projects Restrictions', () => {
|
|||||||
employee.page.locator(`[aria-label='Delete Project ${projectName}']`)
|
employee.page.locator(`[aria-label='Delete Project ${projectName}']`)
|
||||||
).not.toBeVisible();
|
).not.toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('employee does not see private projects they are not a member of', async ({
|
||||||
|
ctx,
|
||||||
|
employee,
|
||||||
|
}) => {
|
||||||
|
const publicName = 'EmpPublicVisible ' + Math.floor(Math.random() * 10000);
|
||||||
|
const privateName = 'EmpPrivateHidden ' + Math.floor(Math.random() * 10000);
|
||||||
|
await createPublicProjectViaApi(ctx, { name: publicName });
|
||||||
|
// createProjectViaApi defaults to is_public: false (private); the employee is not a member
|
||||||
|
await createProjectViaApi(ctx, { name: privateName });
|
||||||
|
|
||||||
|
await employee.page.goto(PLAYWRIGHT_BASE_URL + '/projects');
|
||||||
|
await expect(employee.page.getByTestId('projects_view')).toBeVisible({ timeout: 10000 });
|
||||||
|
|
||||||
|
// The public project is visible — confirms the list has loaded
|
||||||
|
await expect(employee.page.getByText(publicName)).toBeVisible({ timeout: 10000 });
|
||||||
|
|
||||||
|
// The private project the employee is not a member of must not appear
|
||||||
|
await expect(employee.page.getByText(privateName)).not.toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('employee can see a private project they are a member of', async ({ ctx, employee }) => {
|
||||||
|
const projectName = 'EmpPrivateMember ' + Math.floor(Math.random() * 10000);
|
||||||
|
const project = await createProjectViaApi(ctx, { name: projectName });
|
||||||
|
// Add the employee as a project member so the private project becomes visible to them
|
||||||
|
await createProjectMemberViaApi(ctx, project.id, { member_id: employee.memberId });
|
||||||
|
|
||||||
|
await employee.page.goto(PLAYWRIGHT_BASE_URL + '/projects');
|
||||||
|
await expect(employee.page.getByTestId('projects_view')).toBeVisible({ timeout: 10000 });
|
||||||
|
|
||||||
|
// The private project is visible because the employee is a member
|
||||||
|
await expect(employee.page.getByText(projectName)).toBeVisible({ timeout: 10000 });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test.describe('Employee Billable Rate Visibility', () => {
|
test.describe('Employee Billable Rate Visibility', () => {
|
||||||
|
|||||||
437
e2e/timesheet-overlap.spec.ts
Normal file
437
e2e/timesheet-overlap.spec.ts
Normal file
@@ -0,0 +1,437 @@
|
|||||||
|
/**
|
||||||
|
* E2E coverage for the timesheet overlap-prevention logic introduced
|
||||||
|
* in `useTimesheetCellMutations` (Phase 1+2+3 of the overlap fix).
|
||||||
|
*
|
||||||
|
* Each test:
|
||||||
|
* 1. Pre-creates entries via the API to set up a deterministic
|
||||||
|
* day-of-work scenario,
|
||||||
|
* 2. Triggers ONE cell edit through the UI,
|
||||||
|
* 3. Reads the resulting entries back via the API and asserts on
|
||||||
|
* the start/end placement.
|
||||||
|
*
|
||||||
|
* Pre-creating rows (rather than driving the "Add row" + project picker
|
||||||
|
* UI) keeps the tests focused on the placement logic and out of the
|
||||||
|
* project-dropdown's flake surface.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { PLAYWRIGHT_BASE_URL } from '../playwright/config';
|
||||||
|
import { test } from '../playwright/fixtures';
|
||||||
|
import { expect } from '@playwright/test';
|
||||||
|
import type { Page, Request } from '@playwright/test';
|
||||||
|
import {
|
||||||
|
createProjectViaApi,
|
||||||
|
createTimeEntryAtHourViaApi,
|
||||||
|
getTimeEntriesViaApi,
|
||||||
|
} from './utils/api';
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Helpers
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
async function goToTimesheet(page: Page) {
|
||||||
|
await page.addInitScript(() => {
|
||||||
|
window.localStorage.setItem('showReleaseInfo-desktop', 'false');
|
||||||
|
});
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/timesheet');
|
||||||
|
}
|
||||||
|
|
||||||
|
function getMonday(d: Date): Date {
|
||||||
|
const date = new Date(d);
|
||||||
|
const day = date.getUTCDay();
|
||||||
|
const diff = date.getUTCDate() - day + (day === 0 ? -6 : 1);
|
||||||
|
date.setUTCDate(diff);
|
||||||
|
date.setUTCHours(0, 0, 0, 0);
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCurrentWeekMonday(): Date {
|
||||||
|
return getMonday(new Date());
|
||||||
|
}
|
||||||
|
|
||||||
|
async function waitForTimesheetLoad(page: Page) {
|
||||||
|
await expect(page.getByTestId('timesheet_view')).toBeVisible();
|
||||||
|
await expect(page.getByTestId('timesheet_week_display')).toBeVisible();
|
||||||
|
|
||||||
|
const timezoneMismatchModal = page
|
||||||
|
.getByRole('dialog')
|
||||||
|
.filter({ hasText: 'Timezone mismatch detected' });
|
||||||
|
if (await timezoneMismatchModal.isVisible().catch(() => false)) {
|
||||||
|
await timezoneMismatchModal.getByRole('button', { name: 'Cancel' }).click();
|
||||||
|
await expect(timezoneMismatchModal).not.toBeVisible();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const HOUR = 3600;
|
||||||
|
|
||||||
|
function utcHourOf(iso: string): number {
|
||||||
|
return new Date(iso).getUTCHours();
|
||||||
|
}
|
||||||
|
|
||||||
|
function utcMinuteOf(iso: string): number {
|
||||||
|
return new Date(iso).getUTCMinutes();
|
||||||
|
}
|
||||||
|
|
||||||
|
function sortByStart<T extends { start: string }>(entries: T[]): T[] {
|
||||||
|
return [...entries].sort((a, b) => a.start.localeCompare(b.start));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the locator for the row whose project name matches the given
|
||||||
|
* substring. Robust against ordering changes.
|
||||||
|
*/
|
||||||
|
function rowByProject(page: Page, projectName: string) {
|
||||||
|
return page.locator('[data-testid="timesheet_row"]').filter({ hasText: projectName });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the locator for the input in the (row, dayIndex) cell, where
|
||||||
|
* the row is identified by project name.
|
||||||
|
*/
|
||||||
|
function cellInputByProject(page: Page, projectName: string, dayIndex: number) {
|
||||||
|
return rowByProject(page, projectName)
|
||||||
|
.locator('[data-testid="timesheet_cell"]')
|
||||||
|
.nth(dayIndex)
|
||||||
|
.locator('input');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Asserts that no entries in the list overlap each other. */
|
||||||
|
function expectNoOverlaps(entries: Array<{ start: string; end: string | null }>) {
|
||||||
|
const sorted = sortByStart(entries.filter((e) => e.end !== null));
|
||||||
|
for (let i = 1; i < sorted.length; i++) {
|
||||||
|
const prev = sorted[i - 1]!;
|
||||||
|
const curr = sorted[i]!;
|
||||||
|
expect(
|
||||||
|
curr.start >= prev.end!,
|
||||||
|
`entries overlap: ${prev.start}–${prev.end} vs ${curr.start}–${curr.end}`
|
||||||
|
).toBe(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Phase 1: createCell — overlap avoidance when cell is empty
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('extendCell on a row that has no entries on the day yet places after another row (Scenario #4)', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
// Setup: project A has Monday 09:00–10:00, project B has Tuesday
|
||||||
|
// 09:00–10:00. The B row is therefore visible on the timesheet but
|
||||||
|
// has an EMPTY cell on Monday. Typing into B's Monday cell exercises
|
||||||
|
// the createCell path (cell empty → place a new entry).
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const tuesday = new Date(monday);
|
||||||
|
tuesday.setUTCDate(monday.getUTCDate() + 1);
|
||||||
|
|
||||||
|
const projectA = await createProjectViaApi(ctx, { name: 'OverlapAlpha' });
|
||||||
|
const projectB = await createProjectViaApi(ctx, { name: 'OverlapBravo' });
|
||||||
|
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: tuesday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectB.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(2);
|
||||||
|
|
||||||
|
// Type 1h into project B's Monday cell. The createCell path should
|
||||||
|
// place it AFTER project A's 09:00–10:00 (i.e. at 10:00 or later),
|
||||||
|
// not at 09:00.
|
||||||
|
const input = cellInputByProject(page, 'OverlapBravo', 0);
|
||||||
|
await input.click();
|
||||||
|
await input.fill('1');
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
input.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const entries = await getTimeEntriesViaApi(ctx);
|
||||||
|
const bMondayEntry = entries.find(
|
||||||
|
(e) =>
|
||||||
|
e.project_id === projectB.id &&
|
||||||
|
new Date(e.start).getTime() >= monday.getTime() &&
|
||||||
|
new Date(e.start).getTime() < tuesday.getTime()
|
||||||
|
)!;
|
||||||
|
expect(bMondayEntry).toBeDefined();
|
||||||
|
// 09:00 is blocked → must be at 10:00 or later.
|
||||||
|
expect(utcHourOf(bMondayEntry.start)).toBeGreaterThanOrEqual(10);
|
||||||
|
expectNoOverlaps(entries);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('createCell refuses to cross midnight when day is full (Scenario #3)', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
// Setup: fill Monday 01:00–23:00 (22 hours, leaving 1h before and
|
||||||
|
// 1h after — neither big enough for a 3h ask). Project B is on
|
||||||
|
// Tuesday so the B row exists with an empty Monday cell. Typing 3h
|
||||||
|
// into B's Monday cell should be refused.
|
||||||
|
//
|
||||||
|
// We start at 01:00 (not 00:00) because the API's time-entry
|
||||||
|
// filter excludes entries whose `start` equals the query's `start`
|
||||||
|
// bound exactly. Using 01:00 avoids that boundary condition.
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const tuesday = new Date(monday);
|
||||||
|
tuesday.setUTCDate(monday.getUTCDate() + 1);
|
||||||
|
|
||||||
|
const projectFull = await createProjectViaApi(ctx, { name: 'OverlapFull' });
|
||||||
|
const projectNew = await createProjectViaApi(ctx, { name: 'OverlapNoRoom' });
|
||||||
|
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 1,
|
||||||
|
durationSeconds: 22 * HOUR,
|
||||||
|
projectId: projectFull.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: tuesday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectNew.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(2);
|
||||||
|
|
||||||
|
const input = cellInputByProject(page, 'OverlapNoRoom', 0);
|
||||||
|
const seenMutationRequests: string[] = [];
|
||||||
|
const onRequest = (request: Request) => {
|
||||||
|
if (request.url().includes('/time-entries') && request.method() !== 'GET') {
|
||||||
|
seenMutationRequests.push(request.method());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
page.on('request', onRequest);
|
||||||
|
await input.click();
|
||||||
|
await input.fill('3');
|
||||||
|
await input.press('Enter');
|
||||||
|
|
||||||
|
await expect(page.getByText("This day can't fit any more work")).toBeVisible();
|
||||||
|
page.off('request', onRequest);
|
||||||
|
|
||||||
|
const entries = await getTimeEntriesViaApi(ctx);
|
||||||
|
// The new project should still only have its Tuesday entry.
|
||||||
|
const newEntries = entries.filter((e) => e.project_id === projectNew.id);
|
||||||
|
expect(seenMutationRequests).toEqual([]);
|
||||||
|
expect(newEntries).toHaveLength(1);
|
||||||
|
expect(utcHourOf(newEntries[0]!.start)).toBe(9);
|
||||||
|
// The Tuesday entry's date is unchanged (still Tuesday).
|
||||||
|
expect(new Date(newEntries[0]!.start).getUTCDay()).toBe(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Phase 2: extendCell — collision detection + split
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('extendCell splits the extension when another row blocks the path (Scenario #5)', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
// Setup:
|
||||||
|
// - project A on Monday 09:00–10:00 (1h)
|
||||||
|
// - project B on Monday 10:30–11:30 (1h, blocker)
|
||||||
|
// Bumping A's Monday cell from 1h to 3h (+2h) should:
|
||||||
|
// - extend A to 09:00–10:30 (filling the 30min gap)
|
||||||
|
// - place a new A entry at 11:30–13:00 (the remaining 90min)
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const projectA = await createProjectViaApi(ctx, { name: 'OverlapExtend' });
|
||||||
|
const projectB = await createProjectViaApi(ctx, { name: 'OverlapBlocker' });
|
||||||
|
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 10,
|
||||||
|
startMinute: 30,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectB.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(2);
|
||||||
|
|
||||||
|
const input = cellInputByProject(page, 'OverlapExtend', 0);
|
||||||
|
await input.click();
|
||||||
|
await input.fill('3');
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'PUT' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
input.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const entries = await getTimeEntriesViaApi(ctx);
|
||||||
|
const aEntries = entries.filter((e) => e.project_id === projectA.id);
|
||||||
|
const bEntries = entries.filter((e) => e.project_id === projectB.id);
|
||||||
|
|
||||||
|
// The blocker is unchanged.
|
||||||
|
expect(bEntries).toHaveLength(1);
|
||||||
|
expect(utcHourOf(bEntries[0]!.start)).toBe(10);
|
||||||
|
expect(utcMinuteOf(bEntries[0]!.start)).toBe(30);
|
||||||
|
|
||||||
|
// Project A should now have 2 entries.
|
||||||
|
expect(aEntries).toHaveLength(2);
|
||||||
|
const sortedA = sortByStart(aEntries);
|
||||||
|
// Extended entry: 09:00 → 10:30
|
||||||
|
expect(utcHourOf(sortedA[0]!.start)).toBe(9);
|
||||||
|
expect(utcHourOf(sortedA[0]!.end!)).toBe(10);
|
||||||
|
expect(utcMinuteOf(sortedA[0]!.end!)).toBe(30);
|
||||||
|
// Split remainder: 11:30 → 13:00
|
||||||
|
expect(utcHourOf(sortedA[1]!.start)).toBe(11);
|
||||||
|
expect(utcMinuteOf(sortedA[1]!.start)).toBe(30);
|
||||||
|
|
||||||
|
// No overlaps anywhere on the day.
|
||||||
|
expectNoOverlaps(entries);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('extendCell prefers latest-end (not latest-start) when nested entries exist (Scenario #6)', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
// Pre-existing nested overlap on the same project:
|
||||||
|
// - outer: 09:00 → 12:00 (3h)
|
||||||
|
// - inner: 10:00 → 11:00 (1h, contained inside outer)
|
||||||
|
// The cell total is 3h + 1h = 4h. Bumping to 5h (+1h) should grow
|
||||||
|
// the OUTER entry's end to 13:00, not the inner.
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'OverlapNested' });
|
||||||
|
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: 3 * HOUR,
|
||||||
|
projectId: project.id,
|
||||||
|
description: 'outer',
|
||||||
|
});
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 10,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: project.id,
|
||||||
|
description: 'inner',
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(1);
|
||||||
|
|
||||||
|
const input = cellInputByProject(page, 'OverlapNested', 0);
|
||||||
|
await input.click();
|
||||||
|
await input.fill('5');
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'PUT' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
input.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const entries = await getTimeEntriesViaApi(ctx);
|
||||||
|
const outer = entries.find((e) => e.description === 'outer')!;
|
||||||
|
const inner = entries.find((e) => e.description === 'inner')!;
|
||||||
|
|
||||||
|
expect(utcHourOf(outer.start)).toBe(9);
|
||||||
|
expect(utcHourOf(outer.end!)).toBe(13); // extended from 12:00 → 13:00
|
||||||
|
expect(utcHourOf(inner.start)).toBe(10);
|
||||||
|
expect(utcHourOf(inner.end!)).toBe(11); // unchanged
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Phase 1+2 spillover from previous day
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('createCell handles intra-week spillover from previous day (Scenario #2)', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
// Setup: an entry that starts on Monday 22:00 and ends Tuesday 03:00
|
||||||
|
// (5h, crosses midnight INTO Tuesday). This spillover starts inside
|
||||||
|
// the loaded week, so the timesheet query loads it.
|
||||||
|
//
|
||||||
|
// Then we try to place 1h on Tuesday for a different project. The
|
||||||
|
// expected behavior: the new entry must NOT overlap the spillover.
|
||||||
|
// Tuesday 09:00 is well clear of the [00:00, 03:00) spillover, so
|
||||||
|
// 09:00 is the correct placement.
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const tuesday = new Date(monday);
|
||||||
|
tuesday.setUTCDate(monday.getUTCDate() + 1);
|
||||||
|
const wednesday = new Date(monday);
|
||||||
|
wednesday.setUTCDate(monday.getUTCDate() + 2);
|
||||||
|
|
||||||
|
const projectSpill = await createProjectViaApi(ctx, { name: 'OverlapSpill' });
|
||||||
|
const projectNew = await createProjectViaApi(ctx, { name: 'OverlapToday' });
|
||||||
|
|
||||||
|
// Monday 22:00 → Tuesday 03:00 (5h spillover into Tuesday).
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
startHour: 22,
|
||||||
|
durationSeconds: 5 * HOUR,
|
||||||
|
projectId: projectSpill.id,
|
||||||
|
});
|
||||||
|
// Stub Wednesday entry on the new project so its row is visible
|
||||||
|
// even before we type anything in Tuesday's cell.
|
||||||
|
await createTimeEntryAtHourViaApi(ctx, {
|
||||||
|
date: wednesday,
|
||||||
|
startHour: 9,
|
||||||
|
durationSeconds: HOUR,
|
||||||
|
projectId: projectNew.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(2);
|
||||||
|
|
||||||
|
// Type 1h into the new project's Tuesday cell (day index 1).
|
||||||
|
const input = cellInputByProject(page, 'OverlapToday', 1);
|
||||||
|
await input.click();
|
||||||
|
await input.fill('1');
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
input.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const entries = await getTimeEntriesViaApi(ctx);
|
||||||
|
const newTuesdayEntry = entries.find(
|
||||||
|
(e) =>
|
||||||
|
e.project_id === projectNew.id &&
|
||||||
|
new Date(e.start).getTime() >= tuesday.getTime() &&
|
||||||
|
new Date(e.start).getTime() < wednesday.getTime()
|
||||||
|
)!;
|
||||||
|
expect(newTuesdayEntry).toBeDefined();
|
||||||
|
// 09:00 is well past the spillover end (03:00) → should land at 09:00.
|
||||||
|
expect(utcHourOf(newTuesdayEntry.start)).toBe(9);
|
||||||
|
expectNoOverlaps(entries);
|
||||||
|
});
|
||||||
641
e2e/timesheet.spec.ts
Normal file
641
e2e/timesheet.spec.ts
Normal file
@@ -0,0 +1,641 @@
|
|||||||
|
import { PLAYWRIGHT_BASE_URL } from '../playwright/config';
|
||||||
|
import { test } from '../playwright/fixtures';
|
||||||
|
import { expect } from '@playwright/test';
|
||||||
|
import type { Page } from '@playwright/test';
|
||||||
|
import { createProjectViaApi, createTaskViaApi, createTimeEntryOnDateViaApi } from './utils/api';
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Helpers
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
async function goToTimesheet(page: Page) {
|
||||||
|
await page.addInitScript(() => {
|
||||||
|
window.localStorage.setItem('showReleaseInfo-desktop', 'false');
|
||||||
|
});
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/timesheet');
|
||||||
|
}
|
||||||
|
|
||||||
|
function getMonday(d: Date): Date {
|
||||||
|
const date = new Date(d);
|
||||||
|
const day = date.getUTCDay();
|
||||||
|
const diff = date.getUTCDate() - day + (day === 0 ? -6 : 1);
|
||||||
|
date.setUTCDate(diff);
|
||||||
|
date.setUTCHours(0, 0, 0, 0);
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCurrentWeekMonday(): Date {
|
||||||
|
return getMonday(new Date());
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLastWeekMonday(): Date {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
monday.setUTCDate(monday.getUTCDate() - 7);
|
||||||
|
return monday;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getDayOfWeek(weekStart: Date, dayOffset: number): Date {
|
||||||
|
const date = new Date(weekStart);
|
||||||
|
date.setUTCDate(date.getUTCDate() + dayOffset);
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function waitForTimesheetLoad(page: Page) {
|
||||||
|
await page.waitForURL(/\/timesheet(?:$|\?)/);
|
||||||
|
await expect(page.getByTestId('timesheet_view')).toBeVisible();
|
||||||
|
await expect(page.getByTestId('timesheet_week_display')).toBeVisible();
|
||||||
|
|
||||||
|
const timezoneMismatchModal = page
|
||||||
|
.getByRole('dialog')
|
||||||
|
.filter({ hasText: 'Timezone mismatch detected' });
|
||||||
|
if (await timezoneMismatchModal.isVisible().catch(() => false)) {
|
||||||
|
await timezoneMismatchModal.getByRole('button', { name: 'Cancel' }).click();
|
||||||
|
await expect(timezoneMismatchModal).not.toBeVisible();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addRowButton(page: Page) {
|
||||||
|
return page.getByRole('button', { name: /Add row/i }).first();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function chooseRowIdentity(page: Page, optionName: string) {
|
||||||
|
await addRowButton(page).click();
|
||||||
|
|
||||||
|
const dialog = page.getByRole('dialog', { name: /Add row/i });
|
||||||
|
const dialogVisible = await dialog
|
||||||
|
.waitFor({ state: 'visible', timeout: 1000 })
|
||||||
|
.then(() => true)
|
||||||
|
.catch(() => false);
|
||||||
|
|
||||||
|
if (dialogVisible) {
|
||||||
|
await dialog.getByRole('option', { name: optionName }).click();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (optionName === 'No Project') return;
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
await row.getByText('No Project').click();
|
||||||
|
await page.getByText(optionName).click();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Navigation & Page Load
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('timesheet renders empty with add row + copy last week actions', async ({ page }) => {
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(0);
|
||||||
|
await expect(addRowButton(page)).toBeVisible();
|
||||||
|
await expect(page.getByRole('button', { name: /Copy last week/i })).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Display Existing Time Entries
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('timesheet displays existing time entries grouped by project', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const tuesday = getDayOfWeek(monday, 1);
|
||||||
|
const wednesday = getDayOfWeek(monday, 2);
|
||||||
|
|
||||||
|
const projectA = await createProjectViaApi(ctx, { name: 'Project Alpha' });
|
||||||
|
const projectB = await createProjectViaApi(ctx, { name: 'Project Beta' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: projectA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: wednesday,
|
||||||
|
duration: '1h',
|
||||||
|
projectId: projectA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: tuesday,
|
||||||
|
duration: '3h',
|
||||||
|
projectId: projectB.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(2);
|
||||||
|
|
||||||
|
// Check that the grand total is shown
|
||||||
|
await expect(page.getByTestId('timesheet_grand_total')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('timesheet groups entries by project and task combination', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Task Project' });
|
||||||
|
const taskA = await createTaskViaApi(ctx, { name: 'Task A', project_id: project.id });
|
||||||
|
const taskB = await createTaskViaApi(ctx, { name: 'Task B', project_id: project.id });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '1h',
|
||||||
|
projectId: project.id,
|
||||||
|
taskId: taskA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
taskId: taskB.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Enter Duration in Cell
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('entering duration in empty cell creates a time entry', async ({ page, ctx }) => {
|
||||||
|
await createProjectViaApi(ctx, { name: 'Duration Test' });
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
await chooseRowIdentity(page, 'Duration Test');
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
|
||||||
|
// Click the first day cell and enter duration
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayCell = cells.first();
|
||||||
|
const mondayInput = mondayCell.locator('input');
|
||||||
|
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('2');
|
||||||
|
|
||||||
|
// Submit and wait for create response
|
||||||
|
const [response] = await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
mondayInput.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
expect(response.status()).toBe(201);
|
||||||
|
|
||||||
|
// Verify the cell shows the duration
|
||||||
|
await expect(mondayInput).not.toHaveValue('');
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Edit Duration (Increase)
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('increasing duration in cell extends the last time entry', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Increase Test' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '1h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
|
||||||
|
// Click and change to 3 hours
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('3');
|
||||||
|
|
||||||
|
const [response] = await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'PUT' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
mondayInput.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
expect(response.status()).toBe(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Edit Duration (Decrease)
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('decreasing duration in cell shortens the last time entry', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Decrease Test' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '3h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('1');
|
||||||
|
|
||||||
|
const [response] = await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'PUT' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
mondayInput.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
expect(response.status()).toBe(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Clear Cell
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('clearing a cell deletes all time entries for that project+day', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Clear Test' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('0');
|
||||||
|
|
||||||
|
const [response] = await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'DELETE' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
mondayInput.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
expect(response.status()).toBe(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Escape during cell edit reverts the displayed value without an API call', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Escape Cancel Test' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
|
||||||
|
// Capture the formatted display value before editing.
|
||||||
|
const originalValue = await mondayInput.inputValue();
|
||||||
|
expect(originalValue).toMatch(/2/);
|
||||||
|
|
||||||
|
let mutationFired = false;
|
||||||
|
page.on('request', (req) => {
|
||||||
|
if (req.url().includes('/time-entries') && req.method() !== 'GET') {
|
||||||
|
mutationFired = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('5');
|
||||||
|
await mondayInput.press('Escape');
|
||||||
|
|
||||||
|
// The Escape handler reverts the displayed value synchronously, so
|
||||||
|
// once this assertion passes we know the handler ran. Any mutation
|
||||||
|
// request would have been queued by then.
|
||||||
|
await expect(mondayInput).toHaveValue(originalValue);
|
||||||
|
expect(mutationFired).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Week Navigation
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('navigating to previous week shows entries from that week', async ({ page, ctx }) => {
|
||||||
|
const lastMonday = getLastWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Last Week Project' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: lastMonday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Current week should have no entries
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(0);
|
||||||
|
|
||||||
|
// Go to previous week — the row-count assertion below auto-retries
|
||||||
|
// until the new week's data arrives.
|
||||||
|
await page.getByTestId('timesheet_prev_week').click();
|
||||||
|
|
||||||
|
// Should now see the entry
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('can navigate forward and return to current week', async ({ page }) => {
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Should show "This week"
|
||||||
|
await expect(page.getByTestId('timesheet_week_display')).toContainText('This week');
|
||||||
|
|
||||||
|
// Go to next week — the text assertions below auto-retry until the
|
||||||
|
// header label flips.
|
||||||
|
await page.getByTestId('timesheet_next_week').click();
|
||||||
|
|
||||||
|
// Should no longer show "This week"
|
||||||
|
await expect(page.getByTestId('timesheet_week_display')).not.toContainText('This week');
|
||||||
|
|
||||||
|
// Go back to this week
|
||||||
|
await page.getByTestId('timesheet_week_display').click();
|
||||||
|
|
||||||
|
await expect(page.getByTestId('timesheet_week_display')).toContainText('This week');
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Copy Last Week
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('copy last week adds project rows from previous week without hours', async ({ page, ctx }) => {
|
||||||
|
const lastMonday = getLastWeekMonday();
|
||||||
|
const lastWednesday = getDayOfWeek(lastMonday, 2);
|
||||||
|
|
||||||
|
const projectA = await createProjectViaApi(ctx, { name: 'Copy Project A' });
|
||||||
|
const projectB = await createProjectViaApi(ctx, { name: 'Copy Project B' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: lastMonday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: projectA.id,
|
||||||
|
});
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: lastWednesday,
|
||||||
|
duration: '3h',
|
||||||
|
projectId: projectB.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Current week should have no populated rows yet.
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(0);
|
||||||
|
|
||||||
|
// Open copy last week dropdown and click "Copy rows only"
|
||||||
|
await page.getByRole('button', { name: /Copy last week/i }).click();
|
||||||
|
await page.getByText('Copy rows only').click();
|
||||||
|
|
||||||
|
// Should now show 2 rows (one per project)
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(2);
|
||||||
|
|
||||||
|
// All row totals should be 0
|
||||||
|
const rowTotals = page.locator('[data-testid="timesheet_row_total"]');
|
||||||
|
const count = await rowTotals.count();
|
||||||
|
for (let i = 0; i < count; i++) {
|
||||||
|
await expect(rowTotals.nth(i)).toContainText('-');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('copy last week does not duplicate rows that already exist', async ({ page, ctx }) => {
|
||||||
|
const lastMonday = getLastWeekMonday();
|
||||||
|
const thisMonday = getCurrentWeekMonday();
|
||||||
|
const thisTuesday = getDayOfWeek(thisMonday, 1);
|
||||||
|
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'No Dup Project' });
|
||||||
|
|
||||||
|
// Create entry for last week
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: lastMonday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Create entry for current week
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: thisTuesday,
|
||||||
|
duration: '1h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Should have 1 row (from current week entry)
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
|
||||||
|
// Open copy last week dropdown and click "Copy rows only"
|
||||||
|
await page.getByRole('button', { name: /Copy last week/i }).click();
|
||||||
|
await page.getByText('Copy rows only').click();
|
||||||
|
|
||||||
|
// Should still have only 1 row (not duplicated)
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('copy last week with time entries creates rows and entries', async ({ page, ctx }) => {
|
||||||
|
const lastMonday = getLastWeekMonday();
|
||||||
|
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Copy Time Project' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: lastMonday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Current week should have no populated rows yet.
|
||||||
|
await expect(page.locator('[data-testid="timesheet_row"]')).toHaveCount(0);
|
||||||
|
|
||||||
|
// Open copy last week dropdown and click "Copy rows and time entries"
|
||||||
|
await page.getByRole('button', { name: /Copy last week/i }).click();
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
page.getByText('Copy rows and time entries').click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Should now show 1 row with time entries
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
|
||||||
|
// Row total should not be 0 (entries were copied)
|
||||||
|
const rowTotal = page.locator('[data-testid="timesheet_row_total"]').first();
|
||||||
|
await expect(rowTotal).not.toContainText('0 h');
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Row Removal
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('can remove an empty project row without confirmation', async ({ page, ctx }) => {
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Empty Remove Project' });
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
await chooseRowIdentity(page, project.name);
|
||||||
|
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
|
||||||
|
// Hover the row to reveal the X button, then click it
|
||||||
|
await rows.first().hover();
|
||||||
|
await rows.first().getByRole('button', { name: 'Remove row' }).click();
|
||||||
|
|
||||||
|
// Row should be removed immediately (no dialog)
|
||||||
|
await expect(rows).toHaveCount(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('removing a row with entries shows confirmation dialog and deletes entries', async ({
|
||||||
|
page,
|
||||||
|
ctx,
|
||||||
|
}) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Delete Row Project' });
|
||||||
|
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
|
||||||
|
// Hover and click X
|
||||||
|
await rows.first().hover();
|
||||||
|
await rows.first().getByRole('button', { name: 'Remove row' }).click();
|
||||||
|
|
||||||
|
// Confirmation dialog should appear
|
||||||
|
await expect(page.getByRole('alertdialog')).toBeVisible();
|
||||||
|
await expect(page.getByText('Remove timesheet row?')).toBeVisible();
|
||||||
|
|
||||||
|
// Click Delete
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'DELETE' &&
|
||||||
|
resp.status() === 200
|
||||||
|
),
|
||||||
|
page
|
||||||
|
.getByRole('alertdialog')
|
||||||
|
.getByRole('button', { name: /Delete/i })
|
||||||
|
.click(),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Row should be gone
|
||||||
|
await expect(rows).toHaveCount(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Multiple Entries Same Cell
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('cell correctly sums multiple entries for same project+day', async ({ page, ctx }) => {
|
||||||
|
const monday = getCurrentWeekMonday();
|
||||||
|
const project = await createProjectViaApi(ctx, { name: 'Sum Test' });
|
||||||
|
|
||||||
|
// Create 2 entries for the same project on Monday
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '1h',
|
||||||
|
projectId: project.id,
|
||||||
|
description: 'Entry 1',
|
||||||
|
});
|
||||||
|
await createTimeEntryOnDateViaApi(ctx, {
|
||||||
|
date: monday,
|
||||||
|
duration: '2h',
|
||||||
|
projectId: project.id,
|
||||||
|
description: 'Entry 2',
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
// Should be 1 row (both entries grouped)
|
||||||
|
const rows = page.locator('[data-testid="timesheet_row"]');
|
||||||
|
await expect(rows).toHaveCount(1);
|
||||||
|
|
||||||
|
// The Monday cell should show 3h total
|
||||||
|
const cells = rows.first().locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
// The value should contain "3" (for 3h in some format)
|
||||||
|
await expect(mondayInput).toHaveValue(/3/);
|
||||||
|
});
|
||||||
|
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
// Duration Input Formats
|
||||||
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
test('cell accepts various duration input formats', async ({ page, ctx }) => {
|
||||||
|
await createProjectViaApi(ctx, { name: 'Format Test' });
|
||||||
|
|
||||||
|
await Promise.all([goToTimesheet(page), waitForTimesheetLoad(page)]);
|
||||||
|
|
||||||
|
await chooseRowIdentity(page, 'Format Test');
|
||||||
|
|
||||||
|
const row = page.locator('[data-testid="timesheet_row"]').first();
|
||||||
|
|
||||||
|
// Test entering "1.5" (should be 1h 30min)
|
||||||
|
const cells = row.locator('[data-testid="timesheet_cell"]');
|
||||||
|
const mondayInput = cells.first().locator('input');
|
||||||
|
|
||||||
|
await mondayInput.click();
|
||||||
|
await mondayInput.fill('1.5');
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForResponse(
|
||||||
|
(resp) =>
|
||||||
|
resp.url().includes('/time-entries') &&
|
||||||
|
resp.request().method() === 'POST' &&
|
||||||
|
resp.status() === 201
|
||||||
|
),
|
||||||
|
mondayInput.press('Enter'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// 1.5 hours = 1h 30min
|
||||||
|
await expect(mondayInput).toHaveValue('1h 30min');
|
||||||
|
});
|
||||||
192
e2e/two-factor.spec.ts
Normal file
192
e2e/two-factor.spec.ts
Normal file
@@ -0,0 +1,192 @@
|
|||||||
|
import { test, expect } from '../playwright/fixtures';
|
||||||
|
import { PLAYWRIGHT_BASE_URL, TEST_USER_PASSWORD } from '../playwright/config';
|
||||||
|
import { generateTotpCode, generateInvalidTotpCode } from './utils/totp';
|
||||||
|
import type { Page } from '@playwright/test';
|
||||||
|
|
||||||
|
async function goToProfilePage(page: Page) {
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/user/profile');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ConfirmsPassword only opens the dialog when the password has not been
|
||||||
|
* confirmed recently, so fill it only when it actually shows up.
|
||||||
|
*/
|
||||||
|
async function confirmPasswordIfPrompted(page: Page) {
|
||||||
|
const dialog = page.getByRole('dialog');
|
||||||
|
const appeared = await dialog
|
||||||
|
.waitFor({ state: 'visible', timeout: 2500 })
|
||||||
|
.then(() => true)
|
||||||
|
.catch(() => false);
|
||||||
|
if (appeared) {
|
||||||
|
await dialog.getByPlaceholder('Password').fill(TEST_USER_PASSWORD);
|
||||||
|
await dialog.getByRole('button', { name: 'Confirm' }).click();
|
||||||
|
await expect(dialog).not.toBeVisible();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enables 2FA from the profile page and returns the TOTP secret (setup key)
|
||||||
|
* and the recovery codes fetched right after enabling.
|
||||||
|
*/
|
||||||
|
async function enableTwoFactor(page: Page): Promise<{ secret: string; recoveryCodes: string[] }> {
|
||||||
|
await goToProfilePage(page);
|
||||||
|
await page
|
||||||
|
.getByText('You have not enabled two factor authentication.')
|
||||||
|
.locator('..')
|
||||||
|
.getByRole('button', { name: 'Enable' })
|
||||||
|
.click();
|
||||||
|
|
||||||
|
const dialog = page.getByRole('dialog');
|
||||||
|
await expect(dialog).toBeVisible();
|
||||||
|
|
||||||
|
const recoveryCodesResponse = page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/user/two-factor-recovery-codes') &&
|
||||||
|
response.request().method() === 'GET'
|
||||||
|
);
|
||||||
|
await dialog.getByPlaceholder('Password').fill(TEST_USER_PASSWORD);
|
||||||
|
await dialog.getByRole('button', { name: 'Confirm' }).click();
|
||||||
|
|
||||||
|
await expect(page.getByRole('heading', { name: 'Finish enabling two factor' })).toBeVisible();
|
||||||
|
const recoveryCodes: string[] = await (await recoveryCodesResponse).json();
|
||||||
|
|
||||||
|
const setupKeyText = await page.getByText('Setup Key:').textContent();
|
||||||
|
const secret = setupKeyText!.replace('Setup Key:', '').trim();
|
||||||
|
expect(secret.length).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
return { secret, recoveryCodes };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Confirms a freshly enabled 2FA setup with a valid TOTP code.
|
||||||
|
*/
|
||||||
|
async function confirmTwoFactor(page: Page, secret: string) {
|
||||||
|
await page.getByLabel('Code').fill(generateTotpCode(secret));
|
||||||
|
await page.getByRole('button', { name: 'Confirm', exact: true }).click();
|
||||||
|
await confirmPasswordIfPrompted(page);
|
||||||
|
await expect(page.getByText('You have enabled two factor authentication.')).toBeVisible();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function logout(page: Page) {
|
||||||
|
await page.getByTestId('current_user_button').click();
|
||||||
|
await page.getByText('Log Out', { exact: true }).click();
|
||||||
|
await page.waitForURL(PLAYWRIGHT_BASE_URL + '/login');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads the email of the current user from the profile form, waiting until
|
||||||
|
* the user query has populated it.
|
||||||
|
*/
|
||||||
|
async function getProfileEmail(page: Page): Promise<string> {
|
||||||
|
await goToProfilePage(page);
|
||||||
|
const emailInput = page.getByLabel('Email', { exact: true });
|
||||||
|
await expect(emailInput).toHaveValue(/@/);
|
||||||
|
return await emailInput.inputValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loginUntilTwoFactorChallenge(page: Page, email: string) {
|
||||||
|
await page.goto(PLAYWRIGHT_BASE_URL + '/login');
|
||||||
|
await page.getByLabel('Email').fill(email);
|
||||||
|
await page.getByLabel('Password').fill(TEST_USER_PASSWORD);
|
||||||
|
await page.getByRole('button', { name: 'Log in' }).click();
|
||||||
|
await page.waitForURL(PLAYWRIGHT_BASE_URL + '/two-factor-challenge');
|
||||||
|
}
|
||||||
|
|
||||||
|
test('test that 2FA can be confirmed with a TOTP code and shows recovery codes', async ({
|
||||||
|
page,
|
||||||
|
}) => {
|
||||||
|
const { secret, recoveryCodes } = await enableTwoFactor(page);
|
||||||
|
await confirmTwoFactor(page, secret);
|
||||||
|
|
||||||
|
await expect(page.getByText('Store these recovery codes')).toBeVisible();
|
||||||
|
expect(recoveryCodes.length).toBeGreaterThan(0);
|
||||||
|
for (const code of recoveryCodes) {
|
||||||
|
await expect(page.getByText(code)).toBeVisible();
|
||||||
|
}
|
||||||
|
|
||||||
|
// The confirmed state survives a reload
|
||||||
|
await page.reload();
|
||||||
|
await expect(page.getByText('You have enabled two factor authentication.')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that 2FA confirmation fails with an invalid TOTP code', async ({ page }) => {
|
||||||
|
const { secret } = await enableTwoFactor(page);
|
||||||
|
|
||||||
|
await page.getByLabel('Code').fill(generateInvalidTotpCode(secret));
|
||||||
|
await page.getByRole('button', { name: 'Confirm', exact: true }).click();
|
||||||
|
await confirmPasswordIfPrompted(page);
|
||||||
|
|
||||||
|
await expect(page.getByRole('alert')).toContainText(
|
||||||
|
'The provided two factor authentication code was invalid.'
|
||||||
|
);
|
||||||
|
await expect(page.getByRole('heading', { name: 'Finish enabling two factor' })).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that recovery codes can be regenerated', async ({ page }) => {
|
||||||
|
const { secret, recoveryCodes } = await enableTwoFactor(page);
|
||||||
|
await confirmTwoFactor(page, secret);
|
||||||
|
|
||||||
|
const newCodesResponse = page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/user/two-factor-recovery-codes') &&
|
||||||
|
response.request().method() === 'GET'
|
||||||
|
);
|
||||||
|
await page.getByRole('button', { name: 'Regenerate Recovery Codes' }).click();
|
||||||
|
await confirmPasswordIfPrompted(page);
|
||||||
|
const newCodes: string[] = await (await newCodesResponse).json();
|
||||||
|
|
||||||
|
expect(newCodes).not.toEqual(recoveryCodes);
|
||||||
|
await expect(page.getByText(newCodes[0])).toBeVisible();
|
||||||
|
await expect(page.getByText(recoveryCodes[0])).not.toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that 2FA can be disabled', async ({ page }) => {
|
||||||
|
const { secret } = await enableTwoFactor(page);
|
||||||
|
await confirmTwoFactor(page, secret);
|
||||||
|
|
||||||
|
await page.getByRole('button', { name: 'Disable' }).click();
|
||||||
|
await confirmPasswordIfPrompted(page);
|
||||||
|
await expect(page.getByText('You have not enabled two factor authentication.')).toBeVisible();
|
||||||
|
|
||||||
|
// The disabled state survives a reload
|
||||||
|
await page.reload();
|
||||||
|
await expect(page.getByText('You have not enabled two factor authentication.')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that login challenges for a TOTP code and rejects an invalid code', async ({ page }) => {
|
||||||
|
const email = await getProfileEmail(page);
|
||||||
|
|
||||||
|
const { secret } = await enableTwoFactor(page);
|
||||||
|
await confirmTwoFactor(page, secret);
|
||||||
|
await logout(page);
|
||||||
|
|
||||||
|
await loginUntilTwoFactorChallenge(page, email);
|
||||||
|
|
||||||
|
await page.getByLabel('Code').fill(generateInvalidTotpCode(secret));
|
||||||
|
await page.getByRole('button', { name: 'Log in' }).click();
|
||||||
|
await expect(page.getByRole('alert')).toContainText(
|
||||||
|
'The provided two factor authentication code was invalid.'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Fortify rejects replayed codes, and the current window's code was
|
||||||
|
// already consumed when confirming the setup — use the next window's
|
||||||
|
// code, which the +/- 1 step verification window also accepts.
|
||||||
|
await page.getByLabel('Code').fill(generateTotpCode(secret, Date.now() + 30_000));
|
||||||
|
await page.getByRole('button', { name: 'Log in' }).click();
|
||||||
|
await expect(page.getByTestId('dashboard_view')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('test that login works with a recovery code', async ({ page }) => {
|
||||||
|
const email = await getProfileEmail(page);
|
||||||
|
|
||||||
|
const { secret, recoveryCodes } = await enableTwoFactor(page);
|
||||||
|
await confirmTwoFactor(page, secret);
|
||||||
|
await logout(page);
|
||||||
|
|
||||||
|
await loginUntilTwoFactorChallenge(page, email);
|
||||||
|
|
||||||
|
await page.getByRole('button', { name: 'Use a recovery code' }).click();
|
||||||
|
await page.getByLabel('Recovery Code').fill(recoveryCodes[0]);
|
||||||
|
await page.getByRole('button', { name: 'Log in' }).click();
|
||||||
|
await expect(page.getByTestId('dashboard_view')).toBeVisible();
|
||||||
|
});
|
||||||
208
e2e/utils/api.ts
208
e2e/utils/api.ts
@@ -170,10 +170,24 @@ function parseDurationToSeconds(duration: string): number {
|
|||||||
return totalSeconds;
|
return totalSeconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds a start/end pair anchored to 09:00 UTC on today's UTC date.
|
||||||
|
*
|
||||||
|
* Intentionally pinned to UTC (rather than the runner's local time) so
|
||||||
|
* the produced timestamps are identical regardless of where the suite
|
||||||
|
* runs. Playwright test users default to UTC, so this matches what the
|
||||||
|
* app will see and keeps day-of-week / "this week" assertions stable
|
||||||
|
* for developers running the suite locally in non-UTC timezones.
|
||||||
|
*/
|
||||||
function createTimestamps(duration: string): { start: string; end: string } {
|
function createTimestamps(duration: string): { start: string; end: string } {
|
||||||
const durationSeconds = parseDurationToSeconds(duration);
|
const durationSeconds = parseDurationToSeconds(duration);
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
const start = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 9, 0, 0);
|
const start = createUtcTimestampFromDateParts(
|
||||||
|
now.getUTCFullYear(),
|
||||||
|
now.getUTCMonth(),
|
||||||
|
now.getUTCDate(),
|
||||||
|
9
|
||||||
|
);
|
||||||
const end = new Date(start.getTime() + durationSeconds * 1000);
|
const end = new Date(start.getTime() + durationSeconds * 1000);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -186,6 +200,32 @@ function formatTimestamp(date: Date): string {
|
|||||||
return date.toISOString().replace(/\.\d{3}Z$/, 'Z');
|
return date.toISOString().replace(/\.\d{3}Z$/, 'Z');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function createUtcTimestampFromDateParts(
|
||||||
|
year: number,
|
||||||
|
month: number,
|
||||||
|
date: number,
|
||||||
|
hours: number,
|
||||||
|
minutes: number = 0,
|
||||||
|
seconds: number = 0
|
||||||
|
): Date {
|
||||||
|
return new Date(Date.UTC(year, month, date, hours, minutes, seconds));
|
||||||
|
}
|
||||||
|
|
||||||
|
function createTimestampsOnDate(date: Date, duration: string): { start: string; end: string } {
|
||||||
|
const durationSeconds = parseDurationToSeconds(duration);
|
||||||
|
const start = createUtcTimestampFromDateParts(
|
||||||
|
date.getUTCFullYear(),
|
||||||
|
date.getUTCMonth(),
|
||||||
|
date.getUTCDate(),
|
||||||
|
9
|
||||||
|
);
|
||||||
|
const end = new Date(start.getTime() + durationSeconds * 1000);
|
||||||
|
return {
|
||||||
|
start: formatTimestamp(start),
|
||||||
|
end: formatTimestamp(end),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function randomColor(): string {
|
function randomColor(): string {
|
||||||
const colors = [
|
const colors = [
|
||||||
'#ef5350',
|
'#ef5350',
|
||||||
@@ -375,6 +415,39 @@ export async function createTimeEntryViaApi(
|
|||||||
return body.data as { id: string; start: string; end: string; description: string };
|
return body.data as { id: string; start: string; end: string; description: string };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function createTimeEntryOnDateViaApi(
|
||||||
|
ctx: TestContext,
|
||||||
|
data: {
|
||||||
|
date: Date;
|
||||||
|
duration: string;
|
||||||
|
description?: string;
|
||||||
|
projectId?: string | null;
|
||||||
|
taskId?: string | null;
|
||||||
|
tags?: string[];
|
||||||
|
billable?: boolean;
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
const { start, end } = createTimestampsOnDate(data.date, data.duration);
|
||||||
|
const response = await ctx.request.post(
|
||||||
|
`${PLAYWRIGHT_BASE_URL}/api/v1/organizations/${ctx.orgId}/time-entries`,
|
||||||
|
{
|
||||||
|
data: {
|
||||||
|
member_id: ctx.memberId,
|
||||||
|
start,
|
||||||
|
end,
|
||||||
|
description: data.description ?? '',
|
||||||
|
project_id: data.projectId ?? null,
|
||||||
|
task_id: data.taskId ?? null,
|
||||||
|
tags: data.tags ?? [],
|
||||||
|
billable: data.billable ?? false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
expect(response.status()).toBe(201);
|
||||||
|
const body = await response.json();
|
||||||
|
return body.data as { id: string; start: string; end: string; description: string };
|
||||||
|
}
|
||||||
|
|
||||||
export async function createProjectMemberViaApi(
|
export async function createProjectMemberViaApi(
|
||||||
ctx: TestContext,
|
ctx: TestContext,
|
||||||
projectId: string,
|
projectId: string,
|
||||||
@@ -568,10 +641,13 @@ export async function updateOrganizationCurrencyViaWeb(
|
|||||||
const xsrfCookie = cookies.find((c) => c.name === 'XSRF-TOKEN');
|
const xsrfCookie = cookies.find((c) => c.name === 'XSRF-TOKEN');
|
||||||
const xsrfToken = xsrfCookie ? decodeURIComponent(xsrfCookie.value) : '';
|
const xsrfToken = xsrfCookie ? decodeURIComponent(xsrfCookie.value) : '';
|
||||||
|
|
||||||
const response = await page.request.put(`${PLAYWRIGHT_BASE_URL}/teams/${ctx.orgId}`, {
|
const response = await page.request.put(
|
||||||
headers: { 'X-XSRF-TOKEN': xsrfToken },
|
`${PLAYWRIGHT_BASE_URL}/api/v1/organizations/${ctx.orgId}`,
|
||||||
data: { name, currency },
|
{
|
||||||
});
|
headers: { 'X-XSRF-TOKEN': xsrfToken },
|
||||||
|
data: { name, currency },
|
||||||
|
}
|
||||||
|
);
|
||||||
expect(response.status()).toBe(200);
|
expect(response.status()).toBe(200);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -613,6 +689,72 @@ export async function getInvitationsViaApi(ctx: TestContext) {
|
|||||||
// Timestamp-based time entry helpers
|
// Timestamp-based time entry helpers
|
||||||
// ──────────────────────────────────────────────────
|
// ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a time entry on `date` at a specific UTC hour with a duration
|
||||||
|
* in seconds. Playwright test users default to the UTC timezone, so this
|
||||||
|
* keeps time-placement scenarios stable across runner locales.
|
||||||
|
*/
|
||||||
|
export async function createTimeEntryAtHourViaApi(
|
||||||
|
ctx: TestContext,
|
||||||
|
data: {
|
||||||
|
date: Date;
|
||||||
|
startHour: number;
|
||||||
|
startMinute?: number;
|
||||||
|
durationSeconds: number;
|
||||||
|
projectId?: string | null;
|
||||||
|
taskId?: string | null;
|
||||||
|
description?: string;
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
const start = createUtcTimestampFromDateParts(
|
||||||
|
data.date.getUTCFullYear(),
|
||||||
|
data.date.getUTCMonth(),
|
||||||
|
data.date.getUTCDate(),
|
||||||
|
data.startHour,
|
||||||
|
data.startMinute ?? 0
|
||||||
|
);
|
||||||
|
const end = new Date(start.getTime() + data.durationSeconds * 1000);
|
||||||
|
return createTimeEntryWithTimestampsViaApi(ctx, {
|
||||||
|
start: formatTimestamp(start),
|
||||||
|
end: formatTimestamp(end),
|
||||||
|
projectId: data.projectId ?? null,
|
||||||
|
taskId: data.taskId ?? null,
|
||||||
|
description: data.description ?? '',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads time entries for the current member, optionally filtered to a
|
||||||
|
* date range. Returns the raw API objects (id, start, end, project_id,
|
||||||
|
* etc.) so tests can assert on the database state after a UI action.
|
||||||
|
*/
|
||||||
|
export async function getTimeEntriesViaApi(
|
||||||
|
ctx: TestContext,
|
||||||
|
filters: { start?: string; end?: string } = {}
|
||||||
|
): Promise<
|
||||||
|
Array<{
|
||||||
|
id: string;
|
||||||
|
start: string;
|
||||||
|
end: string | null;
|
||||||
|
duration: number | null;
|
||||||
|
project_id: string | null;
|
||||||
|
task_id: string | null;
|
||||||
|
description: string;
|
||||||
|
}>
|
||||||
|
> {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
params.set('member_id', ctx.memberId);
|
||||||
|
if (filters.start) params.set('start', filters.start);
|
||||||
|
if (filters.end) params.set('end', filters.end);
|
||||||
|
|
||||||
|
const response = await ctx.request.get(
|
||||||
|
`${PLAYWRIGHT_BASE_URL}/api/v1/organizations/${ctx.orgId}/time-entries?${params.toString()}`
|
||||||
|
);
|
||||||
|
expect(response.status()).toBe(200);
|
||||||
|
const body = await response.json();
|
||||||
|
return body.data;
|
||||||
|
}
|
||||||
|
|
||||||
export async function createTimeEntryWithTimestampsViaApi(
|
export async function createTimeEntryWithTimestampsViaApi(
|
||||||
ctx: TestContext,
|
ctx: TestContext,
|
||||||
data: {
|
data: {
|
||||||
@@ -662,53 +804,23 @@ export async function getCurrentUserViaApi(ctx: TestContext) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateUserProfileViaWeb(
|
export async function updateUserProfileViaApi(
|
||||||
page: Page,
|
ctx: TestContext,
|
||||||
settings: { timezone?: string; week_start?: string }
|
settings: { timezone?: string; week_start?: string }
|
||||||
) {
|
) {
|
||||||
// Read user info from Inertia's data-page attribute on the root element
|
const user = await getCurrentUserViaApi(ctx);
|
||||||
const userInfo = await page.evaluate(() => {
|
|
||||||
// Try Inertia's data-page attribute (stores initial page props as JSON)
|
|
||||||
const appEl = document.getElementById('app');
|
|
||||||
if (appEl) {
|
|
||||||
const dataPage = appEl.getAttribute('data-page');
|
|
||||||
if (dataPage) {
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(dataPage);
|
|
||||||
const user = parsed?.props?.auth?.user;
|
|
||||||
if (user) {
|
|
||||||
return {
|
|
||||||
name: user.name,
|
|
||||||
email: user.email,
|
|
||||||
timezone: user.timezone,
|
|
||||||
week_start: user.week_start,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// JSON parse failed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
if (!userInfo) throw new Error('Could not read user info from Inertia data-page attribute');
|
|
||||||
|
|
||||||
const cookies = await page.context().cookies();
|
// Only send the fields under test; the endpoint leaves omitted fields untouched.
|
||||||
const xsrfCookie = cookies.find((c) => c.name === 'XSRF-TOKEN');
|
const data: Record<string, string> = {};
|
||||||
const xsrfToken = xsrfCookie ? decodeURIComponent(xsrfCookie.value) : '';
|
if (settings.timezone !== undefined) {
|
||||||
|
data.timezone = settings.timezone;
|
||||||
|
}
|
||||||
|
if (settings.week_start !== undefined) {
|
||||||
|
data.week_start = settings.week_start;
|
||||||
|
}
|
||||||
|
|
||||||
const response = await page.request.put(`${PLAYWRIGHT_BASE_URL}/user/profile-information`, {
|
const response = await ctx.request.put(`${PLAYWRIGHT_BASE_URL}/api/v1/users/${user.id}`, {
|
||||||
headers: {
|
data,
|
||||||
'X-XSRF-TOKEN': xsrfToken,
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
Accept: 'application/json',
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
name: userInfo.name,
|
|
||||||
email: userInfo.email,
|
|
||||||
timezone: settings.timezone ?? userInfo.timezone,
|
|
||||||
week_start: settings.week_start ?? userInfo.week_start,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
expect(response.status()).toBe(200);
|
expect(response.status()).toBe(200);
|
||||||
}
|
}
|
||||||
|
|||||||
58
e2e/utils/totp.ts
Normal file
58
e2e/utils/totp.ts
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
import { createHmac } from 'node:crypto';
|
||||||
|
|
||||||
|
const BASE32_ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567';
|
||||||
|
|
||||||
|
function base32Decode(input: string): Buffer {
|
||||||
|
const normalized = input
|
||||||
|
.toUpperCase()
|
||||||
|
.replace(/=+$/, '')
|
||||||
|
.replace(/[^A-Z2-7]/g, '');
|
||||||
|
let bits = 0;
|
||||||
|
let value = 0;
|
||||||
|
const bytes: number[] = [];
|
||||||
|
for (const char of normalized) {
|
||||||
|
value = (value << 5) | BASE32_ALPHABET.indexOf(char);
|
||||||
|
bits += 5;
|
||||||
|
if (bits >= 8) {
|
||||||
|
bytes.push((value >>> (bits - 8)) & 0xff);
|
||||||
|
bits -= 8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Buffer.from(bytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a 6-digit TOTP code (RFC 6238, SHA-1, 30 second period) for the
|
||||||
|
* given base32 secret — the "Setup Key" shown while enabling 2FA.
|
||||||
|
*/
|
||||||
|
export function generateTotpCode(base32Secret: string, atMs: number = Date.now()): string {
|
||||||
|
const counter = Math.floor(atMs / 1000 / 30);
|
||||||
|
const counterBuffer = Buffer.alloc(8);
|
||||||
|
counterBuffer.writeBigUInt64BE(BigInt(counter));
|
||||||
|
const digest = createHmac('sha1', base32Decode(base32Secret)).update(counterBuffer).digest();
|
||||||
|
const offset = digest[digest.length - 1] & 0x0f;
|
||||||
|
const code =
|
||||||
|
((digest[offset] & 0x7f) << 24) |
|
||||||
|
((digest[offset + 1] & 0xff) << 16) |
|
||||||
|
((digest[offset + 2] & 0xff) << 8) |
|
||||||
|
(digest[offset + 3] & 0xff);
|
||||||
|
return (code % 1_000_000).toString().padStart(6, '0');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a syntactically valid TOTP code that is guaranteed to be rejected,
|
||||||
|
* by using a timestamp far outside the accepted verification window.
|
||||||
|
*/
|
||||||
|
export function generateInvalidTotpCode(base32Secret: string): string {
|
||||||
|
const validNow = [
|
||||||
|
generateTotpCode(base32Secret, Date.now() - 30_000),
|
||||||
|
generateTotpCode(base32Secret),
|
||||||
|
generateTotpCode(base32Secret, Date.now() + 30_000),
|
||||||
|
];
|
||||||
|
for (let minutes = 10; ; minutes++) {
|
||||||
|
const candidate = generateTotpCode(base32Secret, Date.now() + minutes * 60_000);
|
||||||
|
if (!validNow.includes(candidate)) {
|
||||||
|
return candidate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1041
package-lock.json
generated
1041
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@@ -12,10 +12,17 @@
|
|||||||
"lint": "eslint resources/js",
|
"lint": "eslint resources/js",
|
||||||
"lint:fix": "eslint --fix resources/js",
|
"lint:fix": "eslint --fix resources/js",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
|
"test:unit": "vitest run",
|
||||||
|
"test:unit:watch": "vitest",
|
||||||
"test:e2e": "rm -rf test-results/.auth && npx playwright test",
|
"test:e2e": "rm -rf test-results/.auth && npx playwright test",
|
||||||
"zod:generate": "npx openapi-zod-client http://localhost:80/docs/api.json --output resources/js/packages/api/src/openapi.json.client.ts --base-url /api",
|
"zod:generate": "npx openapi-zod-client http://localhost:80/docs/api.json --output resources/js/packages/api/src/openapi.json.client.ts --base-url /api",
|
||||||
"format": "prettier --write './**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'",
|
"format": "prettier --write './**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'",
|
||||||
"format:check": "prettier --check './**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'"
|
"format:check": "prettier --check './**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'",
|
||||||
|
"build:ui": "npm run build --workspace=@solidtime/ui",
|
||||||
|
"build:api": "npm run build --workspace=@solidtime/api",
|
||||||
|
"build:packages": "npm run build:api && npm run build:ui",
|
||||||
|
"watch:ui": "npm run watch --workspace=@solidtime/ui",
|
||||||
|
"watch:api": "npm run watch --workspace=@solidtime/api"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.5",
|
"@eslint/eslintrc": "^3.3.5",
|
||||||
@@ -27,10 +34,12 @@
|
|||||||
"@types/chroma-js": "^3.1.2",
|
"@types/chroma-js": "^3.1.2",
|
||||||
"@types/node": "^22.19.19",
|
"@types/node": "^22.19.19",
|
||||||
"@vitejs/plugin-vue": "^6.0.6",
|
"@vitejs/plugin-vue": "^6.0.6",
|
||||||
|
"@vue/test-utils": "^2.4.6",
|
||||||
"@vue/tsconfig": "^0.8.1",
|
"@vue/tsconfig": "^0.8.1",
|
||||||
"autoprefixer": "^10.5.0",
|
"autoprefixer": "^10.5.0",
|
||||||
"axios": "^1.16.0",
|
"axios": "^1.16.0",
|
||||||
"eslint-plugin-unused-imports": "^4.4.1",
|
"eslint-plugin-unused-imports": "^4.4.1",
|
||||||
|
"happy-dom": "^20.8.9",
|
||||||
"laravel-vite-plugin": "^2.1.0",
|
"laravel-vite-plugin": "^2.1.0",
|
||||||
"openapi-zod-client": "^1.18.3",
|
"openapi-zod-client": "^1.18.3",
|
||||||
"postcss": "^8.5.14",
|
"postcss": "^8.5.14",
|
||||||
@@ -40,6 +49,7 @@
|
|||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"vite": "^7.3.3",
|
"vite": "^7.3.3",
|
||||||
"vite-plugin-checker": "^0.12.0",
|
"vite-plugin-checker": "^0.12.0",
|
||||||
|
"vitest": "^4.1.4",
|
||||||
"vue": "^3.5.34",
|
"vue": "^3.5.34",
|
||||||
"vue-tsc": "^3.2.8"
|
"vue-tsc": "^3.2.8"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ import { Field, FieldGroup, FieldLabel } from '@/packages/ui/src/field';
|
|||||||
import ProjectBillableRateModal from '@/packages/ui/src/Project/ProjectBillableRateModal.vue';
|
import ProjectBillableRateModal from '@/packages/ui/src/Project/ProjectBillableRateModal.vue';
|
||||||
import { getOrganizationCurrencyString } from '@/utils/money';
|
import { getOrganizationCurrencyString } from '@/utils/money';
|
||||||
import ProjectEditBillableSection from '@/packages/ui/src/Project/ProjectEditBillableSection.vue';
|
import ProjectEditBillableSection from '@/packages/ui/src/Project/ProjectEditBillableSection.vue';
|
||||||
|
import ProjectVisibilitySelect from '@/packages/ui/src/Project/ProjectVisibilitySelect.vue';
|
||||||
import { isAllowedToPerformPremiumAction } from '@/utils/billing';
|
import { isAllowedToPerformPremiumAction } from '@/utils/billing';
|
||||||
import { useOrganizationQuery } from '@/utils/useOrganizationQuery';
|
import { useOrganizationQuery } from '@/utils/useOrganizationQuery';
|
||||||
import { getCurrentOrganizationId } from '@/utils/useUser';
|
import { getCurrentOrganizationId } from '@/utils/useUser';
|
||||||
@@ -44,6 +45,7 @@ const project = ref<CreateProjectBody>({
|
|||||||
billable_rate: props.originalProject.billable_rate,
|
billable_rate: props.originalProject.billable_rate,
|
||||||
is_billable: props.originalProject.is_billable,
|
is_billable: props.originalProject.is_billable,
|
||||||
estimated_time: props.originalProject.estimated_time,
|
estimated_time: props.originalProject.estimated_time,
|
||||||
|
is_public: props.originalProject.is_public,
|
||||||
});
|
});
|
||||||
|
|
||||||
async function submit() {
|
async function submit() {
|
||||||
@@ -126,6 +128,7 @@ async function submitBillableRate() {
|
|||||||
v-if="isAllowedToPerformPremiumAction()"
|
v-if="isAllowedToPerformPremiumAction()"
|
||||||
v-model="project.estimated_time"
|
v-model="project.estimated_time"
|
||||||
@submit="submit()"></EstimatedTimeSection>
|
@submit="submit()"></EstimatedTimeSection>
|
||||||
|
<ProjectVisibilitySelect v-model="project.is_public"></ProjectVisibilitySelect>
|
||||||
</FieldGroup>
|
</FieldGroup>
|
||||||
</template>
|
</template>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
|
|||||||
@@ -13,7 +13,8 @@ export type SortColumn =
|
|||||||
| 'spent_time'
|
| 'spent_time'
|
||||||
| 'progress'
|
| 'progress'
|
||||||
| 'billable_rate'
|
| 'billable_rate'
|
||||||
| 'status';
|
| 'status'
|
||||||
|
| 'visibility';
|
||||||
export type SortDirection = 'asc' | 'desc';
|
export type SortDirection = 'asc' | 'desc';
|
||||||
import { canCreateProjects } from '@/utils/permissions';
|
import { canCreateProjects } from '@/utils/permissions';
|
||||||
import type { CreateProjectBody, Project, Client, CreateClientBody } from '@/packages/api/src';
|
import type { CreateProjectBody, Project, Client, CreateClientBody } from '@/packages/api/src';
|
||||||
@@ -102,6 +103,10 @@ const columns = computed(() => [
|
|||||||
id: 'status',
|
id: 'status',
|
||||||
accessorFn: (row: Project) => (row.is_archived ? 1 : 0),
|
accessorFn: (row: Project) => (row.is_archived ? 1 : 0),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'visibility',
|
||||||
|
accessorFn: (row: Project) => (row.is_public ? 1 : 0),
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// Columns with sortDescFirst get desc as default direction on first click.
|
// Columns with sortDescFirst get desc as default direction on first click.
|
||||||
@@ -149,7 +154,7 @@ async function createClient(client: CreateClientBody): Promise<Client | undefine
|
|||||||
}
|
}
|
||||||
|
|
||||||
const gridTemplate = computed(() => {
|
const gridTemplate = computed(() => {
|
||||||
return `grid-template-columns: minmax(300px, 1fr) minmax(150px, auto) minmax(140px, auto) minmax(130px, auto) ${props.showBillableRate ? 'minmax(130px, auto)' : ''} minmax(120px, auto) 80px;`;
|
return `grid-template-columns: minmax(300px, 1fr) minmax(150px, auto) minmax(140px, auto) minmax(130px, auto) ${props.showBillableRate ? 'minmax(130px, auto)' : ''} minmax(120px, auto) minmax(120px, auto) 80px;`;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -171,7 +176,7 @@ const gridTemplate = computed(() => {
|
|||||||
:sort-direction="props.sortDirection"
|
:sort-direction="props.sortDirection"
|
||||||
:desc-first-columns="descFirstColumns"
|
:desc-first-columns="descFirstColumns"
|
||||||
@sort="handleSort"></ProjectTableHeading>
|
@sort="handleSort"></ProjectTableHeading>
|
||||||
<div v-if="sortedProjects.length === 0" class="col-span-5 py-24 text-center">
|
<div v-if="sortedProjects.length === 0" class="col-span-full py-24 text-center">
|
||||||
<FolderPlusIcon class="w-8 text-icon-default inline pb-2"></FolderPlusIcon>
|
<FolderPlusIcon class="w-8 text-icon-default inline pb-2"></FolderPlusIcon>
|
||||||
<h3 class="text-text-primary font-semibold">
|
<h3 class="text-text-primary font-semibold">
|
||||||
{{
|
{{
|
||||||
|
|||||||
@@ -86,6 +86,14 @@ function isChevronUp(column: SortColumn): boolean {
|
|||||||
<ChevronUpIcon v-else-if="isChevronUp('status')" class="w-4 h-4" />
|
<ChevronUpIcon v-else-if="isChevronUp('status')" class="w-4 h-4" />
|
||||||
<span v-else class="w-4 h-4"></span>
|
<span v-else class="w-4 h-4"></span>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="px-3 py-1.5 text-left text-text-tertiary cursor-pointer hover:bg-secondary hover:text-text-primary transition-colors select-none flex items-center gap-1"
|
||||||
|
@click="handleSort('visibility')">
|
||||||
|
Visibility
|
||||||
|
<ChevronDownIcon v-if="isChevronDown('visibility')" class="w-4 h-4" />
|
||||||
|
<ChevronUpIcon v-else-if="isChevronUp('visibility')" class="w-4 h-4" />
|
||||||
|
<span v-else class="w-4 h-4"></span>
|
||||||
|
</div>
|
||||||
<div class="relative py-1.5 pl-3 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
|
<div class="relative py-1.5 pl-3 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
|
||||||
<span class="sr-only">Edit</span>
|
<span class="sr-only">Edit</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ import {
|
|||||||
PencilSquareIcon,
|
PencilSquareIcon,
|
||||||
ArchiveBoxIcon as ArchiveBoxIconSolid,
|
ArchiveBoxIcon as ArchiveBoxIconSolid,
|
||||||
TrashIcon,
|
TrashIcon,
|
||||||
|
GlobeAltIcon,
|
||||||
|
LockClosedIcon,
|
||||||
} from '@heroicons/vue/20/solid';
|
} from '@heroicons/vue/20/solid';
|
||||||
import { useClientsQuery } from '@/utils/useClientsQuery';
|
import { useClientsQuery } from '@/utils/useClientsQuery';
|
||||||
import { useTasksQuery } from '@/utils/useTasksQuery';
|
import { useTasksQuery } from '@/utils/useTasksQuery';
|
||||||
@@ -141,6 +143,17 @@ const showEditProjectModal = ref(false);
|
|||||||
<span>Active</span>
|
<span>Active</span>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="whitespace-nowrap px-3 py-4 text-sm text-text-primary flex space-x-1.5 items-center font-medium">
|
||||||
|
<template v-if="project.is_public">
|
||||||
|
<GlobeAltIcon class="w-4 text-icon-default"></GlobeAltIcon>
|
||||||
|
<span>Public</span>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<LockClosedIcon class="w-4 text-icon-default"></LockClosedIcon>
|
||||||
|
<span>Private</span>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="relative whitespace-nowrap flex items-center pl-3 text-right text-sm font-medium pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
|
class="relative whitespace-nowrap flex items-center pl-3 text-right text-sm font-medium pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
|
||||||
<ProjectMoreOptionsDropdown
|
<ProjectMoreOptionsDropdown
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { computed } from 'vue';
|
||||||
|
import { GlobeAltIcon } from '@heroicons/vue/16/solid';
|
||||||
|
import { DropdownMenuItem } from '@/packages/ui/src';
|
||||||
|
import BaseFilterBadge from './BaseFilterBadge.vue';
|
||||||
|
|
||||||
|
type VisibilityValue = 'public' | 'private' | 'all';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
value: VisibilityValue;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
remove: [];
|
||||||
|
'update:value': [value: VisibilityValue];
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const visibilityOptions = [
|
||||||
|
{ id: 'public' as const, name: 'Public' },
|
||||||
|
{ id: 'private' as const, name: 'Private' },
|
||||||
|
];
|
||||||
|
|
||||||
|
const label = computed(() => {
|
||||||
|
return visibilityOptions.find((opt) => opt.id === props.value)?.name ?? 'Visibility';
|
||||||
|
});
|
||||||
|
|
||||||
|
function updateVisibility(visibility: VisibilityValue) {
|
||||||
|
emit('update:value', visibility);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<BaseFilterBadge
|
||||||
|
:icon="GlobeAltIcon"
|
||||||
|
:label="label"
|
||||||
|
filter-name="Visibility"
|
||||||
|
@remove="emit('remove')">
|
||||||
|
<DropdownMenuItem
|
||||||
|
v-for="option in visibilityOptions"
|
||||||
|
:key="option.id"
|
||||||
|
:class="[value === option.id && 'bg-accent text-accent-foreground']"
|
||||||
|
@click="updateVisibility(option.id)">
|
||||||
|
{{ option.name }}
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</BaseFilterBadge>
|
||||||
|
</template>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import { UserGroupIcon, CheckCircleIcon } from '@heroicons/vue/16/solid';
|
import { UserGroupIcon, CheckCircleIcon, GlobeAltIcon } from '@heroicons/vue/16/solid';
|
||||||
import ListFilterIcon from '@/packages/ui/src/Icons/ListFilterIcon.vue';
|
import ListFilterIcon from '@/packages/ui/src/Icons/ListFilterIcon.vue';
|
||||||
import {
|
import {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
@@ -19,6 +19,7 @@ import { NO_CLIENT_ID } from './constants';
|
|||||||
|
|
||||||
export interface ProjectFilters {
|
export interface ProjectFilters {
|
||||||
status: 'active' | 'archived' | 'all';
|
status: 'active' | 'archived' | 'all';
|
||||||
|
visibility: 'public' | 'private' | 'all';
|
||||||
clientIds: string[];
|
clientIds: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,6 +37,11 @@ const statusOptions = [
|
|||||||
{ id: 'archived' as const, name: 'Archived' },
|
{ id: 'archived' as const, name: 'Archived' },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const visibilityOptions = [
|
||||||
|
{ id: 'public' as const, name: 'Public' },
|
||||||
|
{ id: 'private' as const, name: 'Private' },
|
||||||
|
];
|
||||||
|
|
||||||
const open = ref(false);
|
const open = ref(false);
|
||||||
|
|
||||||
function updateStatus(status: 'active' | 'archived' | 'all') {
|
function updateStatus(status: 'active' | 'archived' | 'all') {
|
||||||
@@ -46,6 +52,14 @@ function updateStatus(status: 'active' | 'archived' | 'all') {
|
|||||||
open.value = false;
|
open.value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateVisibility(visibility: 'public' | 'private' | 'all') {
|
||||||
|
emit('update:filters', {
|
||||||
|
...props.filters,
|
||||||
|
visibility,
|
||||||
|
});
|
||||||
|
open.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
function toggleClient(clientId: string) {
|
function toggleClient(clientId: string) {
|
||||||
const clientIds = props.filters.clientIds.includes(clientId)
|
const clientIds = props.filters.clientIds.includes(clientId)
|
||||||
? props.filters.clientIds.filter((id) => id !== clientId)
|
? props.filters.clientIds.filter((id) => id !== clientId)
|
||||||
@@ -69,7 +83,11 @@ function toggleNoClient() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const hasActiveFilters = computed(() => {
|
const hasActiveFilters = computed(() => {
|
||||||
return props.filters.status !== 'all' || props.filters.clientIds.length > 0;
|
return (
|
||||||
|
props.filters.status !== 'all' ||
|
||||||
|
props.filters.visibility !== 'all' ||
|
||||||
|
props.filters.clientIds.length > 0
|
||||||
|
);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -102,6 +120,25 @@ const hasActiveFilters = computed(() => {
|
|||||||
</DropdownMenuSubContent>
|
</DropdownMenuSubContent>
|
||||||
</DropdownMenuSub>
|
</DropdownMenuSub>
|
||||||
|
|
||||||
|
<!-- Visibility Filter -->
|
||||||
|
<DropdownMenuSub>
|
||||||
|
<DropdownMenuSubTrigger class="gap-2">
|
||||||
|
<GlobeAltIcon class="h-4 w-4 text-icon-default" />
|
||||||
|
<span>Visibility</span>
|
||||||
|
</DropdownMenuSubTrigger>
|
||||||
|
<DropdownMenuSubContent>
|
||||||
|
<DropdownMenuItem
|
||||||
|
v-for="option in visibilityOptions"
|
||||||
|
:key="option.id"
|
||||||
|
:class="[
|
||||||
|
filters.visibility === option.id && 'bg-accent text-accent-foreground',
|
||||||
|
]"
|
||||||
|
@click="updateVisibility(option.id)">
|
||||||
|
{{ option.name }}
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</DropdownMenuSubContent>
|
||||||
|
</DropdownMenuSub>
|
||||||
|
|
||||||
<!-- Client Filter -->
|
<!-- Client Filter -->
|
||||||
<DropdownMenuSub v-if="clients.length > 0">
|
<DropdownMenuSub v-if="clients.length > 0">
|
||||||
<DropdownMenuSubTrigger class="gap-2">
|
<DropdownMenuSubTrigger class="gap-2">
|
||||||
|
|||||||
@@ -20,12 +20,6 @@ import {
|
|||||||
} from '@/packages/ui/src';
|
} from '@/packages/ui/src';
|
||||||
|
|
||||||
const page = usePage<{
|
const page = usePage<{
|
||||||
jetstream: {
|
|
||||||
canCreateTeams: boolean;
|
|
||||||
hasTeamFeatures: boolean;
|
|
||||||
managesProfilePhotos: boolean;
|
|
||||||
hasApiFeatures: boolean;
|
|
||||||
};
|
|
||||||
auth: {
|
auth: {
|
||||||
user: User & {
|
user: User & {
|
||||||
all_teams: Organization[];
|
all_teams: Organization[];
|
||||||
@@ -39,7 +33,7 @@ const switchToTeam = (organization: Organization) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<DropdownMenu v-if="page.props.jetstream.hasTeamFeatures">
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger
|
<DropdownMenuTrigger
|
||||||
class="flex w-full text-left hover:bg-white/10 focus-visible:ring-2 focus-visible:ring-ring cursor-pointer transition pl-2 py-1 rounded w-full items-center justify-between"
|
class="flex w-full text-left hover:bg-white/10 focus-visible:ring-2 focus-visible:ring-ring cursor-pointer transition pl-2 py-1 rounded w-full items-center justify-between"
|
||||||
as-child>
|
as-child>
|
||||||
@@ -67,7 +61,7 @@ const switchToTeam = (organization: Organization) => {
|
|||||||
|
|
||||||
<DropdownMenuItem as-child>
|
<DropdownMenuItem as-child>
|
||||||
<Link
|
<Link
|
||||||
:href="route('teams.show', page.props.auth.user.current_team.id)"
|
:href="route('organizations.show', page.props.auth.user.current_team.id)"
|
||||||
class="inline-flex items-center gap-2.5 w-full">
|
class="inline-flex items-center gap-2.5 w-full">
|
||||||
<Cog6ToothIcon class="w-5 h-5 text-icon-default" />
|
<Cog6ToothIcon class="w-5 h-5 text-icon-default" />
|
||||||
<span>Organization Settings</span>
|
<span>Organization Settings</span>
|
||||||
@@ -78,9 +72,9 @@ const switchToTeam = (organization: Organization) => {
|
|||||||
<Link href="/billing" class="inline-flex items-center w-full"> Billing </Link>
|
<Link href="/billing" class="inline-flex items-center w-full"> Billing </Link>
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
|
|
||||||
<DropdownMenuItem v-if="page.props.jetstream.canCreateTeams" as-child>
|
<DropdownMenuItem as-child>
|
||||||
<Link
|
<Link
|
||||||
:href="route('teams.create')"
|
:href="route('organizations.create')"
|
||||||
class="inline-flex items-center gap-2.5 w-full">
|
class="inline-flex items-center gap-2.5 w-full">
|
||||||
<PlusCircleIcon class="w-5 h-5 text-icon-default" />
|
<PlusCircleIcon class="w-5 h-5 text-icon-default" />
|
||||||
<span>Create new organization</span>
|
<span>Create new organization</span>
|
||||||
|
|||||||
46
resources/js/Components/Timesheet/RemoveRowDialog.vue
Normal file
46
resources/js/Components/Timesheet/RemoveRowDialog.vue
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import {
|
||||||
|
AlertDialog,
|
||||||
|
AlertDialogAction,
|
||||||
|
AlertDialogCancel,
|
||||||
|
AlertDialogContent,
|
||||||
|
AlertDialogDescription,
|
||||||
|
AlertDialogFooter,
|
||||||
|
AlertDialogHeader,
|
||||||
|
AlertDialogTitle,
|
||||||
|
} from '@/Components/ui/alert-dialog';
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
open: boolean;
|
||||||
|
entryCount: number;
|
||||||
|
projectName: string;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
defineEmits<{
|
||||||
|
(e: 'update:open', value: boolean): void;
|
||||||
|
(e: 'confirm'): void;
|
||||||
|
}>();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<AlertDialog :open="open" @update:open="$emit('update:open', $event)">
|
||||||
|
<AlertDialogContent>
|
||||||
|
<AlertDialogHeader>
|
||||||
|
<AlertDialogTitle>Remove timesheet row?</AlertDialogTitle>
|
||||||
|
<AlertDialogDescription>
|
||||||
|
This will delete {{ entryCount }} time
|
||||||
|
{{ entryCount === 1 ? 'entry' : 'entries' }}
|
||||||
|
for "{{ projectName }}". This action cannot be undone.
|
||||||
|
</AlertDialogDescription>
|
||||||
|
</AlertDialogHeader>
|
||||||
|
<AlertDialogFooter>
|
||||||
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
||||||
|
<AlertDialogAction
|
||||||
|
class="bg-destructive text-destructive-foreground hover:bg-destructive/90"
|
||||||
|
@click="$emit('confirm')">
|
||||||
|
Delete
|
||||||
|
</AlertDialogAction>
|
||||||
|
</AlertDialogFooter>
|
||||||
|
</AlertDialogContent>
|
||||||
|
</AlertDialog>
|
||||||
|
</template>
|
||||||
96
resources/js/Components/Timesheet/TimesheetCell.test.ts
Normal file
96
resources/js/Components/Timesheet/TimesheetCell.test.ts
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
import { mount } from '@vue/test-utils';
|
||||||
|
import { nextTick } from 'vue';
|
||||||
|
import TimesheetCell from './TimesheetCell.vue';
|
||||||
|
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
|
||||||
|
import type { TimesheetCell as TimesheetCellType } from '@/utils/useTimesheetGrid';
|
||||||
|
|
||||||
|
function buildCell(totalSeconds: number): TimesheetCellType {
|
||||||
|
return {
|
||||||
|
dayIndex: 0,
|
||||||
|
date: '2026-04-13',
|
||||||
|
entries: [],
|
||||||
|
totalSeconds,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function mountTimesheetCell(totalSeconds = 2 * 3600) {
|
||||||
|
return mount(TimesheetCell, {
|
||||||
|
props: {
|
||||||
|
cell: buildCell(totalSeconds),
|
||||||
|
dayIndex: 0,
|
||||||
|
date: '2026-04-13',
|
||||||
|
isToday: false,
|
||||||
|
hasRunningEntry: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('TimesheetCell', () => {
|
||||||
|
it('emits 0 when the cleared value is committed on blur', async () => {
|
||||||
|
const wrapper = mountTimesheetCell();
|
||||||
|
const input = wrapper.get('input');
|
||||||
|
|
||||||
|
await input.trigger('focus');
|
||||||
|
await input.setValue('');
|
||||||
|
await input.trigger('blur');
|
||||||
|
|
||||||
|
expect(wrapper.emitted('update')).toEqual([[0]]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('emits 0 when the cleared value is committed with Enter', async () => {
|
||||||
|
const wrapper = mountTimesheetCell();
|
||||||
|
const input = wrapper.get('input');
|
||||||
|
|
||||||
|
await input.trigger('focus');
|
||||||
|
await input.setValue('');
|
||||||
|
await input.trigger('keydown', { key: 'Enter' });
|
||||||
|
|
||||||
|
expect(wrapper.emitted('update')).toEqual([[0]]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('restores the previous value and emits nothing on Escape', async () => {
|
||||||
|
const wrapper = mountTimesheetCell();
|
||||||
|
const input = wrapper.get('input');
|
||||||
|
const previousValue = formatHumanReadableDuration(2 * 3600, 'hours-minutes', 'point');
|
||||||
|
|
||||||
|
await input.trigger('focus');
|
||||||
|
await input.setValue('');
|
||||||
|
await input.trigger('keydown', { key: 'Escape' });
|
||||||
|
await nextTick();
|
||||||
|
|
||||||
|
expect(wrapper.emitted('update')).toBeUndefined();
|
||||||
|
expect((input.element as HTMLInputElement).value).toBe(previousValue);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('shows a pending 0 (delete in flight) over the cell total', () => {
|
||||||
|
const wrapper = mount(TimesheetCell, {
|
||||||
|
props: {
|
||||||
|
cell: buildCell(2 * 3600),
|
||||||
|
dayIndex: 0,
|
||||||
|
date: '2026-04-13',
|
||||||
|
isToday: false,
|
||||||
|
hasRunningEntry: false,
|
||||||
|
pendingSeconds: 0,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// `??` (not `||`): a pending 0 must win over the 2h cell total.
|
||||||
|
expect((wrapper.get('input').element as HTMLInputElement).value).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('disables editing while the cell is saving', () => {
|
||||||
|
const wrapper = mount(TimesheetCell, {
|
||||||
|
props: {
|
||||||
|
cell: buildCell(2 * 3600),
|
||||||
|
dayIndex: 0,
|
||||||
|
date: '2026-04-13',
|
||||||
|
isToday: false,
|
||||||
|
hasRunningEntry: false,
|
||||||
|
saveStatus: 'saving',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
expect((wrapper.get('input').element as HTMLInputElement).disabled).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
96
resources/js/Components/Timesheet/TimesheetCell.vue
Normal file
96
resources/js/Components/Timesheet/TimesheetCell.vue
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { computed } from 'vue';
|
||||||
|
import { CheckIcon } from '@heroicons/vue/16/solid';
|
||||||
|
import DurationSecondsInput from '@/packages/ui/src/Input/DurationSecondsInput.vue';
|
||||||
|
import LoadingSpinner from '@/packages/ui/src/LoadingSpinner.vue';
|
||||||
|
import {
|
||||||
|
Tooltip,
|
||||||
|
TooltipContent,
|
||||||
|
TooltipProvider,
|
||||||
|
TooltipTrigger,
|
||||||
|
} from '@/packages/ui/src/tooltip';
|
||||||
|
import type { TimesheetCell } from '@/utils/useTimesheetGrid';
|
||||||
|
import type { CellSaveStatus } from '@/utils/timesheet/useTimesheetCellMutations';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
cell?: TimesheetCell;
|
||||||
|
dayIndex: number;
|
||||||
|
date: string;
|
||||||
|
isToday: boolean;
|
||||||
|
hasRunningEntry: boolean;
|
||||||
|
saveStatus?: CellSaveStatus;
|
||||||
|
pendingSeconds?: number;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
update: [newSeconds: number];
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// Show the optimistic value while saving; `??` (not `||`) so a pending 0 (delete) wins.
|
||||||
|
const displaySeconds = computed(() => props.pendingSeconds ?? props.cell?.totalSeconds ?? 0);
|
||||||
|
const isSaving = computed(() => props.saveStatus === 'saving');
|
||||||
|
|
||||||
|
// Swap the border color (don't layer) to avoid same-specificity fights.
|
||||||
|
const inputClass = computed(() => {
|
||||||
|
const border = props.saveStatus === 'error' ? 'border-red-500/70' : 'border-input-border';
|
||||||
|
return [
|
||||||
|
'w-[80px] mx-auto text-center font-medium',
|
||||||
|
'bg-transparent text-text-primary placeholder:text-text-quaternary',
|
||||||
|
'rounded-lg border shadow-none',
|
||||||
|
border,
|
||||||
|
'hover:bg-card-background',
|
||||||
|
'focus-visible:bg-tertiary focus-visible:border-transparent',
|
||||||
|
'focus-visible:ring-2 focus-visible:ring-ring focus-visible:outline-none',
|
||||||
|
'disabled:cursor-wait disabled:opacity-70',
|
||||||
|
].join(' ');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div
|
||||||
|
data-testid="timesheet_cell"
|
||||||
|
class="flex items-center justify-center border-t border-default-background-separator"
|
||||||
|
:class="{ 'bg-default-background': isToday }">
|
||||||
|
<TooltipProvider v-if="hasRunningEntry" :delay-duration="100">
|
||||||
|
<Tooltip>
|
||||||
|
<TooltipTrigger as-child>
|
||||||
|
<span class="inline-block cursor-not-allowed">
|
||||||
|
<DurationSecondsInput
|
||||||
|
:model-value="cell?.totalSeconds ?? 0"
|
||||||
|
disabled
|
||||||
|
default-unit="hours"
|
||||||
|
placeholder="-"
|
||||||
|
size="sm"
|
||||||
|
input-class="w-[80px] mx-auto text-center font-medium
|
||||||
|
bg-transparent text-text-primary placeholder:text-text-quaternary
|
||||||
|
rounded-lg border border-input-border shadow-none
|
||||||
|
pointer-events-none
|
||||||
|
disabled:opacity-50 disabled:cursor-not-allowed" />
|
||||||
|
</span>
|
||||||
|
</TooltipTrigger>
|
||||||
|
<TooltipContent> Stop the running time entry to edit the timesheet </TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>
|
||||||
|
<template v-else>
|
||||||
|
<span class="relative inline-flex items-center">
|
||||||
|
<DurationSecondsInput
|
||||||
|
:model-value="displaySeconds"
|
||||||
|
default-unit="hours"
|
||||||
|
placeholder="-"
|
||||||
|
size="sm"
|
||||||
|
:disabled="isSaving"
|
||||||
|
:input-class="inputClass"
|
||||||
|
@commit="(seconds) => emit('update', seconds ?? 0)" />
|
||||||
|
<span
|
||||||
|
v-if="saveStatus === 'saving' || saveStatus === 'saved'"
|
||||||
|
class="pointer-events-none absolute left-full top-1/2 ml-1.5 flex -translate-y-1/2 items-center"
|
||||||
|
:aria-label="saveStatus === 'saving' ? 'Saving' : 'Saved'">
|
||||||
|
<LoadingSpinner
|
||||||
|
v-if="saveStatus === 'saving'"
|
||||||
|
class="h-3 w-3 m-0 text-text-tertiary" />
|
||||||
|
<CheckIcon v-else class="h-3 w-3 text-text-tertiary" />
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
48
resources/js/Components/Timesheet/TimesheetFooterActions.vue
Normal file
48
resources/js/Components/Timesheet/TimesheetFooterActions.vue
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { Button } from '@/packages/ui/src/Buttons';
|
||||||
|
import {
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownMenuContent,
|
||||||
|
DropdownMenuItem,
|
||||||
|
DropdownMenuTrigger,
|
||||||
|
} from '@/packages/ui/src/dropdown-menu';
|
||||||
|
import LoadingSpinner from '@/packages/ui/src/LoadingSpinner.vue';
|
||||||
|
import { ChevronDownIcon, ClockIcon, ListBulletIcon } from '@heroicons/vue/20/solid';
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
busy: boolean;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
defineEmits<{
|
||||||
|
(e: 'copy-rows'): void;
|
||||||
|
(e: 'copy-with-time'): void;
|
||||||
|
}>();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="mt-2 flex items-center pl-4 pr-4">
|
||||||
|
<DropdownMenu>
|
||||||
|
<DropdownMenuTrigger as-child>
|
||||||
|
<Button variant="ghost" size="sm" :disabled="busy">
|
||||||
|
<LoadingSpinner v-if="busy" class="h-3.5 w-3.5 m-0" />
|
||||||
|
Copy last week
|
||||||
|
<ChevronDownIcon v-if="!busy" class="h-3.5 w-3.5 ml-1 text-icon-default" />
|
||||||
|
</Button>
|
||||||
|
</DropdownMenuTrigger>
|
||||||
|
<DropdownMenuContent align="start" class="min-w-[220px]">
|
||||||
|
<DropdownMenuItem
|
||||||
|
class="flex items-center space-x-3 cursor-pointer"
|
||||||
|
@click="$emit('copy-rows')">
|
||||||
|
<ListBulletIcon class="w-5 text-icon-default" />
|
||||||
|
<span>Copy rows only</span>
|
||||||
|
</DropdownMenuItem>
|
||||||
|
<DropdownMenuItem
|
||||||
|
class="flex items-center space-x-3 cursor-pointer"
|
||||||
|
@click="$emit('copy-with-time')">
|
||||||
|
<ClockIcon class="w-5 text-icon-default" />
|
||||||
|
<span>Copy rows and time entries</span>
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</DropdownMenuContent>
|
||||||
|
</DropdownMenu>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
171
resources/js/Components/Timesheet/TimesheetGrid.vue
Normal file
171
resources/js/Components/Timesheet/TimesheetGrid.vue
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { inject, type ComputedRef } from 'vue';
|
||||||
|
import { Button } from '@/packages/ui/src/Buttons';
|
||||||
|
import { PlusIcon } from '@heroicons/vue/20/solid';
|
||||||
|
import TimesheetRow from '@/Components/Timesheet/TimesheetRow.vue';
|
||||||
|
import TimeTrackerProjectTaskDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerProjectTaskDropdown.vue';
|
||||||
|
import { getDayJsInstance } from '@/packages/ui/src/utils/time';
|
||||||
|
import type {
|
||||||
|
Client,
|
||||||
|
CreateClientBody,
|
||||||
|
CreateProjectBody,
|
||||||
|
Organization,
|
||||||
|
Project,
|
||||||
|
Tag,
|
||||||
|
Task,
|
||||||
|
} from '@/packages/api/src';
|
||||||
|
import type { TimesheetRow as TimesheetRowType, TimesheetRowKey } from '@/utils/useTimesheetGrid';
|
||||||
|
import type { CellSaveStatus } from '@/utils/timesheet/useTimesheetCellMutations';
|
||||||
|
|
||||||
|
const organization = inject<ComputedRef<Organization>>('organization');
|
||||||
|
const dayjs = getDayJsInstance();
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
rows: TimesheetRowType[];
|
||||||
|
weekDays: string[];
|
||||||
|
todayDate: string;
|
||||||
|
dayTotals: number[];
|
||||||
|
weekTotalFormatted: string;
|
||||||
|
projects: Project[];
|
||||||
|
tasks: Task[];
|
||||||
|
clients: Client[];
|
||||||
|
tags: Tag[];
|
||||||
|
currency: string;
|
||||||
|
canCreateProject: boolean;
|
||||||
|
enableEstimatedTime: boolean;
|
||||||
|
createProject: (project: CreateProjectBody) => Promise<Project | undefined>;
|
||||||
|
createClient: (client: CreateClientBody) => Promise<Client | undefined>;
|
||||||
|
createTag: (name: string) => Promise<Tag | undefined>;
|
||||||
|
formatDuration: (seconds: number) => string;
|
||||||
|
cellStatuses: Record<string, CellSaveStatus>;
|
||||||
|
cellPendingSeconds: Record<string, number>;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'remove-row', key: TimesheetRowKey): void;
|
||||||
|
(e: 'cell-update', row: TimesheetRowType, dayIndex: number, seconds: number): void;
|
||||||
|
(
|
||||||
|
e: 'project-task-change',
|
||||||
|
row: TimesheetRowType,
|
||||||
|
projectId: string | null,
|
||||||
|
taskId: string | null
|
||||||
|
): void;
|
||||||
|
(e: 'billable-change', row: TimesheetRowType, billable: boolean): void;
|
||||||
|
(e: 'tags-change', row: TimesheetRowType, tags: string[]): void;
|
||||||
|
(e: 'add-row', projectId: string | null, taskId: string | null): void;
|
||||||
|
}>();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="flow-root max-w-[100vw] overflow-x-auto">
|
||||||
|
<div class="inline-block min-w-full align-middle">
|
||||||
|
<div
|
||||||
|
class="grid min-w-full w-max border-y border-default-background-separator"
|
||||||
|
style="
|
||||||
|
grid-template-columns:
|
||||||
|
minmax(420px, 1fr) repeat(7, minmax(116px, 120px)) minmax(100px, auto)
|
||||||
|
40px;
|
||||||
|
">
|
||||||
|
<!-- Header row -->
|
||||||
|
<div
|
||||||
|
class="bg-background dark:bg-secondary pl-7 pr-3 py-1 text-xs text-text-tertiary md:sticky md:left-0 md:z-10">
|
||||||
|
Project
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-for="day in weekDays"
|
||||||
|
:key="day"
|
||||||
|
class="bg-background dark:bg-secondary px-2 py-1 text-center">
|
||||||
|
<div class="text-xs font-medium text-text-secondary">
|
||||||
|
{{ dayjs(day).format('ddd D') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="bg-background dark:bg-secondary pl-3 pr-3 py-1 text-right text-xs text-text-tertiary">
|
||||||
|
Total
|
||||||
|
</div>
|
||||||
|
<div class="bg-background dark:bg-secondary"></div>
|
||||||
|
|
||||||
|
<!-- Data rows -->
|
||||||
|
<TimesheetRow
|
||||||
|
v-for="row in rows"
|
||||||
|
:key="row.key"
|
||||||
|
:row="row"
|
||||||
|
:week-days="weekDays"
|
||||||
|
:today-date="todayDate"
|
||||||
|
:projects="projects"
|
||||||
|
:tasks="tasks"
|
||||||
|
:clients="clients"
|
||||||
|
:tags="tags"
|
||||||
|
:currency="currency"
|
||||||
|
:can-create-project="canCreateProject"
|
||||||
|
:enable-estimated-time="enableEstimatedTime"
|
||||||
|
:create-project="createProject"
|
||||||
|
:create-client="createClient"
|
||||||
|
:create-tag="createTag"
|
||||||
|
:format-duration="formatDuration"
|
||||||
|
:cell-statuses="cellStatuses"
|
||||||
|
:cell-pending-seconds="cellPendingSeconds"
|
||||||
|
@remove-row="$emit('remove-row', $event)"
|
||||||
|
@cell-update="
|
||||||
|
(dayIndex, seconds) => $emit('cell-update', row, dayIndex, seconds)
|
||||||
|
"
|
||||||
|
@project-task-change="(pId, tId) => $emit('project-task-change', row, pId, tId)"
|
||||||
|
@billable-change="(billable) => $emit('billable-change', row, billable)"
|
||||||
|
@tags-change="(t) => $emit('tags-change', row, t)" />
|
||||||
|
|
||||||
|
<!-- Add row -->
|
||||||
|
<div
|
||||||
|
class="col-span-full flex items-center gap-2 border-t border-default-background-separator pl-4 pr-4 py-2">
|
||||||
|
<TimeTrackerProjectTaskDropdown
|
||||||
|
:project="null"
|
||||||
|
:task="null"
|
||||||
|
:projects="projects"
|
||||||
|
:tasks="tasks"
|
||||||
|
:clients="clients"
|
||||||
|
:currency="currency"
|
||||||
|
:can-create-project="canCreateProject"
|
||||||
|
:enable-estimated-time="enableEstimatedTime"
|
||||||
|
:create-project="createProject"
|
||||||
|
:create-client="createClient"
|
||||||
|
:organization-billable-rate="organization?.billable_rate ?? null"
|
||||||
|
:no-project-value="null"
|
||||||
|
align="start"
|
||||||
|
@changed="(p, t) => emit('add-row', p, t)">
|
||||||
|
<template #trigger>
|
||||||
|
<Button variant="ghost" size="sm" class="text-text-secondary">
|
||||||
|
<PlusIcon class="h-4 w-4 mr-1 text-icon-default" />
|
||||||
|
Add row
|
||||||
|
</Button>
|
||||||
|
</template>
|
||||||
|
</TimeTrackerProjectTaskDropdown>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Totals row -->
|
||||||
|
<div
|
||||||
|
class="border-t border-default-background-separator bg-background dark:bg-secondary pl-7 pr-3 py-1 text-xs text-text-tertiary md:sticky md:left-0 md:z-10">
|
||||||
|
Total
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-for="(total, dayIndex) in dayTotals"
|
||||||
|
:key="dayIndex"
|
||||||
|
data-testid="timesheet_day_total"
|
||||||
|
:class="[
|
||||||
|
'flex items-center justify-center border-t border-default-background-separator bg-background dark:bg-secondary px-2 py-1 text-xs font-medium',
|
||||||
|
weekDays[dayIndex] === todayDate
|
||||||
|
? 'text-text-primary'
|
||||||
|
: 'text-text-secondary',
|
||||||
|
]">
|
||||||
|
<span class="w-[80px] text-center">
|
||||||
|
{{ total > 0 ? formatDuration(total) : '-' }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="flex items-center justify-end border-t border-default-background-separator bg-background dark:bg-secondary pl-3 pr-3 py-1 text-xs font-semibold text-text-primary">
|
||||||
|
{{ weekTotalFormatted }}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="border-t border-default-background-separator bg-background dark:bg-secondary"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
60
resources/js/Components/Timesheet/TimesheetHeader.vue
Normal file
60
resources/js/Components/Timesheet/TimesheetHeader.vue
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { Button } from '@/packages/ui/src/Buttons';
|
||||||
|
import { ChevronLeftIcon, ChevronRightIcon, CalendarIcon } from '@heroicons/vue/20/solid';
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
isCurrentWeek: boolean;
|
||||||
|
weekNumber: number;
|
||||||
|
weekRangeDisplay: string;
|
||||||
|
weekTotalFormatted: string;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
defineEmits<{
|
||||||
|
(e: 'previous'): void;
|
||||||
|
(e: 'next'): void;
|
||||||
|
(e: 'current'): void;
|
||||||
|
}>();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="flex flex-wrap items-center justify-between gap-4 mb-4 px-2 sm:px-4 lg:px-6">
|
||||||
|
<!-- Left: Week navigation -->
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
size="icon"
|
||||||
|
class="h-8 w-8"
|
||||||
|
data-testid="timesheet_prev_week"
|
||||||
|
@click="$emit('previous')">
|
||||||
|
<ChevronLeftIcon class="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<button
|
||||||
|
data-testid="timesheet_week_display"
|
||||||
|
class="flex items-center gap-2 px-3 py-1.5 text-sm font-medium text-text-primary hover:bg-card-background rounded-md transition"
|
||||||
|
@click="$emit('current')">
|
||||||
|
<CalendarIcon class="h-4 w-4 text-icon-default" />
|
||||||
|
<span v-if="isCurrentWeek">This week</span>
|
||||||
|
<span v-else>{{ weekRangeDisplay }}</span>
|
||||||
|
<span class="text-text-tertiary">· W{{ weekNumber }}</span>
|
||||||
|
</button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
size="icon"
|
||||||
|
class="h-8 w-8"
|
||||||
|
data-testid="timesheet_next_week"
|
||||||
|
@click="$emit('next')">
|
||||||
|
<ChevronRightIcon class="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Right: Week total -->
|
||||||
|
<div class="flex items-center gap-2.5">
|
||||||
|
<span class="text-xs text-text-tertiary uppercase tracking-wider">Week Total</span>
|
||||||
|
<span
|
||||||
|
data-testid="timesheet_grand_total"
|
||||||
|
class="text-sm font-semibold text-text-primary">
|
||||||
|
{{ weekTotalFormatted }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
142
resources/js/Components/Timesheet/TimesheetRow.vue
Normal file
142
resources/js/Components/Timesheet/TimesheetRow.vue
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { computed, inject, type ComputedRef } from 'vue';
|
||||||
|
import { XMarkIcon } from '@heroicons/vue/16/solid';
|
||||||
|
import TimesheetCell from './TimesheetCell.vue';
|
||||||
|
import TimeTrackerProjectTaskDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerProjectTaskDropdown.vue';
|
||||||
|
import TimeEntryRowTagDropdown from '@/packages/ui/src/TimeEntry/TimeEntryRowTagDropdown.vue';
|
||||||
|
import BillableToggleButton from '@/packages/ui/src/Input/BillableToggleButton.vue';
|
||||||
|
import type {
|
||||||
|
CreateClientBody,
|
||||||
|
CreateProjectBody,
|
||||||
|
Project,
|
||||||
|
Task,
|
||||||
|
Client,
|
||||||
|
Tag,
|
||||||
|
Organization,
|
||||||
|
} from '@/packages/api/src';
|
||||||
|
import type { TimesheetRow, TimesheetRowKey } from '@/utils/useTimesheetGrid';
|
||||||
|
import {
|
||||||
|
makeCellStatusKey,
|
||||||
|
type CellSaveStatus,
|
||||||
|
} from '@/utils/timesheet/useTimesheetCellMutations';
|
||||||
|
import { Button } from '@/packages/ui/src/Buttons';
|
||||||
|
|
||||||
|
const organization = inject<ComputedRef<Organization>>('organization');
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
row: TimesheetRow;
|
||||||
|
weekDays: string[];
|
||||||
|
todayDate: string;
|
||||||
|
projects: Project[];
|
||||||
|
tasks: Task[];
|
||||||
|
clients: Client[];
|
||||||
|
tags: Tag[];
|
||||||
|
currency: string;
|
||||||
|
canCreateProject: boolean;
|
||||||
|
enableEstimatedTime: boolean;
|
||||||
|
createProject: (project: CreateProjectBody) => Promise<Project | undefined>;
|
||||||
|
createClient: (client: CreateClientBody) => Promise<Client | undefined>;
|
||||||
|
createTag: (name: string) => Promise<Tag | undefined>;
|
||||||
|
formatDuration: (seconds: number) => string;
|
||||||
|
cellStatuses: Record<string, CellSaveStatus>;
|
||||||
|
cellPendingSeconds: Record<string, number>;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
removeRow: [key: TimesheetRowKey];
|
||||||
|
cellUpdate: [dayIndex: number, newSeconds: number];
|
||||||
|
projectTaskChange: [projectId: string | null, taskId: string | null];
|
||||||
|
billableChange: [billable: boolean];
|
||||||
|
tagsChange: [tags: string[]];
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const selectedProject = computed({
|
||||||
|
get: () => props.row.projectId,
|
||||||
|
set: (val) => emit('projectTaskChange', val, selectedTask.value),
|
||||||
|
});
|
||||||
|
|
||||||
|
const selectedTask = computed({
|
||||||
|
get: () => props.row.taskId,
|
||||||
|
set: (val) => emit('projectTaskChange', selectedProject.value, val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const rowTotalFormatted = computed(() => props.formatDuration(props.row.totalSeconds));
|
||||||
|
|
||||||
|
function hasRunningEntry(dayIndex: number): boolean {
|
||||||
|
const cell = props.row.cells.get(dayIndex);
|
||||||
|
if (!cell) return false;
|
||||||
|
return cell.entries.some((e) => e.end === null);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div data-testid="timesheet_row" class="contents group">
|
||||||
|
<!-- Project/Task column -->
|
||||||
|
<div
|
||||||
|
class="flex items-center gap-1 border-t border-default-background-separator bg-default-background pl-4 pr-3 py-2 md:sticky md:left-0 md:z-10">
|
||||||
|
<div class="flex-1 min-w-0">
|
||||||
|
<TimeTrackerProjectTaskDropdown
|
||||||
|
v-model:project="selectedProject"
|
||||||
|
v-model:task="selectedTask"
|
||||||
|
:projects="projects"
|
||||||
|
:tasks="tasks"
|
||||||
|
:clients="clients"
|
||||||
|
:currency="currency"
|
||||||
|
:can-create-project="canCreateProject"
|
||||||
|
:enable-estimated-time="enableEstimatedTime"
|
||||||
|
:create-project="createProject"
|
||||||
|
:create-client="createClient"
|
||||||
|
:organization-billable-rate="organization?.billable_rate ?? null"
|
||||||
|
:no-project-value="null"
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
class="w-full" />
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-1 flex-shrink-0 ml-auto">
|
||||||
|
<TimeEntryRowTagDropdown
|
||||||
|
:create-tag="createTag"
|
||||||
|
:tags="tags"
|
||||||
|
:model-value="row.tags"
|
||||||
|
@changed="emit('tagsChange', $event)" />
|
||||||
|
<BillableToggleButton
|
||||||
|
:model-value="row.billable"
|
||||||
|
size="small"
|
||||||
|
faded
|
||||||
|
@changed="emit('billableChange', $event)" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Day cells -->
|
||||||
|
<TimesheetCell
|
||||||
|
v-for="(day, dayIndex) in weekDays"
|
||||||
|
:key="day"
|
||||||
|
:cell="row.cells.get(dayIndex)"
|
||||||
|
:day-index="dayIndex"
|
||||||
|
:date="day"
|
||||||
|
:is-today="day === todayDate"
|
||||||
|
:has-running-entry="hasRunningEntry(dayIndex)"
|
||||||
|
:save-status="cellStatuses[makeCellStatusKey(row.key, dayIndex)]"
|
||||||
|
:pending-seconds="cellPendingSeconds[makeCellStatusKey(row.key, dayIndex)]"
|
||||||
|
@update="(seconds) => emit('cellUpdate', dayIndex, seconds)" />
|
||||||
|
|
||||||
|
<!-- Row total -->
|
||||||
|
<div
|
||||||
|
data-testid="timesheet_row_total"
|
||||||
|
class="flex items-center justify-end border-t border-default-background-separator pl-3 pr-3 py-3 text-sm font-medium text-text-primary">
|
||||||
|
{{ rowTotalFormatted }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Remove action -->
|
||||||
|
<div
|
||||||
|
class="flex items-center justify-center border-t border-default-background-separator pr-4 py-3">
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Remove row"
|
||||||
|
class="h-6 w-6 flex-shrink-0 opacity-0 group-hover:opacity-100 transition-opacity"
|
||||||
|
@click="emit('removeRow', row.key)">
|
||||||
|
<XMarkIcon class="h-3.5 w-3.5 text-icon-default" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -10,7 +10,6 @@ import {
|
|||||||
} from '@/packages/ui/src';
|
} from '@/packages/ui/src';
|
||||||
import {
|
import {
|
||||||
UserCircleIcon,
|
UserCircleIcon,
|
||||||
KeyIcon,
|
|
||||||
ArrowLeftOnRectangleIcon,
|
ArrowLeftOnRectangleIcon,
|
||||||
ChatBubbleLeftRightIcon,
|
ChatBubbleLeftRightIcon,
|
||||||
} from '@heroicons/vue/24/solid';
|
} from '@heroicons/vue/24/solid';
|
||||||
@@ -19,12 +18,6 @@ import { openFeedback } from '@/utils/feedback';
|
|||||||
const page = usePage<{
|
const page = usePage<{
|
||||||
has_services_extension?: boolean;
|
has_services_extension?: boolean;
|
||||||
has_billing_extension?: boolean;
|
has_billing_extension?: boolean;
|
||||||
jetstream: {
|
|
||||||
canCreateTeams: boolean;
|
|
||||||
hasTeamFeatures: boolean;
|
|
||||||
managesProfilePhotos: boolean;
|
|
||||||
hasApiFeatures: boolean;
|
|
||||||
};
|
|
||||||
auth: {
|
auth: {
|
||||||
user: User & {
|
user: User & {
|
||||||
all_teams: Organization[];
|
all_teams: Organization[];
|
||||||
@@ -61,15 +54,6 @@ const logout = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
|
|
||||||
<DropdownMenuItem v-if="page.props.jetstream.hasApiFeatures" as-child>
|
|
||||||
<Link
|
|
||||||
:href="route('api-tokens.index')"
|
|
||||||
class="inline-flex items-center gap-2.5 w-full">
|
|
||||||
<KeyIcon class="w-5 h-5 text-icon-default" />
|
|
||||||
<span>API Tokens</span>
|
|
||||||
</Link>
|
|
||||||
</DropdownMenuItem>
|
|
||||||
|
|
||||||
<DropdownMenuItem v-if="page.props.has_services_extension" as-child>
|
<DropdownMenuItem v-if="page.props.has_services_extension" as-child>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { buttonVariants } from '@/packages/ui/src';
|
import { buttonVariants } from '@/packages/ui/src';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
import { AlertDialogAction, type AlertDialogActionProps } from 'reka-ui';
|
import { AlertDialogAction, type AlertDialogActionProps } from 'reka-ui';
|
||||||
import { computed, type HTMLAttributes } from 'vue';
|
import { computed, type HTMLAttributes } from 'vue';
|
||||||
import { cn } from '@/lib/utils';
|
|
||||||
const props = defineProps<AlertDialogActionProps & { class?: HTMLAttributes['class'] }>();
|
const props = defineProps<AlertDialogActionProps & { class?: HTMLAttributes['class'] }>();
|
||||||
|
|
||||||
const delegatedProps = computed(() => {
|
const delegatedProps = computed(() => {
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { buttonVariants } from '@/packages/ui/src';
|
import { buttonVariants } from '@/packages/ui/src';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
import { AlertDialogCancel, type AlertDialogCancelProps } from 'reka-ui';
|
import { AlertDialogCancel, type AlertDialogCancelProps } from 'reka-ui';
|
||||||
import { computed, type HTMLAttributes } from 'vue';
|
import { computed, type HTMLAttributes } from 'vue';
|
||||||
import { cn } from '@/lib/utils';
|
|
||||||
|
|
||||||
const props = defineProps<AlertDialogCancelProps & { class?: HTMLAttributes['class'] }>();
|
const props = defineProps<AlertDialogCancelProps & { class?: HTMLAttributes['class'] }>();
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import {
|
|||||||
UserGroupIcon,
|
UserGroupIcon,
|
||||||
XMarkIcon,
|
XMarkIcon,
|
||||||
DocumentTextIcon,
|
DocumentTextIcon,
|
||||||
|
TableCellsIcon,
|
||||||
} from '@heroicons/vue/20/solid';
|
} from '@heroicons/vue/20/solid';
|
||||||
import { PanelLeft } from '@lucide/vue';
|
import { PanelLeft } from '@lucide/vue';
|
||||||
import NavigationSidebarItem from '@/Components/NavigationSidebarItem.vue';
|
import NavigationSidebarItem from '@/Components/NavigationSidebarItem.vue';
|
||||||
@@ -135,7 +136,7 @@ const page = usePage<{
|
|||||||
? 'max-lg:translate-x-0 max-lg:shadow-xl'
|
? 'max-lg:translate-x-0 max-lg:shadow-xl'
|
||||||
: 'max-lg:-translate-x-full',
|
: 'max-lg:-translate-x-full',
|
||||||
]"
|
]"
|
||||||
class="flex-shrink-0 h-screen fixed w-[280px] px-2.5 py-4 hidden lg:flex flex-col justify-between bg-background border-r border-default-background-separator max-lg:z-50 max-lg:transition-transform max-lg:duration-200 max-lg:ease-in-out lg:w-[230px] 2xl:w-[250px] 2xl:px-3 lg:border-r-0"
|
class="flex-shrink-0 h-screen fixed w-[280px] px-2.5 py-4 hidden lg:flex flex-col justify-between bg-background border-r border-default-background-separator max-lg:z-50 max-lg:transition-transform max-lg:duration-200 max-lg:ease-in-out lg:w-[230px] lg:border-r-0"
|
||||||
:style="showSidebarMenu ? { display: 'flex' } : undefined">
|
:style="showSidebarMenu ? { display: 'flex' } : undefined">
|
||||||
<div class="flex flex-col h-full">
|
<div class="flex flex-col h-full">
|
||||||
<div
|
<div
|
||||||
@@ -185,6 +186,11 @@ const page = usePage<{
|
|||||||
:icon="CalendarIcon"
|
:icon="CalendarIcon"
|
||||||
:current="route().current('calendar')"
|
:current="route().current('calendar')"
|
||||||
:href="route('calendar')"></NavigationSidebarItem>
|
:href="route('calendar')"></NavigationSidebarItem>
|
||||||
|
<NavigationSidebarItem
|
||||||
|
title="Timesheet"
|
||||||
|
:icon="TableCellsIcon"
|
||||||
|
:current="route().current('timesheet')"
|
||||||
|
:href="route('timesheet')"></NavigationSidebarItem>
|
||||||
<NavigationSidebarItem
|
<NavigationSidebarItem
|
||||||
title="Reporting"
|
title="Reporting"
|
||||||
:icon="ChartBarIcon"
|
:icon="ChartBarIcon"
|
||||||
@@ -274,10 +280,15 @@ const page = usePage<{
|
|||||||
v-if="canUpdateOrganization()"
|
v-if="canUpdateOrganization()"
|
||||||
title="Settings"
|
title="Settings"
|
||||||
:icon="Cog6ToothIcon"
|
:icon="Cog6ToothIcon"
|
||||||
:href="route('teams.show', page.props.auth.user.current_team.id)"
|
:href="
|
||||||
|
route(
|
||||||
|
'organizations.show',
|
||||||
|
page.props.auth.user.current_team.id
|
||||||
|
)
|
||||||
|
"
|
||||||
:current="
|
:current="
|
||||||
route().current(
|
route().current(
|
||||||
'teams.show',
|
'organizations.show',
|
||||||
page.props.auth.user.current_team.id
|
page.props.auth.user.current_team.id
|
||||||
)
|
)
|
||||||
"></NavigationSidebarItem>
|
"></NavigationSidebarItem>
|
||||||
@@ -287,7 +298,7 @@ const page = usePage<{
|
|||||||
<div class="justify-self-end">
|
<div class="justify-self-end">
|
||||||
<UpdateSidebarNotification></UpdateSidebarNotification>
|
<UpdateSidebarNotification></UpdateSidebarNotification>
|
||||||
<ul
|
<ul
|
||||||
class="border-t border-default-background-separator pt-3 gap-1 pr-2 flex justify-between items-center">
|
class="border-t border-default-background-separator pt-3 gap-1 flex justify-between items-center">
|
||||||
<UserSettingsIcon></UserSettingsIcon>
|
<UserSettingsIcon></UserSettingsIcon>
|
||||||
|
|
||||||
<NavigationSidebarItem
|
<NavigationSidebarItem
|
||||||
@@ -308,7 +319,7 @@ const page = usePage<{
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1 lg:ml-[230px] 2xl:ml-[250px] min-w-0">
|
<div class="flex-1 lg:ml-[230px] min-w-0">
|
||||||
<div
|
<div
|
||||||
class="h-screen overflow-y-auto flex flex-col bg-default-background border-l border-default-background-separator">
|
class="h-screen overflow-y-auto flex flex-col bg-default-background border-l border-default-background-separator">
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import ApiTokenManager from '@/Pages/API/Partials/ApiTokenManager.vue';
|
|
||||||
import AppLayout from '@/Layouts/AppLayout.vue';
|
|
||||||
import type { Token } from '@/types/jetstream';
|
|
||||||
|
|
||||||
defineProps<{
|
|
||||||
tokens: Token[];
|
|
||||||
availablePermissions: string[];
|
|
||||||
defaultPermissions: string[];
|
|
||||||
}>();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<AppLayout title="API Tokens">
|
|
||||||
<template #header>
|
|
||||||
<h2 class="font-semibold text-xl text-text-primary leading-tight">API Tokens</h2>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
||||||
<ApiTokenManager
|
|
||||||
:tokens="tokens"
|
|
||||||
:available-permissions="availablePermissions"
|
|
||||||
:default-permissions="defaultPermissions" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</AppLayout>
|
|
||||||
</template>
|
|
||||||
@@ -1,263 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useForm, usePage } from '@inertiajs/vue3';
|
|
||||||
import ActionMessage from '@/Components/ActionMessage.vue';
|
|
||||||
import ActionSection from '@/Components/ActionSection.vue';
|
|
||||||
import Checkbox from '@/packages/ui/src/Input/Checkbox.vue';
|
|
||||||
import ConfirmationModal from '@/Components/ConfirmationModal.vue';
|
|
||||||
import DangerButton from '@/packages/ui/src/Buttons/DangerButton.vue';
|
|
||||||
import DialogModal from '@/packages/ui/src/DialogModal.vue';
|
|
||||||
import FormSection from '@/Components/FormSection.vue';
|
|
||||||
import { Field, FieldLabel, FieldError } from '@/packages/ui/src/field';
|
|
||||||
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
||||||
import SecondaryButton from '@/packages/ui/src/Buttons/SecondaryButton.vue';
|
|
||||||
import SectionBorder from '@/Components/SectionBorder.vue';
|
|
||||||
import TextInput from '@/packages/ui/src/Input/TextInput.vue';
|
|
||||||
import type { Token } from '@/types/jetstream';
|
|
||||||
|
|
||||||
const props = defineProps<{
|
|
||||||
tokens: Token[];
|
|
||||||
availablePermissions: string[];
|
|
||||||
defaultPermissions: string[];
|
|
||||||
}>();
|
|
||||||
|
|
||||||
const createApiTokenForm = useForm({
|
|
||||||
name: '',
|
|
||||||
permissions: props.defaultPermissions,
|
|
||||||
});
|
|
||||||
|
|
||||||
const page = usePage<{
|
|
||||||
jetstream: {
|
|
||||||
flash: {
|
|
||||||
token: string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}>();
|
|
||||||
|
|
||||||
const updateApiTokenForm = useForm<{
|
|
||||||
permissions: string[];
|
|
||||||
}>({
|
|
||||||
permissions: [],
|
|
||||||
});
|
|
||||||
|
|
||||||
const deleteApiTokenForm = useForm({});
|
|
||||||
|
|
||||||
const displayingToken = ref(false);
|
|
||||||
const managingPermissionsFor = ref<Token | null>(null);
|
|
||||||
const apiTokenBeingDeleted = ref<Token | null>(null);
|
|
||||||
|
|
||||||
const createApiToken = () => {
|
|
||||||
createApiTokenForm.post(route('api-tokens.store'), {
|
|
||||||
preserveScroll: true,
|
|
||||||
onSuccess: () => {
|
|
||||||
displayingToken.value = true;
|
|
||||||
createApiTokenForm.reset();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const manageApiTokenPermissions = (token: Token) => {
|
|
||||||
updateApiTokenForm.permissions = token.abilities;
|
|
||||||
managingPermissionsFor.value = token;
|
|
||||||
};
|
|
||||||
|
|
||||||
const updateApiToken = () => {
|
|
||||||
updateApiTokenForm.put(route('api-tokens.update', managingPermissionsFor.value?.id), {
|
|
||||||
preserveScroll: true,
|
|
||||||
preserveState: true,
|
|
||||||
onSuccess: () => (managingPermissionsFor.value = null),
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmApiTokenDeletion = (token: Token) => {
|
|
||||||
apiTokenBeingDeleted.value = token;
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteApiToken = () => {
|
|
||||||
deleteApiTokenForm.delete(route('api-tokens.destroy', apiTokenBeingDeleted.value?.id), {
|
|
||||||
preserveScroll: true,
|
|
||||||
preserveState: true,
|
|
||||||
onSuccess: () => (apiTokenBeingDeleted.value = null),
|
|
||||||
});
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!-- Generate API Token -->
|
|
||||||
<FormSection @submitted="createApiToken">
|
|
||||||
<template #title> Create API Token </template>
|
|
||||||
|
|
||||||
<template #description>
|
|
||||||
API tokens allow third-party services to authenticate with our application on your
|
|
||||||
behalf.
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #form>
|
|
||||||
<!-- Token Name -->
|
|
||||||
<Field class="col-span-6 sm:col-span-4">
|
|
||||||
<FieldLabel for="name">Name</FieldLabel>
|
|
||||||
<TextInput
|
|
||||||
id="name"
|
|
||||||
v-model="createApiTokenForm.name"
|
|
||||||
type="text"
|
|
||||||
class="block w-full"
|
|
||||||
autofocus />
|
|
||||||
<FieldError v-if="createApiTokenForm.errors.name">{{
|
|
||||||
createApiTokenForm.errors.name
|
|
||||||
}}</FieldError>
|
|
||||||
</Field>
|
|
||||||
|
|
||||||
<!-- Token Permissions -->
|
|
||||||
<div v-if="availablePermissions.length > 0" class="col-span-6">
|
|
||||||
<FieldLabel for="permissions">Permissions</FieldLabel>
|
|
||||||
|
|
||||||
<div class="mt-2 grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
||||||
<div v-for="permission in availablePermissions" :key="permission">
|
|
||||||
<label class="flex items-center">
|
|
||||||
<Checkbox
|
|
||||||
v-model:checked="createApiTokenForm.permissions"
|
|
||||||
:value="permission" />
|
|
||||||
<span class="ms-2 text-sm text-text-secondary">{{
|
|
||||||
permission
|
|
||||||
}}</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #actions>
|
|
||||||
<ActionMessage :on="createApiTokenForm.recentlySuccessful" class="me-3">
|
|
||||||
Created.
|
|
||||||
</ActionMessage>
|
|
||||||
|
|
||||||
<PrimaryButton
|
|
||||||
:class="{ 'opacity-25': createApiTokenForm.processing }"
|
|
||||||
:disabled="createApiTokenForm.processing">
|
|
||||||
Create
|
|
||||||
</PrimaryButton>
|
|
||||||
</template>
|
|
||||||
</FormSection>
|
|
||||||
|
|
||||||
<div v-if="tokens.length > 0">
|
|
||||||
<SectionBorder />
|
|
||||||
|
|
||||||
<!-- Manage API Tokens -->
|
|
||||||
<div class="mt-10 sm:mt-0">
|
|
||||||
<ActionSection>
|
|
||||||
<template #title> Manage API Tokens </template>
|
|
||||||
|
|
||||||
<template #description>
|
|
||||||
You may delete any of your existing tokens if they are no longer needed.
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<!-- API Token List -->
|
|
||||||
<template #content>
|
|
||||||
<div class="space-y-6">
|
|
||||||
<div
|
|
||||||
v-for="token in tokens"
|
|
||||||
:key="token.id"
|
|
||||||
class="flex items-center justify-between">
|
|
||||||
<div class="break-all text-text-primary">
|
|
||||||
{{ token.name }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex items-center ms-2">
|
|
||||||
<div v-if="token.last_used_ago" class="text-sm text-gray-400">
|
|
||||||
Last used {{ token.last_used_ago }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<button
|
|
||||||
v-if="availablePermissions.length > 0"
|
|
||||||
class="cursor-pointer ms-6 text-sm text-gray-400 underline"
|
|
||||||
@click="manageApiTokenPermissions(token)">
|
|
||||||
Permissions
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="cursor-pointer ms-6 text-sm text-red-500"
|
|
||||||
@click="confirmApiTokenDeletion(token)">
|
|
||||||
Delete
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</ActionSection>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Token Value Modal -->
|
|
||||||
<DialogModal :show="displayingToken" @close="displayingToken = false">
|
|
||||||
<template #title> API Token </template>
|
|
||||||
|
|
||||||
<template #content>
|
|
||||||
<div>
|
|
||||||
Please copy your new API token. For your security, it won't be shown again.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="page.props.jetstream.flash.token"
|
|
||||||
class="mt-4 bg-card-backgroundpx-4 py-2 rounded font-mono text-sm text-gray-500 break-all">
|
|
||||||
{{ page.props.jetstream.flash.token }}
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #footer>
|
|
||||||
<SecondaryButton @click="displayingToken = false"> Close </SecondaryButton>
|
|
||||||
</template>
|
|
||||||
</DialogModal>
|
|
||||||
|
|
||||||
<!-- API Token Permissions Modal -->
|
|
||||||
<DialogModal :show="managingPermissionsFor != null" @close="managingPermissionsFor = null">
|
|
||||||
<template #title> API Token Permissions </template>
|
|
||||||
|
|
||||||
<template #content>
|
|
||||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
||||||
<div v-for="permission in availablePermissions" :key="permission">
|
|
||||||
<label class="flex items-center">
|
|
||||||
<Checkbox
|
|
||||||
v-model:checked="updateApiTokenForm.permissions"
|
|
||||||
:value="permission" />
|
|
||||||
<span class="ms-2 text-sm text-muted">{{ permission }}</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #footer>
|
|
||||||
<SecondaryButton @click="managingPermissionsFor = null"> Cancel </SecondaryButton>
|
|
||||||
|
|
||||||
<PrimaryButton
|
|
||||||
class="ms-3"
|
|
||||||
:class="{ 'opacity-25': updateApiTokenForm.processing }"
|
|
||||||
:disabled="updateApiTokenForm.processing"
|
|
||||||
@click="updateApiToken">
|
|
||||||
Save
|
|
||||||
</PrimaryButton>
|
|
||||||
</template>
|
|
||||||
</DialogModal>
|
|
||||||
|
|
||||||
<!-- Delete Token Confirmation Modal -->
|
|
||||||
<ConfirmationModal
|
|
||||||
:show="apiTokenBeingDeleted != null"
|
|
||||||
@close="apiTokenBeingDeleted = null">
|
|
||||||
<template #title> Delete API Token </template>
|
|
||||||
|
|
||||||
<template #content> Are you sure you would like to delete this API token? </template>
|
|
||||||
|
|
||||||
<template #footer>
|
|
||||||
<SecondaryButton @click="apiTokenBeingDeleted = null"> Cancel </SecondaryButton>
|
|
||||||
|
|
||||||
<DangerButton
|
|
||||||
class="ms-3"
|
|
||||||
:class="{ 'opacity-25': deleteApiTokenForm.processing }"
|
|
||||||
:disabled="deleteApiTokenForm.processing"
|
|
||||||
@click="deleteApiToken">
|
|
||||||
Delete
|
|
||||||
</DangerButton>
|
|
||||||
</template>
|
|
||||||
</ConfirmationModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -30,9 +30,6 @@ const page = usePage<{
|
|||||||
terms_url: string | null;
|
terms_url: string | null;
|
||||||
privacy_policy_url: string | null;
|
privacy_policy_url: string | null;
|
||||||
newsletter_consent: boolean;
|
newsletter_consent: boolean;
|
||||||
jetstream: {
|
|
||||||
hasTermsAndPrivacyPolicyFeature: boolean;
|
|
||||||
};
|
|
||||||
flash: {
|
flash: {
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
@@ -117,11 +114,7 @@ const page = usePage<{
|
|||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="page.props.terms_url !== null && page.props.privacy_policy_url !== null"
|
||||||
page.props.jetstream.hasTermsAndPrivacyPolicyFeature &&
|
|
||||||
page.props.terms_url !== null &&
|
|
||||||
page.props.privacy_policy_url !== null
|
|
||||||
"
|
|
||||||
class="mt-4">
|
class="mt-4">
|
||||||
<Field orientation="horizontal">
|
<Field orientation="horizontal">
|
||||||
<Checkbox id="terms" v-model:checked="form.terms" name="terms" />
|
<Checkbox id="terms" v-model:checked="form.terms" name="terms" />
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user