ente/web
Manav Rathi eecb8b70f4
[web][photos] Fix infinite loop on half-logins
Fix an infinite loop of navigation under the following conditions: key is valid
but token is not present.

Fix is to match the condition used in both gallery

    if (!key || !token) {

and the root page.

They seemed to have diverged in commit c3304571a9.

Was able to reproduce this when launching the desktop app such that the key was
picked up (possibly from a prior installation) from the secure keychain, but the
token was not found. I feel this is also a fix for a similar navigation loop
recently reported by QA but unreproducible so far.
2024-03-25 16:48:08 +05:30
..
apps [web][photos] Fix infinite loop on half-logins 2024-03-25 16:48:08 +05:30
docs Move out the electron-builder config to separate file 2024-03-19 19:17:01 +05:30
packages Prepare for test 2024-03-25 15:39:29 +05:30
scripts Update the documentation 2024-03-08 15:40:35 +05:30
.gitignore [desktop] Fix yarn build 2024-03-11 17:04:17 +05:30
.prettierignore Move into web/ 2024-03-01 12:21:07 +05:30
.prettierrc.json Move into web/ 2024-03-01 12:21:07 +05:30
crowdin.yml Crowdin project_id is already public 2024-03-04 12:54:49 +05:30
package.json [web] Remove Sentry 2024-03-12 13:24:33 +05:30
README.md Document the need for yarn classic 2024-03-08 13:11:04 +05:30
tsconfig.base.json Move into web/ 2024-03-01 12:21:07 +05:30
yarn.lock [web] Update yarn.lock 2024-03-19 11:24:42 +05:30

Ente's web apps

Source code for Ente's various web apps and supporting websites.

Live versions are at:

To know more about Ente, see our main README or visit ente.io.

Building from source

Fetch submodules

git submodule update --init --recursive

Install dependencies

yarn install

Start a local development server

yarn dev

That's it. The web app will automatically hot reload when you make changes.

If you're new to web development and unsure about how to get started, or are facing some problems when running the above steps, see docs/new.

Other apps

By default, yarn dev builds the Photos app. You can build the auth app by doing yarn dev:auth.

To see the full list of apps you can run (and other scripts that you can use), use yarn run.

For more details about development workflows, see docs/dev.

Directory structure

As a brief overview, this directory contains the following apps:

  • apps/photos: A fully functional web client for Ente Photos.
  • apps/auth: A view only client for Ente Auth. Currently you can only view your 2FA codes using this web app. For adding and editing your 2FA codes, please use the Ente Auth mobile/desktop app instead.

These two are the public facing apps. There are other part of the code which are accessed as features within the main apps, but in terms of code are independently maintained and deployed:

  • apps/accounts: Passkey support (Coming soon)
  • apps/cast: Chromecast support (Coming soon)

Note

This folder is supposed to contain all our web related code. Most of it is already here, but some code which is being deployed from our other repositories like the family portal (https://github.com/ente-io/families) still needs to be brought here. Also, some of the Cloudflare workers we use for fixing headers etc too. Hang tight, we're on it, will bring in the remaining bits one by one.

You might also find this overview of dependencies useful.

Attributions

City coordinates from Simple Maps

🌍 Translate

Crowdin

If you're interested in helping out with translation, please visit our Crowdin project to get started. Thank you for your support.

If your language is not listed for translation, please create a GitHub issue to have it added.

Contribute

For more ways to contribute, see ../CONTRIBUTING.md.