Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PWA Support #15759

Open
wants to merge 56 commits into
base: master
Choose a base branch
from
Open

PWA Support #15759

wants to merge 56 commits into from

Conversation

PClmnt
Copy link
Collaborator

@PClmnt PClmnt commented Mar 18, 2025

Description

Adds the ability to enable PWA apps for your Budibase application on Enterprise tier.

Addresses

https://linear.app/budibase/issue/BUDI-9178/pwa-support

Screenshots

Settings

Unlicensed

Install prompt web

Install prompt mobile

Icon on mobile home screen

Splash screen upon opening app

App opened

Install button on desktop

image

Installing via button on phone

qqqq.mov

Launchcontrol

  • Adds the ability to enable PWA support for Enterprise users

Feature branch env

Feature Branch Link

@PClmnt PClmnt added the feature-branch-enterprise Release this PR code into a feature branch with a Enterprise license label Mar 18, 2025
Copy link

qa-wolf bot commented Mar 18, 2025

QA Wolf here! As you write new code it's important that your test coverage is keeping up.
Click here to request test coverage for this PR!

@PClmnt PClmnt added feature-branch-enterprise Release this PR code into a feature branch with a Enterprise license and removed feature-branch-enterprise Release this PR code into a feature branch with a Enterprise license labels Mar 27, 2025
Copy link
Collaborator

@adrinr adrinr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, just a few comments here and there. I know this might be hard, but is there value adding some tests around it?

export async function enrichPWAImages(
images: PWAManifestImage[]
): Promise<PWAManifestImage[]> {
if (!images || images.length === 0) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parameter is not optional, so either this !images is not needed or we should make the param optional

@@ -12,7 +12,8 @@
export let extensions: string[] | undefined = undefined
export let error: string | undefined = undefined
export let title: string | undefined = undefined
export let value: File | undefined = undefined
export let value: File | { name: string; type: string } | undefined =
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This does not match the core one, as it does not have size. Is that needed?

}

async function handlePWAZip(file: File) {
if (!file) return
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this display an error?

@@ -243,8 +327,45 @@ export const serveApp = async function (ctx: UserCtx<void, ServeAppResponse>) {

const { head, html, css } = AppComponent.render({ props })
const appHbs = loadHandlebarsFile(appHbsPath)

let extraHead = ""
const pwaEnabled = true // await pro.features.isPWAEnabled()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be properly set

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't add the license on the feature branch right now as account portal has stopped deploys, so this is just temporary.

icon => icon.sizes === "1240x600" || icon.sizes === "2480x1200"
)
if (desktopScreenshot) {
manifest.screenshots?.push({
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will not push the object if screenshots is undefined. Is this what you are attempting?
Otherwise, you would need to ensure that manifest.screenshots exists: manifest.screenshots ??= []

@@ -57,7 +58,16 @@
<!-- svelte-ignore a11y-no-static-element-interactions -->
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div class="field">
{#if value}
{#if statusText}
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed a state for the File component where it didn't take a File type, just some text. And I thought this was cleaner than mixing types on the value prop.

Copy link
Member

@aptkingston aptkingston left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Client changes LGTM!

@@ -94,3 +94,21 @@ export function checkForCollectStep(automation: Automation) {
step => step.stepId === ActionStepID.COLLECT
)
}

export function rgbToHex(rgbStr: string | undefined): string {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might want to add this to BBUI helpers instead - there's already a hexToRGBA helper there, so this would make sense to go alongside it since it's the inverse.

@@ -34,6 +34,13 @@ import { APIClient } from "@budibase/frontend-core"
import BlockComponent from "./components/BlockComponent.svelte"
import Block from "./components/Block.svelte"

if (typeof window !== "undefined") {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks totally fine but I'd just add a one liner comment above this explaining whats happening 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-branch-enterprise Release this PR code into a feature branch with a Enterprise license size/l
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants