Skip to content

Export template partials #3630

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions resources/views/layouts/export.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
@include('exports.parts.custom-head')
</head>
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
@include('layouts.parts.export-body-start')
<div class="page-content">
@yield('content')
</div>
@include('layouts.parts.export-body-end')
</body>
</html>
2 changes: 2 additions & 0 deletions resources/views/layouts/parts/export-body-end.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{{-- This is a placeholder template file provided as a --}}
{{-- convenience to users of the visual theme system. --}}
2 changes: 2 additions & 0 deletions resources/views/layouts/parts/export-body-start.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{{-- This is a placeholder template file provided as a --}}
{{-- convenience to users of the visual theme system. --}}
21 changes: 20 additions & 1 deletion tests/ThemeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public function test_register_command_allows_provided_command_to_be_usable_via_a
$this->assertStringContainsString('Command ran!', $output);
}

public function test_body_start_and_end_template_files_can_be_used()
public function test_base_body_start_and_end_template_files_can_be_used()
{
$bodyStartStr = 'barry-fought-against-the-panther';
$bodyEndStr = 'barry-lost-his-fight-with-grace';
Expand All @@ -289,6 +289,25 @@ public function test_body_start_and_end_template_files_can_be_used()
});
}

public function test_export_body_start_and_end_template_files_can_be_used()
{
$bodyStartStr = 'barry-fought-against-the-panther';
$bodyEndStr = 'barry-lost-his-fight-with-grace';
/** @var Page $page */
$page = Page::query()->first();

$this->usingThemeFolder(function (string $folder) use ($bodyStartStr, $bodyEndStr, $page) {
$viewDir = theme_path('layouts/parts');
mkdir($viewDir, 0777, true);
file_put_contents($viewDir . '/export-body-start.blade.php', $bodyStartStr);
file_put_contents($viewDir . '/export-body-end.blade.php', $bodyEndStr);

$resp = $this->asEditor()->get($page->getUrl('/export/html'));
$resp->assertSee($bodyStartStr);
$resp->assertSee($bodyEndStr);
});
}

protected function usingThemeFolder(callable $callback)
{
// Create a folder and configure a theme
Expand Down