Settings pages: - Redesign layout to match Sendkit (max-w-4xl, space-y-12, Separator sections) - Merge Members page into Workspace settings with Table, invite Dialog, ConfirmDeleteModal - Add workspace logo upload/delete routes and controller methods - Translate all hardcoded strings in Workspace.vue modals Language system: - Drop languages table, replace language_id FK with locale string column on users - Create config/languages.php for available languages and default locale - Add Spanish (es) translations (13 files) - Simplify HandleInertiaRequests, ProfileController, RegisteredUserController Code quality: - Add declare(strict_types=1) to all PHP files - Fix MastodonPublisher using wrong attribute (filename -> original_filename) - Fix HasMediaTest for new has_photo/photo_url accessors - Fix PublishToSocialPlatformTest type error revealed by strict_types - Remove orphaned Language model from AppServiceProvider morph map - Update User TypeScript interface (has_photo, photo_url, locale) - Eager load media relation on workspaces to prevent N+1 - Add 8 new tests for workspace logo upload/delete - Update workspace settings test to assert members/invitations props All 710 tests passing.
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Enums\Media\Type as MediaType;
|
|
use App\Models\Media;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<Media>
|
|
*/
|
|
class MediaFactory extends Factory
|
|
{
|
|
protected $model = Media::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'collection' => 'default',
|
|
'type' => MediaType::Image,
|
|
'path' => 'media/'.now()->format('Y-m').'/'.$this->faker->uuid().'.jpg',
|
|
'original_filename' => $this->faker->word().'.jpg',
|
|
'mime_type' => 'image/jpeg',
|
|
'size' => $this->faker->numberBetween(10000, 5000000),
|
|
'order' => 0,
|
|
'meta' => [
|
|
'width' => 1920,
|
|
'height' => 1080,
|
|
],
|
|
];
|
|
}
|
|
|
|
public function video(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'type' => MediaType::Video,
|
|
'path' => 'media/'.now()->format('Y-m').'/'.$this->faker->uuid().'.mp4',
|
|
'original_filename' => $this->faker->word().'.mp4',
|
|
'mime_type' => 'video/mp4',
|
|
'meta' => [
|
|
'duration' => $this->faker->numberBetween(10, 300),
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function logo(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'collection' => 'logo',
|
|
]);
|
|
}
|
|
|
|
public function avatar(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'collection' => 'avatar',
|
|
]);
|
|
}
|
|
}
|