Chris Swithinbank

Results 225 comments of Chris Swithinbank

Hi thanks for the report! This looks like it's a new bug with React 18, right? I had no problem with create-react-app in the past. Any idea why this might...

No worries — if someone knows the answer, let me know! Otherwise I’ll try to make some time to investigate. The React client is relatively simple if someone wants to...

@lunedis As spectators are already allowed access (this issue is about restricting that access), some of this is already supported. All state is run through a game’s `playerView` function before...

@SamyGarib Good points. The spectators should support arbitrary `data` just like players. And I guess it might be helpful to have an `update-spectator` endpoint for updating that metadata equivalent to...

It should be possible to add an option to disable logs. The debug panel is the only core use of the logs, but that could be updated to only show...

@joepinion That code snippet actually isn’t run for moves at all, but for events that are called directly, like `client.events.endTurn()` as opposed to a `client.moves.someMove()` that calls `ctx.events.endTurn()` internally. I’m...

There’s no open issue regarding the VS Code set-up at the moment. If you have any questions, you can just post them here and then if you want to put...

For React, you should see the plugins data in props: ```jsx function Board(props) { return ( {JSON.stringify(props.plugins.A.data)} ); } ```

Thanks for this report. I think your usage is correct, but the typings for the `Server` function need to be updated to handle customised `ctx` types. A quick workaround may...

Agreed that these would be very helpful to add — I’m not even 100% clear on order myself.