-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds text block type to layouts (#30)
- Loading branch information
1 parent
860aeac
commit 137566a
Showing
4 changed files
with
120 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<script lang="ts"> | ||
import type { Monster } from "@types"; | ||
import type { TextItem } from "src/data/constants"; | ||
import { stringify } from "../utils"; | ||
import DiceHolder from "./DiceHolder.svelte"; | ||
import SectionHeading from "./SectionHeading.svelte"; | ||
export let monster: Monster; | ||
export let item: TextItem; | ||
let property = | ||
item.text && item.text.length | ||
? item.text | ||
: stringify(monster[item.properties[0]]); | ||
if (!item.conditioned && !`${property}`.length) { | ||
property = item.fallback ?? "-"; | ||
} | ||
</script> | ||
|
||
{#if !item.conditioned || (item.conditioned && `${property}`.length)} | ||
{#if item.heading} | ||
<SectionHeading header={item.heading} /> | ||
{/if} | ||
<div class="line"> | ||
<DiceHolder {property} /> | ||
</div> | ||
{/if} | ||
|
||
<style></style> |