TyphonJS

T

TyphonJS

Join the community to ask questions about TyphonJS and get answers from other members.

Join

typhonjs-runtime

packages

TJSGameSettings getStore not saving properly?

I have a bizzare interaction right now with TJSGameSettings.getStore / getWritableStore. It gets updated, I even see in the console through game.settings.get that the setting has been "updated" Then I refresh and the changes made disappear. What gives?...

ProseMirror UUID discussion

Hi @Jons. I'd be glad to continue the discussion here. I don't see anything immediately that is related to the TJSProseMirror component. The actual editor and such is the Foundry implementation underneath. There are additional plugins and such added, but it's not clear yet if what you are doing in regard to interaction would hit any of the aspects added by TJSProseMirror Can you more specifically outline the problem that you are seeing and perhaps put some console.log statements in foundry-esm.js to verify the UUID being parsed. The drag and drop of documents into the editor when active should be something completely controlled by the underlying Foundry implementation....

TJSDocumentProperty Prototype

So I implemented a prototype of a custom store implementation that wraps a TJSDocument instance that allows dynamic store access to property accessors. TJSDocumentProperty is a complete Writable instance allowing update to be used when more complex modification is required for the underlying property; IE pushing to an array or modifying a nested object. I included TJSDocumentProperty as an attachment to this post. Also is a demo Svelte component that can be copied to BasicDocAppShell in essential-svelte-esm. This demo is what is shown in the video preview. Note: That I'm using the internal 0.2.0 pre-release code and likely there are modifications necessary to get this to work with 0.1.3 which likely has slightly different context callback data. Also note that the core v12 changes for renderContext are not normalized yet. TJSDocument will receive a facelift for the 0.2.0 release and quite likely a solution related to TJSDocumentProperty will be available built-in to TJSDocument...

TinyTJS Enriched options

So for the tinymce editor https://github.com/typhonjs-fvtt-lib/svelte-standard/blob/main/src/component/standard/editor/tinymce/TJSTinyMCE.svelte the repo shows that you can pass in options.enrichOptions. But in the browser enrichOptions doesn't exist that file.
No description

What's the best way to control default header items in a TJS application window?

I tried the ESM example: ```javascript <svelte:options accessors={true} /> <script>javascript...
No description

[vite] warning: Could not resolve import "#runtime/svelte/component/core"

I haven't seen this error before. WelcomeAppShell.svelte ```javascript import { ApplicationShell } from '#runtime/svelte/component/core';...

Correct way to have inputs show other data?

```js {#if updates.data.measureTemplate.color} <label for="colorOverride">{localizeFull("PF1.CustomColor")}</label> <div class="form-fields"> <input...

$actor.toObject() for a TJSDocument isn't reactive

I'm creating an actor in memory and assigning that to the TJSDocument on my application ```javascript export default class PCApplication extends SvelteApplication { /**...

v12 seems to break item reactivity for createFilterQuery

I've been trying out my system on v12. Something I notice is that some of my reactive components are no longer reactive. Specifically where I've used createFilterQuery. I don't get any errors but when the items in the wildcard list are changed, the view doesn't update. I mean the filter select still works reactively but if any of the values of the items in the list are altered, or if the core list changes (e.g. item is added or deleted from the original unfiltered list) those changes aren't reactively rendered. I don't understand why that might be but I've tested the same code in both v11 and v12 and it's working in v11....

How to avoid Foundry Globals from causing vite build warnings?

I'm getting a lot of warnings from vite-plugin-svelte for foundry globals like TextEditor.enrichHTML(item.system.description.value || '') . Any idea how I can make it ignore those or register them? E.g.: ``` 1:00:29 PM [vite-plugin-svelte] /Users/me/path/ItemGrant.svelte:35:153 'TextEditor' is not defined ...

Dynamic Imports work on dev server but not in build?

I'm having something weird. I'm doing dynamic async imports for certain dynamic components. It's working just find when run via a dev server (e.g. npm run dev) but once I build it, then the imports break. From the error message it seems that the import is done via URL, rather than via code. The URL exists and is browsable in the dev server, but not once built. Am I doing it wrong? Or are dynamic imports not available to the build?...

Can I use markdown with TJSProseMirror?

I.e. https://github.com/prosemirror/prosemirror-markdown and https://prosemirror.net/examples/markdown/ I notice that the text node in my journal's pages collection documents has a markdown key which is undefined. This suggests to me that it's supported – although I don't know how to enable it?...
No description

What's the TJS way to extend FormApplication?

Specifically I want a custom type to register a component via game.settings.register e.g. a multi-select or checkbox list. E.g. I currently have this: ```javascript game.settings.registerMenu(MODULE_ID, SettingKeys.SOURCES, {...

Global Arrays & Writable Stores

I currently have this set to use a settings array to use to pass data to the SanityApp and also check to see if the Application is live because the application is to close if the array is empty. It's "populating the app" part and checking if the array is empty part is working as intended, but the interval I have set up in the script of the SanityApp appears to not be working as it's not updating automatically. SanityApp and SanityApplication.js ```js import { SvelteApplication } from '#runtime/svelte/application'; import SanityApp from './templates/SanityApp.svelte'; import { FatesDescentRoll } from './FatesDescentRoll.js'; import { MODULE_ID } from './settings.js';...

dnd5e reactivity with race.advancement.byID

I'm having trouble when fetching a race byUuid with one particular reactive var: ```javascript const selectHandler = async (option) => { race = await fromUuid(option); console.log(source); //<-- works...

Application !Closing

Good day folk, first time Svelte app tinkerer here. I am having a little bit of an issue getting this app to close after either button is pressed. Any ideas where I am failing? ```html <script> import { createEventDispatcher } from 'svelte'; import { ApplicationShell } from '#runtime/svelte/component/core'; import { FatesDescentRoll } from '../FatesDescentRoll.js';...
No description

TRL `0.1.3` - v12 Hot Patch

Greets @FVTT ▹ Developer! I have just released a hot patch release that addresses the v12 Foundry update and fixes a few odds and ends. - Reactive embedded collections of TJSDocument continue to work on v12. - HMR for language files works again. - Default app position tweening reduced to 60ms....

Error in $doc.update()?

I'm not quite sure if I'm doing it wrong. The error I'm getting is: ``` foundry.js:13637 Uncaught (in promise) Error: You must provide an _id for every object in the update data Array. at #preUpdateDocumentArray (foundry.js:13637:32) at ClientDatabaseBackend._updateDocuments (foundry.js:13449:73)...

Rest & Recovery 5e

Just creating a forum post to chat about upgrading the Rest & Recovery 5e module to the latest TRL and future integration aspects w/ Tidy Sheets 5e. @Michael

local link of the runtime

Because the current runtime has some build issues and also because I am trying to debug something (i.e. application css overflow), I would like to be able to edit the runtime. I tried editing the runtime in node_modules but changes weren't seen (even after clearing vite-cache. Yarn offers yarn patch and yarn link which are potential solutions. However, when I tried to git clone [email protected]:typhonjs-fvtt-lib/typhonjs.git I got confused because it does not contain the same folders / files as in node_modules @typhonjs-fvtt/runtime. So the question is how do I get a local, editable copy of the runtime linked to my local module for debugging? ...