Skip to content

Commit 4369ea3

Browse files
authored
Merge pull request #1025 from owlchester/dialog-update
Dialog update
2 parents 7e1db09 + 7534c38 commit 4369ea3

File tree

228 files changed

+835
-836
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+835
-836
lines changed

app/Http/Controllers/Api/v1/EntityTagApiController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function index(Campaign $campaign, Entity $entity)
1616
$this->authorize('access', $campaign);
1717
$this->authorize('view', $entity);
1818

19-
return Resource::collection($entity->tags()->paginate());
19+
return Resource::collection($entity->tags()->withPivot('id')->paginate());
2020
}
2121

2222
public function show(Campaign $campaign, Entity $entity, EntityTag $entityTag)

app/Http/Controllers/CrudController.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,13 @@ public function crudCreate($params = [])
352352
$params['title'] = __('crud.titles.new', ['module' => $singular]);
353353
}
354354

355-
return view('cruds.forms.create', array_merge(['name' => $this->view], $params));
355+
$view = 'cruds.forms.create';
356+
$override = $this->view . '.forms.create';
357+
if (view()->exists($override)) {
358+
$view = $override;
359+
}
360+
361+
return view($view, array_merge(['name' => $this->view], $params));
356362
}
357363

358364
public function crudStore(Request $request, bool $redirectToCreated = false)
@@ -518,7 +524,13 @@ public function crudEdit(Model|MiscModel $model)
518524
$params['entity'] = $model->entity;
519525
}
520526

521-
return view('cruds.forms.edit', $params);
527+
$view = 'cruds.forms.edit';
528+
$override = $this->view . '.forms.edit';
529+
if (view()->exists($override)) {
530+
$view = $override;
531+
}
532+
533+
return view($view, $params);
522534
}
523535

524536
/**

app/Http/Controllers/PresetController.php

+9
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ public function create(Campaign $campaign, PresetType $presetType)
4747
public function store(StorePreset $request, Campaign $campaign, PresetType $presetType)
4848
{
4949
$this->authorize('mapPresets', $campaign);
50+
if ($request->ajax()) {
51+
return response()->json(['success' => true]);
52+
}
5053

5154
$data = $request->only('name', 'config', 'visibility_id');
5255
$data['type_id'] = $presetType->id;
@@ -81,6 +84,9 @@ public function edit(Campaign $campaign, PresetType $presetType, Preset $preset)
8184
public function update(StorePreset $request, Campaign $campaign, PresetType $presetType, Preset $preset)
8285
{
8386
$this->authorize('mapPresets', $campaign);
87+
if ($request->ajax()) {
88+
return response()->json(['success' => true]);
89+
}
8490

8591
$data = $request->only('name', 'config', 'visibility_id');
8692
$preset->update($data);
@@ -99,6 +105,9 @@ public function update(StorePreset $request, Campaign $campaign, PresetType $pre
99105
public function destroy(Request $request, Campaign $campaign, PresetType $presetType, Preset $preset)
100106
{
101107
$this->authorize('mapPresets', $campaign);
108+
if ($request->ajax()) {
109+
return response()->json(['success' => true]);
110+
}
102111
$preset->delete();
103112

104113
[$route, $params] = $this->parseFrom($request);

app/Http/Resources/Api/EntityTagResource.php

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public function toArray(Request $request): array
1919
$model = $this->resource;
2020

2121
return [
22-
'id' => $model->id,
2322
'tag_id' => $model->tag_id,
2423
];
2524
}

app/Models/Concerns/Taggable.php

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public static function bootTaggable(): void
2727
public function tags(): BelongsToMany
2828
{
2929
return $this->belongsToMany(Tag::class, $this->getTagPivotTableName())
30-
->withPivot('id')
3130
->with('entity')
3231
->has('entity');
3332
}
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
namespace App\View\Components\Dialog;
4+
5+
use Closure;
6+
use Illuminate\Contracts\View\View;
7+
use Illuminate\View\Component;
8+
9+
class Article extends Component
10+
{
11+
/**
12+
* Create a new component instance.
13+
*/
14+
public function __construct()
15+
{
16+
//
17+
}
18+
19+
/**
20+
* Get the view / contents that represent the component.
21+
*/
22+
public function render(): View|Closure|string
23+
{
24+
return view('components.dialog.article');
25+
}
26+
}

lang/en/bookmarks.php

+9-4
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,14 @@
1212
],
1313
'fields' => [
1414
'active' => 'Active',
15-
'dashboard' => 'Dashboard',
15+
'dashboard' => 'Dashboard',
1616
'default_dashboard' => 'Default dashboard',
17-
'entity' => 'Entity',
1817
'filters' => 'Filters',
1918
'menu' => 'Subpage',
2019
'position' => 'Position',
21-
'random' => 'Random',
2220
'random_type' => 'Random Entity Type',
2321
'selector' => 'Bookmark Configuration',
2422
'target' => 'Target',
25-
'type' => 'Entity List',
2623
],
2724
'helpers' => [
2825
'active' => 'Inactive bookmarks won\'t appear in the interface.',
@@ -33,6 +30,7 @@
3330
'random' => 'Use this field to have a bookmark pointing to a random entity. You can filter the link to only go to a specific entity type.',
3431
'selector' => 'Configure where this bookmark goes when a user clicks on it in the sidebar.',
3532
'type' => 'Set up this bookmark to go directly to a list of entities. To filter the results, copy parts of the url on the filtered entity list after the :? sign into the :filter field.',
33+
'css' => 'Add a CSS class that will be added to the bookmark\'s link in the sidebar.',
3634
],
3735
'placeholders' => [
3836
'filters' => 'location_id=15&type=city',
@@ -50,4 +48,11 @@
5048
'visibilities' => [
5149
'is_active' => 'Show the bookmark in the sidebar',
5250
],
51+
'targets' => [
52+
'select' => 'Choose an option',
53+
'entity' => 'A single entity',
54+
'random' => 'A random entity',
55+
'type' => 'List of entities of a specific entity type/module',
56+
'dashboard' => 'One of the campaign\'s dashboards',
57+
]
5358
];

lang/en/entities/abilities.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
'left' => ':amount left',
1111
],
1212
'create' => [
13+
'helper' => 'Attach one of several abilities to :name.',
1314
'success' => 'Ability :ability added to :entity.',
1415
'success_multiple' => 'Abilities :abilities added to :entity.',
15-
'title' => 'Add abilities to :name',
16+
'title' => 'Add abilities',
1617
],
1718
'fields' => [
1819
'note' => 'Note',

lang/en/entities/aliases.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
'add' => 'Add an alias',
66
],
77
'create' => [
8+
'helper' => 'Create an alias for :name, which will make it findable in the global search and through :code mentions.',
89
'success' => 'Alias :name added to :entity.',
9-
'title' => 'Add an alias to :name',
10+
'title' => 'New alias',
1011
],
1112
'destroy' => [
1213
'success' => 'Alias :name removed.',
@@ -15,7 +16,7 @@
1516
'name' => 'Name',
1617
],
1718
'helpers' => [
18-
'primary' => 'Setting one or several aliases on the entity will make it findable in the global search (top bar) and through mentions.',
19+
'primary' => 'Setting one or several aliases on the entity will make it findable in the global search (top bar) and through :code mentions.',
1920
],
2021
'pitch' => 'Create aliases for this entity to easily find it through the search and through mentions.',
2122
'placeholders' => [

lang/en/entities/events.php

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22

33
return [
4+
'create' => [
5+
'helper' => 'Create a reminder to link :name to a calendar.',
6+
],
47
'fields' => [
58
'type' => 'Reminder Type',
69
],

lang/en/entities/files.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
'premium' => 'Uploading more files requires a premium campaign.',
77
],
88
'create' => [
9+
'helper' => 'Add a file to :name. The file will count towards your gallery storage limit.',
910
'success_plural' => '{1} File :name added.|[2,*] :count files added.',
10-
'title' => 'New file for :entity',
11+
'title' => 'New file',
1112
],
1213
'destroy' => [
1314
'success' => 'File :name removed.',

lang/en/entities/inventories.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
'copy_inventory' => 'Copy inventory',
88
],
99
'copy' => [
10-
'title' => 'Copy inventory to :name',
10+
'helper' => 'Copy the whole inventory of an entity to :name.',
1111
],
1212
'create' => [
1313
'success' => 'Item :item added to :entity.',
1414
'success_bulk' => '{0} No item added to :entity.|{1} Added :count item to :entity.|[2,*] Added :count items to :entity.',
15-
'title' => 'Add an Item to :name',
15+
'title' => 'Add to inventory',
16+
'helper' => 'Add an item to :name\'s inventory. It can optionally be linked to an existing object from the campaign.',
1617
],
1718
'default_position' => 'Unorganised',
1819
'destroy' => [

lang/en/entities/links.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
],
77
'call-to-action' => 'Add links to external resources on this entity, like to DnDBeyond, and they will display directly on the entity\'s overview.',
88
'create' => [
9+
'helper' => 'Add an external link to :name, for example to their DnDBeyond page.',
910
'success' => 'Link :name added to :entity.',
10-
'title' => 'Add a link to :name',
11+
'title' => 'New link',
1112
],
1213
'destroy' => [
1314
'success' => 'Link :name removed.',
@@ -27,7 +28,7 @@
2728
'title' => 'Leaving Kanka',
2829
],
2930
'helpers' => [
30-
'icon' => 'Replace the default icon with one of your choice. Find our more about available icons in our :docs.',
31+
'icon' => 'Customise the link icon with one from :fontawesome or :rpgawesome. Find our more about available icons in our :docs.',
3132
'parent' => 'Display this bookmark after an element of the sidebar, rather than in the bookmark section of the sidebar.',
3233
],
3334
'placeholders' => [

lang/en/entities/relations.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'create' => [
3333
'new_title' => 'New connection',
3434
'success_bulk' => '{1} Added :count connection to :entity.|[2,*] Added :count connections to :entity.',
35-
'title' => 'New connection for :name',
35+
'helper' => 'Create a connection between :name and one or several entities.'
3636
],
3737
'delete_mirrored' => [
3838
'helper' => 'This connection is mirrored on the target entity. Select this option to also remove the mirrored connection.',
@@ -59,6 +59,7 @@
5959
],
6060
'helper' => 'Set up connections between entities with attitudes and visibility. Connections can also be pinned to the entity\'s menu.',
6161
'helpers' => [
62+
'description' => 'Detail the nature of the connection between the two entities.',
6263
'no_relations' => 'This entity doesn\'t currently have any connection to other entities of the campaign.',
6364
'popup' => 'Entities of the campaign can be linked together using connections. These can have a description, an attitude rating, a visibility to control who sees a connection, and more.',
6465
],
@@ -69,7 +70,7 @@
6970
'title' => 'Mirrored',
7071
],
7172
'target_relation' => 'The connection description on the target. Leave blank to use this connection\'s text.',
72-
'two_way' => 'Create a connection on the selected target and mirror them. Updating a mirrored relation doesn\'t update the original connection.',
73+
'two_way' => 'Create a mirrored connection on the target entity. Updating a mirrored connection doesn\'t update the original connection.',
7374
],
7475
'index' => [
7576
'title' => 'Connections',

lang/en/entities/tags.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
return [
4+
'create' => [
5+
'title' => 'Tag an entity',
6+
'helper' => 'Add or remove tags on :name.',
7+
]
8+
];

lang/en/organisations.php

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'add_multiple' => 'Add members',
1818
],
1919
'create' => [
20+
'helper' => 'Add one or several members to :name.',
2021
'success_multiple' => '{1} Added :count member to :name.|[2,*] Added :count members to :name.',
2122
'title_multiple' => 'New Members',
2223
],

lang/en/settings/appearance.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
'date-format' => 'Date formatting',
3030
'editor' => 'Text editor',
3131
'entity-explore' => 'Entity lists',
32-
'mentions' => 'Mentions when editing',
32+
'mentions' => 'Mentions',
3333
'new-entity-workflow' => 'New entity workflow',
3434
'pagination' => 'Results per page',
3535
'theme' => 'Theme preference',

lang/en/subscriptions/faq.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Frequently Asked Questions',
55
'cost' => [
66
'question' => 'How much does a subscription cost?',
7-
'answer' => 'Kanka offers three subscription tiers named after D&D monsters: Owlbear, Wyvern, and Elemental. Pricing varies based on your preferred currency (USD, EUR, or BRL). You\'ll enjoy a 20% discount when choosing an annual subscription instead of monthly billing.'
7+
'answer' => 'Kanka offers three subscription tiers named after D&D monsters: Owlbear, Wyvern, and Elemental. Pricing varies based on your preferred currency (USD, EUR, or BRL). You\'ll enjoy two months for free when choosing an annual subscription instead of monthly billing.'
88
],
99
'methods' => [
1010
'question' => 'What payment methods are accepted?',
@@ -38,7 +38,7 @@
3838
],
3939
'discount' => [
4040
'question' => 'Are there any discounts for annual subscriptions?',
41-
'answer' => 'Yes! We reward our annual subscribers with a 20% discount compared to monthly billing. This is our way of thanking you for your long-term commitment to Kanka.',
41+
'answer' => 'Yes! We reward our annual subscribers with two months for free compared to monthly billing. This is our way of thanking you for your long-term commitment to Kanka.',
4242
],
4343
'sharing' => [
4444
'question' => 'Can I share my account/subscription with others?',

0 commit comments

Comments
 (0)