Giter VIP home page Giter VIP logo

downtown65-app's People

Stargazers

 avatar

Watchers

 avatar  avatar

downtown65-app's Issues

PR removal error

Using stage: pr-1172653135
Preparing your SST app
Error: R] Could not resolve "@downtown65-app/common"

packages/infra/stacks/remix-stack.ts:1:39:
  1 │ import { getEnvironmentVariable } from '@downtown65-app/common'
    ╵                                        ~~~~~~~~~~~~~~~~~~~~~~~~

You can mark the path "@downtown65-app/common" as external to exclude it from the bundle, which will remove this error.

Error: R] Could not resolve "@downtown65-app/common"

packages/infra/stacks/config-stack.ts:1:39:
  1 │ import { getEnvironmentVariable } from '@downtown65-app/common'
    ╵                                        ~~~~~~~~~~~~~~~~~~~~~~~~

You can mark the path "@downtown65-app/common" as external to exclude it from the bundle, which will remove this error.

Build failed with 2 errors:
packages/infra/stacks/config-stack.ts:1:39: ERROR: Could not resolve "@downtown65-app/common"
packages/infra/stacks/remix-stack.ts:1:39: ERROR: Could not resolve "@downtown65-app/common"
Error: Process completed with exit code 1.

Profile save

Error: Unexpected Server Error
at handleDataRequestRR (/var/task/server.js:17334:35)
at requestHandler (/var/task/server.js:17274:22)
at Runtime.handler (/var/task/server.js:183113:22)

Update event

When updating event join/unjoin does nothing even if UI changes.

Navigate to login

Button is in loading state when navigating to Login page from header

Fix submitting spaces

Some how empty chars are translated to Null in Dynamo. Fix forms and everything related

Tiptap editor dependencies

Remove these when tiptop does not require these

"prosemirror-commands": "1.5.0",
"prosemirror-dropcursor": "1.6.1",
"prosemirror-gapcursor": "1.3.1",
"prosemirror-history": "1.3.0",
"prosemirror-keymap": "1.2.0",
"prosemirror-model": "1.19.0",
"prosemirror-schema-list": "1.2.2",
"prosemirror-state": "1.4.2",
"prosemirror-transform": "1.7.1",
"prosemirror-view": "1.30.0",

Mantine and renderToPipeableStream

Server streaming support

Mantine is based on emotion which currently does not support renderToPipeableStream, default Remix boilerplate will not support Mantine (and other component libraries based on css-in-js). It is important to replace your entry.server.tsx with code provided in this guide in order for server side rendering to work.

import { PassThrough } from 'node:stream'
import { injectStyles, createStylesServer } from '@mantine/remix'
import type { EntryContext } from '@remix-run/node'
import { Response } from '@remix-run/node'
import { RemixServer } from '@remix-run/react'
import { renderToPipeableStream } from 'react-dom/server'

const ABORT_DELAY = 5000

const server = createStylesServer()

export default function handleRequest(
  request: Request,
  responseStatusCode: number,
  responseHeaders: Headers,
  remixContext: EntryContext
) {
  return new Promise((resolve, reject) => {
    let didError = false

    const { pipe, abort } = renderToPipeableStream(
      <RemixServer context={remixContext} url={request.url} />,
      {
        onShellReady: () => {
          const body = new PassThrough()

          responseHeaders.set('Content-Type', 'text/html')

          resolve(
            new Response(body, {
              headers: responseHeaders,
              status: didError ? 500 : responseStatusCode,
            })
          )

          pipe(body)
        },
        onShellError: (error) => {
          reject(error)
        },
        onError: (error) => {
          didError = true

          console.error(error)
        },
      }
    )

    setTimeout(abort, ABORT_DELAY)
  })
}

Text error

When editing event and canceling: 'Keskeytä tapahtuman luonti'

isBot

investigate if this package is used

404 pages

404 pages appear as user is logged out.

useCatch() should somehow pass user to root

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.