From fab062b0fe5c03486b6560b190d7fae97d94aca4 Mon Sep 17 00:00:00 2001 From: Nariman Jelveh Date: Sat, 2 Aug 2025 15:12:23 -0700 Subject: [PATCH] Add the workers and websites tabs --- src/dev-center/css/style.css | 30 +- src/dev-center/img/website-white.svg | 3 + src/dev-center/img/website.svg | 3 + src/dev-center/index.html | 57 +- src/dev-center/js/apps.js | 2718 ++++++++++++++++ src/dev-center/js/dev-center.js | 2853 +---------------- src/dev-center/js/{ => libs}/html-entities.js | 0 .../js/{ => libs}/jquery-3.6.0.min.js | 0 .../js/{ => libs}/jquery.dragster.js | 0 src/dev-center/js/{ => libs}/slugify.js | 0 src/dev-center/js/websites.js | 4 + src/dev-center/js/workers.js | 63 + 12 files changed, 2932 insertions(+), 2799 deletions(-) create mode 100644 src/dev-center/img/website-white.svg create mode 100644 src/dev-center/img/website.svg create mode 100644 src/dev-center/js/apps.js rename src/dev-center/js/{ => libs}/html-entities.js (100%) rename src/dev-center/js/{ => libs}/jquery-3.6.0.min.js (100%) rename src/dev-center/js/{ => libs}/jquery.dragster.js (100%) rename src/dev-center/js/{ => libs}/slugify.js (100%) create mode 100644 src/dev-center/js/websites.js create mode 100644 src/dev-center/js/workers.js diff --git a/src/dev-center/css/style.css b/src/dev-center/css/style.css index 0924b882f..73f461c90 100644 --- a/src/dev-center/css/style.css +++ b/src/dev-center/css/style.css @@ -227,14 +227,14 @@ section { padding-left: 20px; box-sizing: border-box; } -#app-list{ +#app-list, #website-list, #worker-list { display: none; } -#app-list-table > thead{ +#app-list-table > thead, #website-list-table > thead, #worker-list-table > thead{ font-size:14px; background-color: #f7fafc; border-top: 1px solid #DDD; text-transform: uppercase; color: #6d767d; cursor: default; } -.app-card { +.app-card, .website-card, .worker-card { padding: 12px; border-top: 1px solid #d8dce5; border-radius: 0; @@ -245,33 +245,33 @@ section { } -.app-card:hover { +.app-card:hover, .website-card:hover, .worker-card:hover { background-color: #e8eff66e; } -.app-card.active { +.app-card.active, .website-card.active, .worker-card.active { background-color: #e8eff6; } -.app-card:hover .app-row-toolbar { +.app-card:hover .app-row-toolbar, .website-card:hover .website-row-toolbar, .worker-card:hover .worker-row-toolbar { visibility: visible; opacity: 1; } -.app-toolbar-container { +.app-toolbar-container, .website-toolbar-container, .worker-toolbar-container { height: 16px; overflow: hidden; position: relative; } -.app-card h1 { +.app-card h1, .website-card h1, .worker-card h1 { margin-top: 0; color: #657188; font-weight: 400; font-size: 25px; } -#create-app-success { +#create-app-success, #create-website-success, #create-worker-success { height: calc(100vh - 40px); overflow: hidden; text-align: center; @@ -286,7 +286,7 @@ label, input[type="text"] { user-select: none; } -#delete-app { +#delete-app, #delete-website, #delete-worker { cursor: pointer; float: left; margin-top: 30px; @@ -294,7 +294,7 @@ label, input[type="text"] { font-size: 13px; } -#delete-app:hover { +#delete-app:hover, #delete-website:hover, #delete-worker:hover { text-decoration: underline; } @@ -568,6 +568,14 @@ label { .tab-btn[data-tab="apps"] { background-image: url(../img/apps-outline-black.svg); } + +.tab-btn[data-tab="websites"] { + background-image: url(../img/website.svg); +} +.tab-btn.active[data-tab="websites"] { + background-image: url(../img/website-white.svg); +} + .tab-btn[data-tab="workers"] { background-image: url(../img/workers.svg); } diff --git a/src/dev-center/img/website-white.svg b/src/dev-center/img/website-white.svg new file mode 100644 index 000000000..7ef28b1af --- /dev/null +++ b/src/dev-center/img/website-white.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/dev-center/img/website.svg b/src/dev-center/img/website.svg new file mode 100644 index 000000000..5dcc7b279 --- /dev/null +++ b/src/dev-center/img/website.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/dev-center/index.html b/src/dev-center/index.html index b3ec46ac3..c0ac90dc2 100644 --- a/src/dev-center/index.html +++ b/src/dev-center/index.html @@ -78,8 +78,9 @@ -
-

My Workers

-
+
+

My Workers

+ + +
- - - - - +
+ + +
+ + +
+ + + + + + + + + + + + +
WorkerDeployed
+
+ + + + +
+

My Websites

+
+ + + + + + + + + + + diff --git a/src/dev-center/js/apps.js b/src/dev-center/js/apps.js new file mode 100644 index 000000000..3c86d521a --- /dev/null +++ b/src/dev-center/js/apps.js @@ -0,0 +1,2718 @@ +let source_path +let apps = []; +let sortBy = 'created_at'; +let sortDirection = 'desc'; +let currently_editing_app; +let dropped_items; +let search_query; +let originalValues = {}; + +const APP_CATEGORIES = [ + { id: 'games', label: 'Games' }, + { id: 'developer-tools', label: 'Developer Tools' }, + { id: 'photo-video', label: 'Photo & Video' }, + { id: 'productivity', label: 'Productivity' }, + { id: 'utilities', label: 'Utilities' }, + { id: 'education', label: 'Education' }, + { id: 'business', label: 'Business' }, + { id: 'social', label: 'Social' }, + { id: 'graphics-design', label: 'Graphics & Design' }, + { id: 'music-audio', label: 'Music & Audio' }, + { id: 'news', label: 'News' }, + { id: 'entertainment', label: 'Entertainment' }, + { id: 'finance', label: 'Finance' }, + { id: 'health-fitness', label: 'Health & Fitness' }, + { id: 'lifestyle', label: 'Lifestyle' }, +]; + +const deploying_spinner = ``; +const loading_spinner = ``; +const drop_area_placeholder = `

Drop your app folder and files here to deploy.

HTML, JS, CSS, ...

`; +const index_missing_error = `Please upload an 'index.html' file or if you're uploading a directory, make sure it contains an 'index.html' file at its root.`; +const lock_svg = ` `; +const lock_svg_tippy = ` `; + +const copy_svg = ` `; + +async function init_apps() { + setTimeout(async function () { + puter.ui.onLaunchedWithItems(async function (items) { + source_path = items[0].path; + // if source_path is provided, this means that the user is creating a new app/updating an existing app + // by deploying an existing Puter folder. So we create the app and deploy it. + if (source_path) { + // todo if there are no apps, go straight to creating a new app + $('.insta-deploy-modal').get(0).showModal(); + // set item name + $('.insta-deploy-item-name').html(html_encode(items[0].name)); + } + }) + + // Get dev profile. This is only for puter.com for now as we don't have dev profiles in self-hosted Puter + if(domain === 'puter.com'){ + puter.apps.getDeveloperProfile(async function (dev_profile) { + window.developer = dev_profile; + if (dev_profile.approved_for_incentive_program && !dev_profile.joined_incentive_program) { + $('#join-incentive-program').show(); + } + + // show earn money c2a only if dev is not approved for incentive program or has already joined + if (!dev_profile.approved_for_incentive_program || dev_profile.joined_incentive_program) { + puter.kv.get('earn-money-c2a-closed').then((value) => { + if (value?.result || value === true || value === "true") + return; + + $('#earn-money').get(0).showModal(); + }); + } + + // show payout method tab if dev has joined incentive program + if (dev_profile.joined_incentive_program) { + $('.tab-btn[data-tab="payout-method"]').show(); + $('#payout-method-email').html(dev_profile.paypal); + } + }) + } + // Get apps + puter.apps.list({ icon_size: 64 }).then((resp) => { + apps = resp; + + // hide loading + puter.ui.hideSpinner(); + + // set apps + if (apps.length > 0) { + if (window.activeTab === 'apps') { + $('#no-apps-notice').hide(); + $('#app-list').show(); + } + $('.app-card').remove(); + apps.forEach(app => { + $('#app-list-table > tbody').append(generate_app_card(app)); + }); + count_apps(); + sort_apps(); + activate_tippy(); + } else { + $('#no-apps-notice').show(); + } + }) + }, 1000); + +} + + +/** + * Refreshes the list of apps in the UI. + * + * @param {boolean} [show_loading=false] - Whether to show a loading indicator while refreshing. + * + */ + +window.refresh_app_list = (show_loading = false) => { + if (show_loading) + puter.ui.showSpinner(); + // get apps + setTimeout(function () { + // uncheck the select all checkbox + $('.select-all-apps').prop('checked', false); + + puter.apps.list({ icon_size: 64 }).then((apps_res) => { + puter.ui.hideSpinner(); + apps = apps_res; + if (apps.length > 0) { + if (window.activeTab === 'apps') { + $('#no-apps-notice').hide(); + $('#app-list').show(); + } + $('.app-card').remove(); + apps.forEach(app => { + $('#app-list-table > tbody').append(generate_app_card(app)); + }); + count_apps(); + sort_apps(); + } else { + $('#no-apps-notice').show(); + $('#app-list').hide() + } + activate_tippy(); + }) + }, show_loading ? 1000 : 0); +} + +$(document).on('click', '.create-an-app-btn', async function (e) { + let title = await puter.ui.prompt('Please enter a title for your app:', 'My Awesome App'); + + if (title.length > 60) { + puter.ui.alert(`Title cannot be longer than 60.`, [ + { + label: 'Ok', + }, + ]); + // todo go back to create an app prompt and prefill the title input with the title the user entered + return; + } + else if (title) { + create_app(title); + } +}) + +async function create_app(title, source_path = null, items = null) { + // name + let name = slugify(title, { + lower: true, + strict: true, + }); + + // icon + let icon = await getBase64ImageFromUrl('./img/app.svg'); + + // open the 'Creting new app...' modal + let start_ts = Date.now(); + + puter.ui.showSpinner(); + + //---------------------------------------------------- + // Create app + //---------------------------------------------------- + puter.apps.create({ + title: title, + name: name, + indexURL: 'https://dev-center.puter.com/coming-soon.html', + icon: icon, + description: ' ', + maximizeOnStart: false, + background: false, + dedupeName: true, + metadata: { + window_resizable: true, + fullpage_on_landing: true, + }, + + }) + .then(async (app) => { + let app_dir; + // ---------------------------------------------------- + // Create app directory in AppData + // ---------------------------------------------------- + app_dir = await puter.fs.mkdir( + `/${auth_username}/AppData/${dev_center_uid}/${app.uid}`, + { overwrite: true, recursive: true, rename: false } + ); + // ---------------------------------------------------- + // Create a router for the app with a fresh hostname + // ---------------------------------------------------- + let subdomain = name + '-' + Math.random().toString(36).substring(2) + await puter.hosting.create(subdomain, app_dir.path); + + // ---------------------------------------------------- + // Update the app with the new hostname + // ---------------------------------------------------- + puter.apps.update(app.name, { + title: title, + indexURL: source_path ? protocol + `://${subdomain}.` + static_hosting_domain : 'https://dev-center.puter.com/coming-soon.html', + icon: icon, + description: ' ', + maximizeOnStart: false, + background: false, + metadata: { + category: null, // default category on creation + window_resizable: true, + fullpage_on_landing: true, + } +}).then(async (app) => { + // refresh app list + puter.apps.list({ icon_size: 64 }).then(async (resp) => { + apps = resp; + // Close the 'Creting new app...' modal + // but make sure it was shown for at least 2 seconds + setTimeout(() => { + // open edit app section + edit_app_section(app.name); + refresh_app_list(); // ✅ Refreshes main app list + + // set drop area if source_path was provided or items were dropped + if (source_path || items) { + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + } + puter.ui.hideSpinner(); + // deploy app if source_path was provided + if (source_path) { + deploy(app, source_path); + } else if (items) { + deploy(app, items); + } + activate_tippy(); + }, (Date.now() - start_ts) > 2000 ? 1 : 2000 - (Date.now() - start_ts)); + }) + }).catch(async (err) => { + console.log(err); + }) + // ---------------------------------------------------- + // Create a "shortcut" on the desktop + // ---------------------------------------------------- + puter.fs.upload(new File([], app.title), + `/${auth_username}/Desktop`, + { + name: app.title, + dedupeName: true, + overwrite: false, + appUID: app.uid, + } + ) + }).catch(async (err) => { + $('#create-app-error').show(); + $('#create-app-error').html(err.message); + // scroll to top so that user sees error message + document.body.scrollTop = document.documentElement.scrollTop = 0; + }) +} + +$(document).on('click', '.deploy-btn', function (e) { + deploy(currently_editing_app, dropped_items); +}) + +$(document).on('click', '.edit-app, .got-to-edit-app', function (e) { + const cur_app_name = $(this).attr('data-app-name') + edit_app_section(cur_app_name); +}) + +$(document).on('click', '.delete-app', async function (e) { + let app_uid = $(this).attr('data-app-uid'); + let app_title = $(this).attr('data-app-title'); + let app_name = $(this).attr('data-app-name'); + + // get app + const app_data = await puter.apps.get(app_name, { icon_size: 16 }); + + if(app_data.metadata?.locked){ + puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ + { + label: 'Ok', + }, + ], { + type: 'warning', + }); + return; + } + + // confirm delete + const alert_resp = await puter.ui.alert(`Are you sure you want to premanently delete ${html_encode(app_title)}?`, + [ + { + label: 'Yes, delete permanently', + value: 'delete', + type: 'danger', + }, + { + label: 'Cancel' + }, + ] + ); + + if (alert_resp === 'delete') { + let init_ts = Date.now(); + puter.ui.showSpinner(); + puter.apps.delete(app_name).then(async (app) => { + setTimeout(() => { + puter.ui.hideSpinner(); + $(`.app-card[data-uid="${app_uid}"]`).fadeOut(200, function name(params) { + $(this).remove(); + if ($(`.app-card`).length === 0) { + $('section:not(.sidebar)').hide(); + $('#no-apps-notice').show(); + } else { + $('section:not(.sidebar)').hide(); + $('#app-list').show(); + } + count_apps(); + }); + }, + // make sure the modal was shown for at least 2 seconds + (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); + + // get app directory + puter.fs.stat({ + path: `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + returnSubdomains: true, + }).then(async (stat) => { + // delete subdomain associated with the app dir + puter.hosting.delete(stat.subdomains[0].subdomain) + // delete app directory + puter.fs.delete( + `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + { recursive: true } + ) + }) + }).catch(async (err) => { + setTimeout(() => { + puter.ui.hideSpinner(); + puter.ui.alert(err?.message, [ + { + label: 'Ok', + }, + ]); + }, + // make sure the modal was shown for at least 2 seconds + (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); + }) + } +}) + +// generate app link +function applink(app) { + return protocol + `://${domain}${ port ? ':' + port : '' }/app/${app.name}`; +} + +/** + * Generates the HTML for the app editing section. + * + * @param {Object} app - The app object containing details of the app to be edited. + * * + * @returns {string} HTML string for the app editing section. + * + * @description + * This function creates the HTML for the app editing interface, including: + * - App icon and title display + * - Options to open, add to desktop, or delete the app + * - Tabs for deployment and settings + * - Form fields for editing various app properties + * - Display of app statistics + * + * The generated HTML includes interactive elements and placeholders for + * dynamic content to be filled or updated by other functions. + * + * @example + * const appEditHTML = generate_edit_app_section(myAppObject); + * $('#edit-app').html(appEditHTML); + */ + +function generate_edit_app_section(app) { + if(app.result) + app = app.result; + + let maximize_on_start = app.maximize_on_start ? 'checked' : ''; + + let h = ``; + h += ` +
+
+ +

${html_encode(app.title)}${app.metadata?.locked ? lock_svg_tippy : ''}

+
+ Open + + Add Shortcut to Desktop + + Delete +
+ ${html_encode(applink(app))} +
+ +
+ + + +
+
+ New version deployed successfully 🎉× +

Give it a try!

+
+
${drop_area_placeholder}
+ +
+ +
+
+
+
App has been successfully updated.× +

Give it a try!

+
+ + +

Basic

+ + + + + + + + + + +
+ ${copy_svg} +
+ + +
+
Change App Icon
+
+ Remove icon + + ${generateSocialImageSection(app)} + + + + + + + +

A list of file type specifiers. For example if you include .txt your apps could be opened when a user clicks on a TXT file.

+

You can paste multiple extensions at once (comma, space, or tab separated) or press comma to add each extension.

+ + +

Window

+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + + +
+ +
+ + + + +
+ +
+ + +
+ +
+ + +
+ +

Misc

+
+ + +

When enabled, the app cannot be deleted. This is useful for preventing accidental deletion of important apps.

+
+ +
+ + +
+
+
+
+ + +
+
+

Users

+
+
+
+

Opens

+
+
+
+
+

Timezone: UTC

+

More analytics features coming soon...

+
+ ` + return h; +} + +/* This function keeps track of the original values of the app before it is edited*/ +function trackOriginalValues(){ + originalValues = { + title: $('#edit-app-title').val(), + name: $('#edit-app-name').val(), + indexURL: $('#edit-app-index-url').val(), + description: $('#edit-app-description').val(), + icon: $('#edit-app-icon').attr('data-base64'), + fileAssociations: $('#edit-app-filetype-associations').val(), + category: $('#edit-app-category').val(), + socialImage: $('#edit-app-social-image').attr('data-base64'), + windowSettings: { + width: $('#edit-app-window-width').val(), + height: $('#edit-app-window-height').val(), + top: $('#edit-app-window-top').val(), + left: $('#edit-app-window-left').val() + }, + checkboxes: { + maximizeOnStart: $('#edit-app-maximize-on-start').is(':checked'), + background: $('#edit-app-background').is(':checked'), + resizableWindow: $('#edit-app-window-resizable').is(':checked'), + hideTitleBar: $('#edit-app-hide-titlebar').is(':checked'), + locked: $('#edit-app-locked').is(':checked'), + fullPageOnLanding: $('#edit-app-fullpage-on-landing').is(':checked') + } + }; +} + +/* This function compares for all fields and checks if anything has changed from before editting*/ +function hasChanges() { + // is icon changed + if($('#edit-app-icon').attr('data-base64') !== originalValues.icon){ + return true; + } + + // if social image is changed + if($('#edit-app-social-image').attr('data-base64') !== originalValues.socialImage){ + return true; + } + + // if any of the fields have changed + return( + $('#edit-app-title').val() !== originalValues.title || + $('#edit-app-name').val() !== originalValues.name || + $('#edit-app-index-url').val() !== originalValues.indexURL || + $('#edit-app-description').val() !== originalValues.description || + $('#edit-app-icon').attr('data-base64') !== originalValues.icon || + $('#edit-app-filetype-associations').val() !== originalValues.fileAssociations || + $('#edit-app-category').val() !== originalValues.category || + $('#edit-app-social-image').attr('data-base64') !== originalValues.socialImage || + $('#edit-app-window-width').val() !== originalValues.windowSettings.width || + $('#edit-app-window-height').val() !== originalValues.windowSettings.height || + $('#edit-app-window-top').val() !== originalValues.windowSettings.top || + $('#edit-app-window-left').val() !== originalValues.windowSettings.left || + $('#edit-app-maximize-on-start').is(':checked') !== originalValues.checkboxes.maximizeOnStart || + $('#edit-app-background').is(':checked') !== originalValues.checkboxes.background || + $('#edit-app-window-resizable').is(':checked') !== originalValues.checkboxes.resizableWindow || + $('#edit-app-hide-titlebar').is(':checked') !== originalValues.checkboxes.hideTitleBar || + $('#edit-app-locked').is(':checked') !== originalValues.checkboxes.locked || + $('#edit-app-fullpage-on-landing').is(':checked') !== originalValues.checkboxes.fullPageOnLanding + ); +} + +/* This function enables or disables the save button if there are any changes made */ +function toggleSaveButton() { + if (hasChanges()) { + $('.edit-app-save-btn').prop('disabled', false); + } else { + $('.edit-app-save-btn').prop('disabled', true); + } +} + +/* This function enables or disables the reset button if there are any changes made */ +function toggleResetButton() { + if (hasChanges()) { + $('.edit-app-reset-btn').prop('disabled', false); + } else { + $('.edit-app-reset-btn').prop('disabled', true); + } +} + +window.reset_drop_area = () => { + dropped_items = null; + $('.drop-area').html(drop_area_placeholder); + $('.drop-area').removeClass('drop-area-ready-to-deploy'); + $('.deploy-btn').addClass('disabled'); +} + +/* This function revers the changes made back to the original values of the edit form */ +function resetToOriginalValues() { + $('#edit-app-title').val(originalValues.title); + $('#edit-app-name').val(originalValues.name); + $('#edit-app-index-url').val(originalValues.indexURL); + $('#edit-app-description').val(originalValues.description); + $('#edit-app-filetype-associations').val(originalValues.fileAssociations); + $('#edit-app-category').val(originalValues.category); + $('#edit-app-window-width').val(originalValues.windowSettings.width); + $('#edit-app-window-height').val(originalValues.windowSettings.height); + $('#edit-app-window-top').val(originalValues.windowSettings.top); + $('#edit-app-window-left').val(originalValues.windowSettings.left); + $('#edit-app-maximize-on-start').prop('checked', originalValues.checkboxes.maximizeOnStart); + $('#edit-app-background').prop('checked', originalValues.checkboxes.background); + $('#edit-app-window-resizable').prop('checked', originalValues.checkboxes.resizableWindow); + $('#edit-app-hide-titlebar').prop('checked', originalValues.checkboxes.hideTitleBar); + $('#edit-app-locked').prop('checked', originalValues.checkboxes.locked); + $('#edit-app-fullpage-on-landing').prop('checked', originalValues.checkboxes.fullPageOnLanding); + + if (originalValues.icon) { + $('#edit-app-icon').css('background-image', `url(${originalValues.icon})`); + $('#edit-app-icon').attr('data-url', originalValues.icon); + $('#edit-app-icon').attr('data-base64', originalValues.icon); + $('#edit-app-icon-delete').show(); + } else { + $('#edit-app-icon').css('background-image', ''); + $('#edit-app-icon').removeAttr('data-url'); + $('#edit-app-icon').removeAttr('data-base64'); + $('#edit-app-icon-delete').hide(); + } + + if (originalValues.socialImage) { + $('#edit-app-social-image').css('background-image', `url(${originalValues.socialImage})`); + $('#edit-app-social-image').attr('data-url', originalValues.socialImage); + $('#edit-app-social-image').attr('data-base64', originalValues.socialImage); + } else { + $('#edit-app-social-image').css('background-image', ''); + $('#edit-app-social-image').removeAttr('data-url'); + $('#edit-app-social-image').removeAttr('data-base64'); + } +} + +async function edit_app_section(cur_app_name, tab = 'deploy') { + $('section:not(.sidebar)').hide(); + $('.tab-btn').removeClass('active'); + $('.tab-btn[data-tab="apps"]').addClass('active'); + + let cur_app = await puter.apps.get(cur_app_name, {icon_size: 128, stats_period: 'today'}); + + currently_editing_app = cur_app; + + // generate edit app section + $('#edit-app').html(generate_edit_app_section(cur_app)); + trackOriginalValues(); // Track initial field values + toggleSaveButton(); // Ensure Save button is initially disabled + toggleResetButton(); // Ensure Reset button is initially disabled + $('#edit-app').show(); + + // analytics + $('#analytics-users .count').html(cur_app.stats.user_count); + $('#analytics-opens .count').html(cur_app.stats.open_count); + + render_analytics('today') + + // show the correct tab + $('.section-tab').hide(); + $(`.section-tab[data-tab="${tab}"]`).show(); + $('.section-tab-buttons .section-tab-btn').removeClass('active'); + $(`.section-tab-buttons .section-tab-btn[data-tab="${tab}"]`).addClass('active'); + + const filetype_association_input = document.querySelector('textarea[id=edit-app-filetype-associations]'); + let tagify = new Tagify(filetype_association_input, { + pattern: /\.(?:[a-z0-9]+)|(?:[a-z]+\/(?:[a-z0-9.-]+|\*))/, + delimiters: ",", // Use comma as delimiter + duplicates: false, // Prevent duplicate tags + enforceWhitelist: false, + dropdown : { + // show the dropdown immediately on focus (0 character typed) + enabled: 0, + }, + whitelist: [ + // MIME type patterns + "text/*", "image/*", "audio/*", "video/*", "application/*", + + // Documents + ".doc", ".docx", ".pdf", ".txt", ".odt", ".rtf", ".tex", ".md", ".pages", ".epub", ".mobi", ".azw", ".azw3", ".djvu", ".xps", ".oxps", ".fb2", ".textile", ".markdown", ".asciidoc", ".rst", ".wpd", ".wps", ".abw", ".zabw", + + // Spreadsheets + ".xls", ".xlsx", ".csv", ".ods", ".numbers", ".tsv", ".gnumeric", ".xlt", ".xltx", ".xlsm", ".xltm", ".xlam", ".xlsb", + + // Presentations + ".ppt", ".pptx", ".key", ".odp", ".pps", ".ppsx", ".pptm", ".potx", ".potm", ".ppam", + + // Images + ".jpg", ".jpeg", ".png", ".gif", ".bmp", ".tiff", ".tif", ".svg", ".webp", ".ico", ".psd", ".ai", ".eps", ".raw", ".cr2", ".nef", ".orf", ".sr2", ".heic", ".heif", ".avif", ".jxr", ".hdp", ".wdp", ".jng", ".xcf", ".pgm", ".pbm", ".ppm", ".pnm", + + // Video + ".mp4", ".avi", ".mov", ".wmv", ".mkv", ".flv", ".webm", ".m4v", ".mpeg", ".mpg", ".3gp", ".3g2", ".ogv", ".vob", ".drc", ".gifv", ".mng", ".qt", ".yuv", ".rm", ".rmvb", ".asf", ".amv", ".m2v", ".svi", + + // Audio + ".mp3", ".wav", ".aac", ".flac", ".ogg", ".m4a", ".wma", ".aiff", ".alac", ".ape", ".au", ".mid", ".midi", ".mka", ".pcm", ".ra", ".ram", ".snd", ".wv", ".opus", + + // Code/Development + ".js", ".ts", ".html", ".css", ".json", ".xml", ".php", ".py", ".java", ".cpp", ".c", ".cs", ".h", ".hpp", ".hxx", ".rs", ".go", ".rb", ".pl", ".swift", ".kt", ".kts", ".scala", ".coffee", ".sass", ".scss", ".less", ".jsx", ".tsx", ".vue", ".sh", ".bash", ".zsh", ".fish", ".ps1", ".bat", ".cmd", ".sql", ".r", ".dart", ".f", ".f90", ".for", ".lua", ".m", ".mm", ".clj", ".erl", ".ex", ".exs", ".elm", ".hs", ".lhs", ".lisp", ".ml", ".mli", ".nim", ".pl", ".rkt", ".v", ".vhd", + + // Archives + ".zip", ".rar", ".7z", ".tar", ".gz", ".bz2", ".xz", ".z", ".lz", ".lzma", ".tlz", ".txz", ".tgz", ".tbz2", ".bz", ".br", ".lzo", ".ar", ".cpio", ".shar", ".lrz", ".lz4", ".lz2", ".rz", ".sfark", ".sz", ".zoo", + + // Database + ".db", ".sql", ".sqlite", ".sqlite3", ".dbf", ".mdb", ".accdb", ".db3", ".s3db", ".dbx", + + // Fonts + ".ttf", ".otf", ".woff", ".woff2", ".eot", ".pfa", ".pfb", ".sfd", + + // CAD and 3D + ".dwg", ".dxf", ".stl", ".obj", ".fbx", ".dae", ".3ds", ".blend", ".max", ".ma", ".mb", ".c4d", ".skp", ".usd", ".usda", ".usdc", ".abc", + + // Scientific/Technical + ".mat", ".fig", ".nb", ".cdf", ".fits", ".fts", ".fit", ".gmsh", ".msh", ".fem", ".neu", ".hdf", ".h5", ".nx", ".unv", + + // System + ".exe", ".dll", ".so", ".dylib", ".app", ".dmg", ".iso", ".img", ".bin", ".msi", ".apk", ".ipa", ".deb", ".rpm", + + // Directory + ".directory" + ], + }) + + // -------------------------------------------------------- + // Dragster + // -------------------------------------------------------- + let drop_area_content = drop_area_placeholder; + + $('.drop-area').dragster({ + enter: function (dragsterEvent, event) { + drop_area_content = $('.drop-area').html(); + $('.drop-area').addClass('drop-area-hover'); + $('.drop-area').html(drop_area_placeholder); + }, + leave: function (dragsterEvent, event) { + $('.drop-area').html(drop_area_content); + $('.drop-area').removeClass('drop-area-hover'); + }, + drop: async function (dragsterEvent, event) { + const e = event.originalEvent; + e.stopPropagation(); + e.preventDefault(); + + // hide previous success message + $('.deploy-success-msg').fadeOut(); + + // remove hover class + $('.drop-area').removeClass('drop-area-hover'); + + //---------------------------------------------------- + // Puter items dropped + //---------------------------------------------------- + if (e.detail?.items?.length > 0) { + let items = e.detail.items; + + // ---------------------------------------------------- + // One Puter file dropped + // ---------------------------------------------------- + if (items.length === 1 && !items[0].isDirectory) { + if (items[0].name.toLowerCase() === 'index.html') { + dropped_items = items[0].path; + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + drop_area_content = `

index.html

Ready to deploy 🚀

Cancel

`; + $('.drop-area').html(drop_area_content); + + // enable deploy button + $('.deploy-btn').removeClass('disabled'); + + } else { + puter.ui.alert(`You need to have an index.html file in your deployment.`, [ + { + label: 'Ok', + }, + ]); + $('.drop-area').removeClass('drop-area-ready-to-deploy'); + $('.deploy-btn').addClass('disabled'); + dropped_items = []; + } + return; + } + // ---------------------------------------------------- + // Multiple Puter files dropped + // ---------------------------------------------------- + else if (items.length > 1) { + let hasIndexHtml = false; + for (let item of items) { + if (item.name.toLowerCase() === 'index.html') { + hasIndexHtml = true; + break; + } + } + + if (hasIndexHtml) { + dropped_items = items; + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + drop_area_content = `

${items.length} items

Ready to deploy 🚀

Cancel

`; + $('.drop-area').html(drop_area_content); + + // enable deploy button + $('.deploy-btn').removeClass('disabled'); + } else { + puter.ui.alert(`You need to have an index.html file in your deployment.`, [ + { + label: 'Ok', + }, + ]); + $('.drop-area').removeClass('drop-area-ready-to-deploy'); + $('.drop-area').removeClass('drop-area-hover'); + $('.deploy-btn').addClass('disabled'); + dropped_items = []; + } + return; + } + // ---------------------------------------------------- + // One Puter directory dropped + // ---------------------------------------------------- + else if (items.length === 1 && items[0].isDirectory) { + let children = await puter.fs.readdir(items[0].path); + // check if index.html exists, if found, deploy entire directory + for (let child of children) { + if (child.name === 'index.html') { + // deploy(currently_editing_app, items[0].path); + dropped_items = items[0].path; + let rootItems = ''; + + if (children.length === 1) + rootItems = children[0].name; + else if (children.length === 2) + rootItems = children[0].name + ', ' + children[1].name; + else if (children.length === 3) + rootItems = children[0].name + ', ' + children[1].name + ', and' + children[1].name; + else if (children.length > 3) + rootItems = children[0].name + ', ' + children[1].name + ', and ' + (children.length - 2) + ' more item' + (children.length - 2 > 1 ? 's' : ''); + + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + drop_area_content = `

${rootItems}

Ready to deploy 🚀

Cancel

`; + $('.drop-area').html(drop_area_content); + + // enable deploy button + $('.deploy-btn').removeClass('disabled'); + return; + } + } + + // no index.html in directory + puter.ui.alert(index_missing_error, [ + { + label: 'Ok', + }, + ]); + $('.drop-area').removeClass('drop-area-ready-to-deploy'); + $('.deploy-btn').addClass('disabled'); + dropped_items = []; + } + + return false; + } + + //----------------------------------------------------------------------------- + // Local items dropped + //----------------------------------------------------------------------------- + if (!e.dataTransfer || !e.dataTransfer.items || e.dataTransfer.items.length === 0) + return; + + // get dropped items + dropped_items = await puter.ui.getEntriesFromDataTransferItems(e.dataTransfer.items); + + // generate a flat array of full paths from the dropped items + let paths = []; + for (let item of dropped_items) { + paths.push('/' + (item.fullPath ?? item.filepath)); + } + + // generate a directory tree from the paths + let tree = generateDirTree(paths); + + dropped_items = setRootDirTree(tree, dropped_items); + + // alert if no index.html in root + if (!hasRootIndexHtml(tree)) { + puter.ui.alert(index_missing_error, [ + { + label: 'Ok', + }, + ]); + $('.drop-area').removeClass('drop-area-ready-to-deploy'); + $('.deploy-btn').addClass('disabled'); + dropped_items = []; + return; + } + + // Get all keys (directories and files) in the root + const rootKeys = Object.keys(tree); + + // generate a list of items in the root in the form of a string (e.g. /index.html, /css/style.css) with maximum of 3 items + let rootItems = ''; + + if (rootKeys.length === 1) + rootItems = rootKeys[0]; + else if (rootKeys.length === 2) + rootItems = rootKeys[0] + ', ' + rootKeys[1]; + else if (rootKeys.length === 3) + rootItems = rootKeys[0] + ', ' + rootKeys[1] + ', and' + rootKeys[1]; + else if (rootKeys.length > 3) + rootItems = rootKeys[0] + ', ' + rootKeys[1] + ', and ' + (rootKeys.length - 2) + ' more item' + (rootKeys.length - 2 > 1 ? 's' : ''); + + rootItems = html_encode(rootItems); + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + drop_area_content = `

${rootItems}

Ready to deploy 🚀

Cancel

`; + $('.drop-area').html(drop_area_content); + + // enable deploy button + $('.deploy-btn').removeClass('disabled'); + + return false; + } + }); + + // Focus on the first input + $('#edit-app-title').focus(); + + try { + activate_tippy(); + } catch (e) { + console.log('no tippy:', e); + } + + // Custom function to handle bulk pasting of file extensions + if (tagify) { + // Create a completely separate paste handler + const handleBulkPaste = function(e) { + const clipboardData = e.clipboardData || window.clipboardData; + if (!clipboardData) return; + + const pastedText = clipboardData.getData('text'); + if (!pastedText) return; + + // Check if the pasted text contains delimiters + if (/[,;\t\s]/.test(pastedText)) { + e.stopPropagation(); + e.preventDefault(); + + // Process the pasted text to extract extensions + const extensions = pastedText.split(/[,;\t\s]+/) + .map(ext => ext.trim()) + .filter(ext => ext && (ext.startsWith('.') || ext.includes('/'))); + + if (extensions.length > 0) { + // Get existing values to prevent duplicates + const existingValues = tagify.value.map(tag => tag.value); + + // Only add extensions that don't already exist + const newExtensions = extensions.filter(ext => !existingValues.includes(ext)); + + if (newExtensions.length > 0) { + // Add the new tags + tagify.addTags(newExtensions); + + // Update the UI + setTimeout(() => { + toggleSaveButton(); + toggleResetButton(); + }, 10); + } + } + + // Clear the input element to prevent any text concatenation + setTimeout(() => { + if (tagify.DOM.input) { + tagify.DOM.input.textContent = ''; + } + }, 10); + } + }; + + // Add the paste handler directly to the tagify wrapper element + const tagifyWrapper = tagify.DOM.scope; + if (tagifyWrapper) { + tagifyWrapper.addEventListener('paste', handleBulkPaste, true); + } + + // Also add it to the input element for better coverage + if (tagify.DOM.input) { + tagify.DOM.input.addEventListener('paste', handleBulkPaste, true); + } + + // Add a comma key handler to support adding tags with comma + tagify.DOM.input.addEventListener('keydown', function(e) { + if (e.key === ',' && tagify.DOM.input.textContent.trim()) { + e.preventDefault(); + + const text = tagify.DOM.input.textContent.trim(); + + // Only add valid extensions + if ((text.startsWith('.') || text.includes('/')) && + tagify.settings.pattern.test(text)) { + + // Check for duplicates + const existingValues = tagify.value.map(tag => tag.value); + + if (!existingValues.includes(text)) { + tagify.addTags([text]); + + // Update UI + setTimeout(() => { + toggleSaveButton(); + toggleResetButton(); + }, 10); + } + + // Always clear the input + tagify.DOM.input.textContent = ''; + } + } + }); + } +} + +$(document).on('click', '.edit-app-save-btn', async function (e) { + const title = $('#edit-app-title').val(); + const name = $('#edit-app-name').val(); + const index_url = $('#edit-app-index-url').val(); + const description = $('#edit-app-description').val(); + const uid = $('#edit-app-uid').val(); + const height = $('#edit-app-window-height').val(); + const width = $('#edit-app-window-width').val(); + const top = $('#edit-app-window-top').val(); + const left = $('#edit-app-window-left').val(); + const category = $('#edit-app-category').val(); + + let filetype_associations = $('#edit-app-filetype-associations').val(); + + let icon; + + let error; + + //validation + if (title === '') + error = `Title is required.`; + else if (title.length > 60) + error = `Title cannot be longer than ${60}.`; + else if (name === '') + error = `Name is required.`; + else if (name.length > 60) + error = `Name cannot be longer than ${60}.`; + else if (index_url === '') + error = `Index URL is required.`; + else if (!name.match(/^[a-zA-Z0-9-_-]+$/)) + error = `Name can only contain letters, numbers, dash (-) and underscore (_).`; + else if (!is_valid_url(index_url)) + error = `Index URL must be a valid url.`; + else if (!index_url.toLowerCase().startsWith('https://') && !index_url.toLowerCase().startsWith('http://')) + error = `Index URL must start with 'https://' or 'http://'.`; + // height must be a number + else if (isNaN(height)) + error = `Window Height must be a number.`; + // height must be greater than 0 + else if (height <= 0) + error = `Window Height must be greater than 0.`; + // width must be a number + else if (isNaN(width)) + error = `Window Width must be a number.`; + // width must be greater than 0 + else if (width <= 0) + error = `Window Width must be greater than 0.`; + // top must be a number + else if (top && isNaN(top)) + error = `Window Top must be a number.`; + // left must be a number + else if (left && isNaN(left)) + error = `Window Left must be a number.`; + + // download icon from URL + else { + let icon_url = $('#edit-app-icon').attr('data-url'); + let icon_base64 = $('#edit-app-icon').attr('data-base64'); + + if(icon_base64){ + icon = icon_base64; + }else if (icon_url) { + icon = await getBase64ImageFromUrl(icon_url); + let app_max_icon_size = 5 * 1024 * 1024; + if (icon.length > app_max_icon_size) + error = `Icon cannot be larger than ${byte_format(app_max_icon_size)}`; + // make sure icon is an image + else if (!icon.startsWith('data:image/') && !icon.startsWith('data:application/octet-stream')) + error = `Icon must be an image.`; + }else{ + icon = null; + } + } + + // parse filetype_associations + if(filetype_associations !== ''){ + filetype_associations = JSON.parse(filetype_associations); + filetype_associations = filetype_associations.map((type) => { + const fileType = type.value; + if ( + !fileType || + fileType === "." || + fileType === "/" + ) { + error = `File Association Type must be valid.`; + return null; // Return null for invalid cases + } + const lower = fileType.toLocaleLowerCase(); + + if (fileType.includes("/")) { + return lower; + } else if (fileType.includes(".")) { + return "." + lower.split(".")[1]; + } else { + return "." + lower; + } + }).filter(Boolean); + } + + // error? + if (error) { + $('#edit-app-error').show(); + $('#edit-app-error').html(error); + document.body.scrollTop = document.documentElement.scrollTop = 0; + return; + } + + // show working spinner + puter.ui.showSpinner(); + + // disable submit button + $('.edit-app-save-btn').prop('disabled', true); + + let socialImageUrl = null; + if ($('#edit-app-social-image').attr('data-base64')) { + socialImageUrl = await handleSocialImageUpload(name, $('#edit-app-social-image').attr('data-base64')); + } else if ($('#edit-app-social-image').attr('data-url')) { + socialImageUrl = $('#edit-app-social-image').attr('data-url'); + } + + puter.apps.update(currently_editing_app.name, { + title: title, + name: name, + indexURL: index_url, + icon: icon, + description: description, + maximizeOnStart: $('#edit-app-maximize-on-start').is(":checked"), + background: $('#edit-app-background').is(":checked"), + metadata: { + fullpage_on_landing: $('#edit-app-fullpage-on-landing').is(":checked"), + social_image: socialImageUrl, + category: category || null, + window_size: { + width: width ?? 800, + height: height ?? 600, + }, + window_position: { + top: top, + left: left, + }, + window_resizable: $('#edit-app-window-resizable').is(":checked"), + hide_titlebar: $('#edit-app-hide-titlebar').is(":checked"), + locked: $(`#edit-app-locked`).is(":checked") ?? false, + }, + filetypeAssociations: filetype_associations, + }).then(async (app) => { + refresh_app_list(); + + currently_editing_app = app; + trackOriginalValues(); // Update original values after save + toggleSaveButton(); //Disable Save Button after succesful save + toggleResetButton(); //DIsable Reset Button after succesful save + $('#edit-app-error').hide(); + $('#edit-app-success').show(); + document.body.scrollTop = document.documentElement.scrollTop = 0; + // Update open-app-btn + $(`.open-app-btn[data-app-uid="${uid}"]`).attr('data-app-name', app.name); + $(`.open-app[data-uid="${uid}"]`).attr('data-app-name', app.name); + // Update title + $(`.app-title[data-uid="${uid}"]`).html(html_encode(app.title)); + // Update app link + $(`.app-url[data-uid="${uid}"]`).html(applink(app)); + $(`.app-url[data-uid="${uid}"]`).attr('href', applink(app)); + // Update icons + $(`.app-icon[data-uid="${uid}"]`).attr('src', html_encode(app.icon ? app.icon : './img/app.svg')); + $(`[data-app-uid="${uid}"]`).attr('data-app-title', html_encode(app.title)); + $(`[data-app-name="${uid}"]`).attr('data-app-name', html_encode(app.name)); + }).catch((err) => { + $('#edit-app-success').hide(); + $('#edit-app-error').show(); + $('#edit-app-error').html(err.error?.message); + // scroll to top so that user sees error message + document.body.scrollTop = document.documentElement.scrollTop = 0; + // re-enable submit button + $('.edit-app-save-btn').prop('disabled', false); + }).finally(() => { + puter.ui.hideSpinner(); + }) +}) + +$(document).on('input change', '#edit-app input, #edit-app textarea, #edit-app select', () => { + toggleSaveButton(); + toggleResetButton(); +}); + +$(document).on('click', '.edit-app-reset-btn', function () { + resetToOriginalValues(); + toggleSaveButton(); // Disable Save button since values are reverted to original + toggleResetButton(); //Disable Reset button since values are reverted to original +}); + +$(document).on('click', '.open-app-btn', async function (e) { + puter.ui.launchApp($(this).attr('data-app-name')) +}) + +$(document).on('click', '.edit-app-open-app-btn', async function (e) { + puter.ui.launchApp($(this).attr('data-app-name')) +}) + +$(document).on('click', '.delete-app-settings', async function (e) { + let app_uid = $(this).attr('data-app-uid'); + let app_name = $(this).attr('data-app-name'); + let app_title = $(this).attr('data-app-title'); + + // check if app is locked + const app_data = await puter.apps.get(app_name, {icon_size: 16}); + + if(app_data.metadata?.locked){ + puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ + { + label: 'Ok', + }, + ], { + type: 'warning', + }); + return; + } + + // confirm delete + const alert_resp = await puter.ui.alert(`Are you sure you want to premanently delete ${html_encode(app_title)}?`, + [ + { + label: 'Yes, delete permanently', + value: 'delete', + type: 'danger', + }, + { + label: 'Cancel' + }, + ] + ); + + if (alert_resp === 'delete') { + let init_ts = Date.now(); + puter.ui.showSpinner(); + puter.apps.delete(app_name).then(async (app) => { + setTimeout(() => { + puter.ui.hideSpinner(); + $('.back-to-main-btn').trigger('click'); + }, + // make sure the modal was shown for at least 2 seconds + (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); + // get app directory + puter.fs.stat({ + path: `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + returnSubdomains: true, + }).then(async (stat) => { + // delete subdomain associated with the app dir + puter.hosting.delete(stat.subdomains[0].subdomain) + // delete app directory + puter.fs.delete( + `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + { recursive: true } + ) + }) + }).catch(async (err) => { + setTimeout(() => { + puter.ui.hideSpinner(); + puter.ui.alert(err?.message, [ + { + label: 'Ok', + }, + ]); + }, + (Date.now() - init_ts) > 2000 ? 1 : (2000 - (Date.now() - init_ts))); + }) + } +}) + +$(document).on('click', '.edit-app', async function (e) { + $('#edit-app-uid').val($(this).attr('data-app-uid')); +}) + +$(document).on('click', '.back-to-main-btn', function (e) { + $('section:not(.sidebar)').hide(); + $('.tab-btn').removeClass('active'); + $('.tab-btn[data-tab="apps"]').addClass('active'); + + // get apps + puter.ui.showSpinner(); + setTimeout(function () { + puter.apps.list({icon_size: 64}).then((apps_res) => { + // uncheck the select all checkbox + $('.select-all-apps').prop('checked', false); + + puter.ui.hideSpinner(); + apps = apps_res; + if (apps.length > 0) { + if (window.activeTab === 'apps') { + $('#no-apps-notice').hide(); + $('#app-list').show(); + } + $('.app-card').remove(); + apps.forEach(app => { + $('#app-list-table > tbody').append(generate_app_card(app)); + }); + count_apps(); + sort_apps(); + activate_tippy(); + } else + $('#no-apps-notice').show(); + }) + }, 1000); +}) + +function count_apps() { + let count = 0; + $('.app-card').each(function () { + count++; + }) + $('.app-count').html(count); + return count; +} + +$(document).on('click', '#edit-app-icon-delete', async function (e) { + $('#edit-app-icon').css('background-image', ``); + $('#edit-app-icon').removeAttr('data-url'); + $('#edit-app-icon').removeAttr('data-base64'); + $('#edit-app-icon-delete').hide(); + + toggleSaveButton(); + toggleResetButton(); +}) + +$(document).on('click', '#edit-app-icon', async function (e) { + const res2 = await puter.ui.showOpenFilePicker({ + accept: "image/*", + }); + + const icon = await puter.fs.read(res2.path); + // convert blob to base64 + const reader = new FileReader(); + reader.readAsDataURL(icon); + + reader.onloadend = function () { + let image = reader.result; + // Get file extension + let fileExtension = res2.name.split('.').pop(); + + // Get MIME type + let mimeType = getMimeType(fileExtension); + + // Replace MIME type in the data URL + image = image.replace('data:application/octet-stream;base64', `data:${mimeType};base64`); + + $('#edit-app-icon').css('background-image', `url(${image})`); + $('#edit-app-icon').attr('data-base64', image); + $('#edit-app-icon-delete').show(); + + toggleSaveButton(); + toggleResetButton(); + } +}) + + +/** + * Generates HTML for an individual app card in the app list. + * + * @param {Object} app - The app object containing details of the app. + * * + * @returns {string} HTML string representing the app card. + * + * @description + * This function creates an HTML string for an app card, which includes: + * - Checkbox for app selection + * - App icon and title + * - Links to open, edit, add to desktop, or delete the app + * - Display of app statistics (user count, open count) + * - Creation date + * - Incentive program status badge (if applicable) + * + * The generated HTML is designed to be inserted into the app list table. + * It includes data attributes for various interactive features and + * event handling. + * + * @example + * const appCardHTML = generate_app_card(myAppObject); + * $('#app-list-table > tbody').append(appCardHTML); + */ +function generate_app_card(app) { + let h = ``; +h += ``; + // check box + h += ``; + h += `
`; + h += ``; + h += `
`; + h += ``; + // App info (title, category, toolbar) +h += ``; + + // Wrapper for icon + content side by side +h += `
`; + + // Icon + h += `
`; + + // App info content + h += `
`; + + // Info block with fixed layout +h += `
`; + + // Title + h += `

+ ${html_encode(app.title)}${app.metadata?.locked ? lock_svg_tippy : ''} +

`; + + // Category (optional) + if (app.metadata?.category) { + const category = APP_CATEGORIES.find(c => c.id === app.metadata.category); + if (category) { + h += `${html_encode(category.label)}`; + } + } + + // Link + h += `${html_encode(applink(app))}`; + +h += `
`; + + + + // Toolbar + h += `
`; + h += `
`; // remove inline styles + + h += `Open`; + h += `Settings`; + h += `Add Shortcut to Desktop`; + h += `Delete`; + h += `
`; +h += `
`; + h += `
`; // end info column + h += `
`; // end row +h += ``; + + + // users count + h += ``; + h += `${number_format((app.stats.referral_count ?? 0) + app.stats.user_count)}`; + h += ``; + + // opens + h += ``; + h += `${number_format(app.stats.open_count)}`; + h += ``; + + // Created + h += ``; + h += `${moment(app.created_at).format('MMM Do, YYYY')}`; + h += ``; + + h += ``; + h += `
`; + // "Approved for listing" + h += ``; + + // "Approved for opening items" + h += ``; + + // "Approved for incentive program" + h += ``; + h += `
`; + h += ``; + h += ``; + return h; +} + +$('th.sort').on('click', function (e) { + // determine what column to sort by + const sortByColumn = $(this).attr('data-column'); + + // toggle sort direction + if (sortByColumn === sortBy) { + if (sortDirection === 'asc') + sortDirection = 'desc'; + else + sortDirection = 'asc'; + } + else { + sortBy = sortByColumn; + sortDirection = 'desc'; + } + + // update arrow + $('.sort-arrow').css('display', 'none'); + $('#app-list-table').find('th').removeClass('sorted'); + $(this).find('.sort-arrow-' + sortDirection).css('display', 'inline'); + $(this).addClass('sorted'); + + sort_apps(); +}); + + + +function sort_apps() { + let sorted_apps; + + // sort + if (sortDirection === 'asc'){ + sorted_apps = apps.sort((a, b) => { + if(sortBy === 'name'){ + return a[sortBy].localeCompare(b[sortBy]); + }else if(sortBy === 'created_at'){ + return new Date(a[sortBy]) - new Date(b[sortBy]); + } else if(sortBy === 'user_count' || sortBy === 'open_count'){ + return a.stats[sortBy] - b.stats[sortBy]; + }else{ + a[sortBy] > b[sortBy] ? 1 : -1 + } + }); + }else{ + sorted_apps = apps.sort((a, b) => { + if(sortBy === 'name'){ + return b[sortBy].localeCompare(a[sortBy]); + }else if(sortBy === 'created_at'){ + return new Date(b[sortBy]) - new Date(a[sortBy]); + } else if(sortBy === 'user_count' || sortBy === 'open_count'){ + return b.stats[sortBy] - a.stats[sortBy]; + }else{ + b[sortBy] > a[sortBy] ? 1 : -1 + } + }); + } + // refresh app list + $('.app-card').remove(); + sorted_apps.forEach(app => { + $('#app-list-table > tbody').append(generate_app_card(app)); + }); + + count_apps(); + + // show apps that match search_query and hide apps that don't + if (search_query) { + // show apps that match search_query and hide apps that don't + apps.forEach((app) => { + if (app.title.toLowerCase().includes(search_query.toLowerCase())) { + $(`.app-card[data-name="${html_encode(app.name)}"]`).show(); + } else { + $(`.app-card[data-name="${html_encode(app.name)}"]`).hide(); + } + }) + } +} + +/** + * Checks if the items being deployed contain a .git directory + * @param {Array|string} items - Items to check (can be path string or array of items) + * @returns {Promise} - True if .git directory is found + */ +async function hasGitDirectory(items) { + // Case 1: Single Puter path + if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { + const stat = await puter.fs.stat(items); + if (stat.is_dir) { + const files = await puter.fs.readdir(items); + return files.some(file => file.name === '.git' && file.is_dir); + } + return false; + } + + // Case 2: Array of Puter items + if (Array.isArray(items) && items[0]?.uid) { + return items.some(item => item.name === '.git' && item.is_dir); + } + + // Case 3: Local items (DataTransferItems) + if (Array.isArray(items)) { + for (let item of items) { + if (item.fullPath?.includes('/.git/') || + item.path?.includes('/.git/') || + item.filepath?.includes('/.git/')) { + return true; + } + } + } + + return false; +} + +/** + * Shows a warning dialog about .git directory deployment + * @returns {Promise} - True if the user wants to proceed with deployment + */ +async function showGitWarningDialog() { + try { + // Check if the user has chosen to skip the warning + const skipWarning = await puter.kv.get('skip-git-warning'); + + // Log retrieved value for debugging + console.log('Retrieved skip-git-warning:', skipWarning); + + // If the user opted to skip the warning, proceed without showing it + if (skipWarning === true) { + return true; + } + } catch (error) { + console.error('Error accessing KV store:', error); + // If KV store access fails, fall back to showing the dialog + } + + // Create the modal dialog + const modal = document.createElement('div'); + modal.innerHTML = ` +
+

Warning: Git Repository Detected

+

A .git directory was found in your deployment files. Deploying .git directories may:

+
    +
  • Expose sensitive information like commit history and configuration
  • +
  • Significantly increase deployment size
  • +
+
+ + +
+
+ + +
+
+
+ `; + document.body.appendChild(modal); + + return new Promise((resolve) => { + // Handle "Continue Deployment" + document.getElementById('continue-deployment').addEventListener('click', async () => { + try { + const skipChecked = document.getElementById('skip-git-warning')?.checked; + if (skipChecked) { + console.log("Saving 'skip-git-warning' preference as true"); + await puter.kv.set('skip-git-warning', true); + } + } catch (error) { + console.error('Error saving user preference to KV store:', error); + } finally { + document.body.removeChild(modal); + resolve(true); // Continue deployment + } + }); + + // Handle "Cancel Deployment" + document.getElementById('cancel-deployment').addEventListener('click', () => { + document.body.removeChild(modal); + resolve(false); // Cancel deployment + }); + }); +} + +window.deploy = async function (app, items) { + // Check for .git directory before proceeding + try { + if (await hasGitDirectory(items)) { + const shouldProceed = await showGitWarningDialog(); + if (!shouldProceed) { + reset_drop_area(); + return; + } + } + } catch (err) { + console.error('Error checking for .git directory:', err); + } + let appdata_dir, current_app_dir; + + // disable deploy button + $('.deploy-btn').addClass('disabled'); + + // change drop area text + $('.drop-area').html(deploying_spinner + '
Deploying (0%)
'); + + if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + } + + // -------------------------------------------------------------------- + // Get current directory, we need to delete the existing hostname + // later on + // -------------------------------------------------------------------- + try { + current_app_dir = await puter.fs.stat({ + path: `/${auth_username}/AppData/${dev_center_uid}/${app.uid ?? app.uuid}`, + returnSubdomains: true + }); + } catch (err) { + console.log(err); + } + + // -------------------------------------------------------------------- + // Delete existing hostnames attached to this app directory if they exist + // -------------------------------------------------------------------- + if (current_app_dir?.subdomains.length > 0) { + for (let subdomain of current_app_dir?.subdomains) { + puter.hosting.delete(subdomain.subdomain) + } + } + + // -------------------------------------------------------------------- + // Delete existing app directory + // -------------------------------------------------------------------- + try { + await puter.fs.delete(current_app_dir.path) + } catch (err) { + console.log(err); + } + + // -------------------------------------------------------------------- + // Make an app directory under AppData + // if the directory already exists, it should be overwritten + // -------------------------------------------------------------------- + try { + appdata_dir = await puter.fs.mkdir( + // path + `/${auth_username}/AppData/${dev_center_uid}/${app.uid ?? app.uuid}`, + // options + { overwrite: true, recursive: true, rename: false } + ) + } catch (err) { + console.log(err); + } + + // -------------------------------------------------------------------- + // (A) One Puter Item: If 'items' is a string and starts with /, it's a path to a Puter item + // -------------------------------------------------------------------- + if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { + // perform stat on 'items' + const stat = await puter.fs.stat(items); + + // -------------------------------------------------------------------- + // Puter Directory + // -------------------------------------------------------------------- + // Perform readdir on 'items' + // todo there is apparently a bug in Puter where sometimes path is literally missing from the items + // returned by readdir. This is the 'path' that readdit didn't return a path for: "~/Desktop/particle-clicker-master" + if (stat.is_dir) { + const files = await puter.fs.readdir(items); + // copy the 'files' to the app directory + if (files.length > 0) { + for (let file of files) { + // perform copy + await puter.fs.copy( + file.path, + appdata_dir.path, + { overwrite: true } + ); + // update progress + $('.deploy-percent').text(`(${Math.round((files.indexOf(file) / files.length) * 100)}%)`); + } + } + } + // -------------------------------------------------------------------- + // Puter File + // -------------------------------------------------------------------- + else { + // copy the 'files' to the app directory + await puter.fs.copy( + items, + appdata_dir.path, + { overwrite: true } + ); + } + + // generate new hostname with a random suffix + let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; + + // -------------------------------------------------------------------- + // Create a router for the app with the fresh hostname + // we change hostname every time to prevent caching issues + // -------------------------------------------------------------------- + puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { + // TODO this endpoint needs to be able to update only the specified fields + puter.apps.update(currently_editing_app.name, { + indexURL: protocol + `://${hostname}.` + static_hosting_domain, + title: currently_editing_app.title, + name: currently_editing_app.name, + icon: currently_editing_app.icon, + description: currently_editing_app.description, + maximizeOnStart: currently_editing_app.maximize_on_start, + background: currently_editing_app.background, + filetypeAssociations: currently_editing_app.filetype_associations, + }) + // set the 'Index URL' field for the 'Settings' tab + $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); + // show success message + $('.deploy-success-msg').show(); + // reset drop area + reset_drop_area(); + }) + } + // -------------------------------------------------------------------- + // (B) Multiple Puter Items: If `items` is an Array `items[0]` has `uid` + // then it's a Puter Item Array. + // -------------------------------------------------------------------- + else if (Array.isArray(items) && items[0].uid) { + // If there's no index.html in the root, return + if (!hasRootIndexHtml) + return; + + // copy the 'files' to the app directory + for (let item of items) { + // perform copy + await puter.fs.copy( + item.fullPath ? item.fullPath : item.path ? item.path : item.filepath, + appdata_dir.path, + { overwrite: true } + ); + // update progress + $('.deploy-percent').text(`(${Math.round((items.indexOf(item) / items.length) * 100)}%)`); + } + + // generate new hostname with a random suffix + let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; + + // -------------------------------------------------------------------- + // Create a router for the app with the fresh hostname + // we change hostname every time to prevent caching issues + // -------------------------------------------------------------------- + puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { + // TODO this endpoint needs to be able to update only the specified fields + puter.apps.update(currently_editing_app.name, { + indexURL: protocol + `://${hostname}.` + static_hosting_domain, + title: currently_editing_app.title, + name: currently_editing_app.name, + icon: currently_editing_app.icon, + description: currently_editing_app.description, + maximizeOnStart: currently_editing_app.maximize_on_start, + background: currently_editing_app.background, + filetypeAssociations: currently_editing_app.filetype_associations, + }) + // set the 'Index URL' field for the 'Settings' tab + $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); + // show success message + $('.deploy-success-msg').show(); + // reset drop area + reset_drop_area(); + }) + } + + // -------------------------------------------------------------------- + // (C) Local Items: Upload new deploy + // -------------------------------------------------------------------- + else { + puter.fs.upload( + items, + `/${auth_username}/AppData/${dev_center_uid}/${currently_editing_app.uid}`, + { + dedupeName: false, + overwrite: false, + parsedDataTransferItems: true, + createMissingAncestors: true, + progress: function (operation_id, op_progress) { + $('.deploy-percent').text(`(${op_progress}%)`); + }, + }).then(async (uploaded) => { + // new hostname + let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; + + // ---------------------------------------- + // Create a router for the app with a fresh hostname + // we change hostname every time to prevent caching issues + // ---------------------------------------- + puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { + // TODO this endpoint needs to be able to update only the specified fields + puter.apps.update(currently_editing_app.name, { + indexURL: protocol + `://${hostname}.` + static_hosting_domain, + title: currently_editing_app.title, + name: currently_editing_app.name, + icon: currently_editing_app.icon, + description: currently_editing_app.description, + maximizeOnStart: currently_editing_app.maximize_on_start, + background: currently_editing_app.background, + filetypeAssociations: currently_editing_app.filetype_associations, + }) + // set the 'Index URL' field for the 'Settings' tab + $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); + // show success message + $('.deploy-success-msg').show(); + // reset drop area + reset_drop_area() + }) + }) + } +} + + +function generateDirTree(paths) { + const root = {}; + + for (let path of paths) { + let parts = path.split('/'); + let currentNode = root; + for (let part of parts) { + if (!part) continue; // skip empty parts, especially leading one + if (!currentNode[part]) { + currentNode[part] = {}; + } + currentNode = currentNode[part]; + } + } + + return root; +} + +function setRootDirTree(tree, items) { + // Get all keys (directories and files) in the root + const rootKeys = Object.keys(tree); + + // If there's only one object in the root, check if it's non-empty and return it + if (rootKeys.length === 1 && typeof tree[rootKeys[0]] === 'object' && Object.keys(tree[rootKeys[0]]).length > 0) { + let newItems = []; + for (let item of items) { + if (item.fullPath) + item.finalPath = item.fullPath.replace(rootKeys[0], ''); + else if (item.path) + item.path = item.path.replace(rootKeys[0], ''); + else + item.filepath = item.filepath.replace(rootKeys[0], ''); + + newItems.push(item); + } + return newItems; + } else { + return items; + } +} + +function hasRootIndexHtml(tree) { + // Check if index.html exists in the root + if (tree['index.html']) { + return true; + } + + // Get all keys (directories and files) in the root + const rootKeys = Object.keys(tree); + + // If there's only one directory in the root, check if index.html exists in that directory + if (rootKeys.length === 1 && typeof tree[rootKeys[0]] === 'object' && tree[rootKeys[0]]['index.html']) { + return true; + } + + return false; +} + + +$(document).on('click', '.open-app', function (e) { + puter.ui.launchApp($(this).attr('data-app-name')); +}) + +$(document).on('click', '.insta-deploy-to-new-app', async function (e) { + $('.insta-deploy-modal').get(0).close(); + let title = await puter.ui.prompt('Please enter a title for your app:', 'My Awesome App'); + + if (title.length > 60) { + puter.ui.alert(`Title cannot be longer than 60.`, [ + { + label: 'Ok', + }, + ]); + // todo go back to create an app prompt and prefill the title input with the title the user entered + $('.insta-deploy-modal').get(0).showModal(); + } + else if (title) { + if (source_path) { + create_app(title, source_path); + source_path = null; + } else { + create_app(title, null, dropped_items); + dropped_items = null; + } + } else + $('.insta-deploy-modal').get(0).showModal(); + + return; + +}) + +$(document).on('click', '.insta-deploy-to-existing-app', function (e) { + $('.insta-deploy-modal').get(0).close(); + $('.insta-deploy-existing-app-select').get(0).showModal(); + $('.insta-deploy-existing-app-list').html(`
${loading_spinner}
`); + puter.apps.list({ icon_size: 64 }).then((apps) => { + setTimeout(() => { + $('.insta-deploy-existing-app-list').html(''); + if (apps.length === 0) + $('.insta-deploy-existing-app-list').html(` +
+ + You have no existing apps. +
+ `); + else { + for (let app of apps) { + $('.insta-deploy-existing-app-list').append( + `
+ + ${html_encode(app.title)} +
+ ${number_format((app.stats.referral_count ?? 0) + app.stats.user_count)} + ${number_format(app.stats.open_count)} +
+
` + ); + } + } + }, 500); + }) + + // todo reset .insta-deploy-existing-app-list on close +}) + +$(document).on('click', '.insta-deploy-app-selector', function (e) { + $('.insta-deploy-app-selector').removeClass('active'); + $(this).addClass('active'); + + // enable deploy button + $('.insta-deploy-existing-app-deploy-btn').removeClass('disabled'); +}) + +$(document).on('click', '.insta-deploy-existing-app-deploy-btn', function (e) { + $('.insta-deploy-existing-app-deploy-btn').addClass('disabled'); + $('.insta-deploy-existing-app-select')?.get(0)?.close(); + + const app_item = $('.insta-deploy-app-selector.active'); + + // load the 'App Settings' section + edit_app_section(app_item.attr('data-name')); + + $('.drop-area').removeClass('drop-area-hover'); + $('.drop-area').addClass('drop-area-ready-to-deploy'); + let drop_area_content = `

Ready to deploy 🚀

Cancel

`; + $('.drop-area').html(drop_area_content); + + // deploy + console.log('data uid is present?', $(e.target).attr('data-uid'), app_item.attr('data-uid')); + deploy({ uid: app_item.attr('data-uid') }, source_path ?? dropped_items); + $('.insta-deploy-existing-app-list').html(''); +}) + +$(document).on('click', '.insta-deploy-cancel', function (e) { + $(this).closest('dialog')?.get(0)?.close(); +}) +$(document).on('click', '.insta-deploy-existing-app-back', function (e) { + $('.insta-deploy-existing-app-select')?.get(0)?.close(); + $('.insta-deploy-modal')?.get(0)?.showModal(); + // disable deploy button + $('.insta-deploy-existing-app-deploy-btn').addClass('disabled'); + + // todo disable the 'an existing app' option if there are no existing apps +}) + + + +$(document).on('click', '.add-app-to-desktop', function (e) { + let app_title = $(this).attr('data-app-title'); + let app_uid = $(this).attr('data-app-uid'); + + puter.fs.upload( + new File([], app_title), + `/${auth_username}/Desktop`, + { + name: app_title, + dedupeName: true, + overwrite: false, + appUID: app_uid, + }).then(async (uploaded) => { + puter.ui.alert(`${app_title} shortcut has been added to your desktop.`, [ + { + label: 'Ok', + type: 'primary', + }, + ], { + type: 'success', + }); + }) + +}) + + +$('.insta-deploy-existing-app-select').on('close', function (e) { + $('.insta-deploy-existing-app-list').html(''); +}) + +$('.refresh-app-list').on('click', function (e) { + puter.ui.showSpinner(); + + puter.apps.list({ icon_size: 64 }).then((resp) => { + setTimeout(() => { + apps = resp; + + $('.app-card').remove(); + apps.forEach(app => { + $('#app-list-table > tbody').append(generate_app_card(app)); + }); + + count_apps(); + + // preserve search query + if (search_query) { + // show apps that match search_query and hide apps that don't + apps.forEach((app) => { + if (app.title.toLowerCase().includes(search_query.toLowerCase())) { + $(`.app-card[data-name="${app.name}"]`).show(); + } else { + $(`.app-card[data-name="${app.name}"]`).hide(); + } + }) + } + + // preserve sort + sort_apps(); + activate_tippy(); + + puter.ui.hideSpinner(); + }, 1000); + }) +}) + +$(document).on('click', '.search', function (e) { + e.stopPropagation(); + e.preventDefault(); + // don't let click bubble up to window + e.stopImmediatePropagation(); +}) + +$(document).on('input change keyup keypress keydown paste cut', '.search', function (e) { + // search apps for query + search_query = $(this).val().toLowerCase(); + if (search_query === '') { + // hide 'clear search' button + $('.search-clear').hide(); + // show all apps again + $(`.app-card`).show(); + } else { + // show 'clear search' button + $('.search-clear').show(); + // show apps that match search_query and hide apps that don't + apps.forEach((app) => { + if ( + app.title.toLowerCase().includes(search_query.toLowerCase()) + || app.name.toLowerCase().includes(search_query.toLowerCase()) + || app.description.toLowerCase().includes(search_query.toLowerCase()) + || app.uid.toLowerCase().includes(search_query.toLowerCase()) + ) + { + $(`.app-card[data-name="${app.name}"]`).show(); + } else { + $(`.app-card[data-name="${app.name}"]`).hide(); + } + }) + } +}) + +$(document).on('click', '.search-clear', function (e) { + $('.search').val(''); + $('.search').trigger('change'); + $('.search').focus(); + search_query = ''; +}) + +$(document).on('change', '.app-checkbox', function (e) { + // determine if select-all checkbox should be checked, indeterminate, or unchecked + if ($('.app-checkbox:checked').length === $('.app-checkbox').length) { + $('.select-all-apps').prop('indeterminate', false); + $('.select-all-apps').prop('checked', true); + } else if ($('.app-checkbox:checked').length > 0) { + $('.select-all-apps').prop('indeterminate', true); + $('.select-all-apps').prop('checked', false); + } + else { + $('.select-all-apps').prop('indeterminate', false); + $('.select-all-apps').prop('checked', false); + } + + // activate row + if ($(this).is(':checked')) + $(this).closest('tr').addClass('active'); + else + $(this).closest('tr').removeClass('active'); + + // enable delete button if at least one checkbox is checked + if ($('.app-checkbox:checked').length > 0) + $('.delete-apps-btn').removeClass('disabled'); + else + $('.delete-apps-btn').addClass('disabled'); + +}) + +$(document).on('click', '.delete-apps-btn', async function (e) { + // show confirmation alert + let resp = await puter.ui.alert(`Are you sure you want to delete the selected apps?`, [ + { + label: 'Delete', + type: 'danger', + value: 'delete', + }, + { + label: 'Cancel', + }, + ], { + type: 'warning', + }); + + if (resp === 'delete') { + // disable delete button + // $('.delete-apps-btn').addClass('disabled'); + + // show 'deleting' modal + puter.ui.showSpinner(); + + let start_ts = Date.now(); + const apps = $('.app-checkbox:checked').toArray(); + + // delete all checked apps + for (let app of apps) { + // get app uid + const app_uid = $(app).attr('data-app-uid'); + const app_name = $(app).attr('data-app-name'); + + // get app + const app_data = await puter.apps.get(app_name, {icon_size: 64 }); + + if(app_data.metadata?.locked){ + if(apps.length === 1){ + puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ + { + label: 'Ok', + }, + ], { + type: 'warning', + }); + + break; + } + + let resp = await puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ + { + label: 'Skip and Continue', + value: 'Continue', + type: 'primary' + }, + { + label: 'Cancel', + }, + ], { + type: 'warning', + }); + + if(resp === 'Cancel') + break; + else if(resp === 'Continue') + continue; + else + continue; + } + + // delete app + await puter.apps.delete(app_name) + + // remove app card + $(`.app-card[data-uid="${app_uid}"]`).fadeOut(200, function name(params) { + $(this).remove(); + if ($(`.app-card`).length === 0) { + $('section:not(.sidebar)').hide(); + $('#no-apps-notice').show(); + } else { + $('section:not(.sidebar)').hide(); + $('#app-list').show(); + } + count_apps(); + }); + + try{ + // get app directory + const stat = await puter.fs.stat({ + path: `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + returnSubdomains: true + }); + // delete subdomain associated with the app directory + if(stat?.subdomains[0]?.subdomain){ + await puter.hosting.delete(stat.subdomains[0].subdomain) + } + // delete app directory + await puter.fs.delete( + `/${auth_username}/AppData/${dev_center_uid}/${app_uid}`, + { recursive: true } + ) + count_apps(); + } catch(err) { + console.log(err); + } + } + + // close 'deleting' modal + setTimeout(() => { + puter.ui.hideSpinner(); + if($('.app-checkbox:checked').length === 0){ + // disable delete button + $('.delete-apps-btn').addClass('disabled'); + // reset the 'select all' checkbox + $('.select-all-apps').prop('indeterminate', false); + $('.select-all-apps').prop('checked', false); + } + }, (start_ts - Date.now()) > 500 ? 0 : 500); + } +}) + +$(document).on('change', '.select-all-apps', function (e) { + if ($(this).is(':checked')) { + $('.app-checkbox').prop('checked', true); + $('.app-card').addClass('active'); + $('.delete-apps-btn').removeClass('disabled'); + } else { + $('.app-checkbox').prop('checked', false); + $('.app-card').removeClass('active'); + $('.delete-apps-btn').addClass('disabled'); + } +}) + + +// if edit-app-maximize-on-start is checked, disable window size and position fields +$(document).on('change', '#edit-app-maximize-on-start', function (e) { + if ($(this).is(':checked')) { + $('#edit-app-window-width, #edit-app-window-height').prop('disabled', true); + $('#edit-app-window-top, #edit-app-window-left').prop('disabled', true); + } else { + $('#edit-app-window-width, #edit-app-window-height').prop('disabled', false); + $('#edit-app-window-top, #edit-app-window-left').prop('disabled', false); + } +}) + +$(document).on('change', '#edit-app-background', function (e) { + if($('#edit-app-background').is(":checked")){ + disable_window_settings() + }else{ + enable_window_settings() + } +}) + +function disable_window_settings(){ + $('#edit-app-maximize-on-start').prop('disabled', true); + $('#edit-app-fullpage-on-landing').prop('disabled', true); + $('#edit-app-window-width, #edit-app-window-height').prop('disabled', true); + $('#edit-app-window-top, #edit-app-window-left').prop('disabled', true); + $('#edit-app-window-resizable').prop('disabled', true); + $('#edit-app-hide-titlebar').prop('disabled', true); +} + +function enable_window_settings(){ + $('#edit-app-maximize-on-start').prop('disabled', false); + $('#edit-app-fullpage-on-landing').prop('disabled', false); + $('#edit-app-window-width, #edit-app-window-height').prop('disabled', false); + $('#edit-app-window-top, #edit-app-window-left').prop('disabled', false); + $('#edit-app-window-resizable').prop('disabled', false); + $('#edit-app-hide-titlebar').prop('disabled', false); +} + +$(document).on('click', '.reset-deploy', function (e) { + reset_drop_area(); +}) + + +window.initializeAssetsDirectory = async () => { + try { + // Check if assets_url exists + const existingURL = await puter.kv.get('assets_url'); + if (!existingURL) { + // Create assets directory + const assetsDir = await puter.fs.mkdir( + `/${auth_username}/AppData/${dev_center_uid}/assets`, + { overwrite: false } + ); + + // Publish the directory + const hostname = `assets-${Math.random().toString(36).substring(2)}`; + const route = await puter.hosting.create(hostname, assetsDir.path); + + // Store the URL + await puter.kv.set('assets_url', `https://${hostname}.puter.site`); + } + } catch (err) { + console.error('Error initializing assets directory:', err); + } +} + +window.generateSocialImageSection = (app) => { + return ` + + + Remove social image + + `; +} + + +$(document).on('click', '#edit-app-social-image', async function(e) { + const res = await puter.ui.showOpenFilePicker({ + accept: "image/*", + }); + + const socialImage = await puter.fs.read(res.path); + // Convert blob to base64 for preview + const reader = new FileReader(); + reader.readAsDataURL(socialImage); + + reader.onloadend = function() { + let image = reader.result; + // Get file extension + let fileExtension = res.name.split('.').pop(); + // Get MIME type + let mimeType = getMimeType(fileExtension); + // Replace MIME type in the data URL + image = image.replace('data:application/octet-stream;base64', `data:image/${mimeType};base64`); + + $('#edit-app-social-image').css('background-image', `url(${image})`); + $('#edit-app-social-image').attr('data-base64', image); + $('#edit-app-social-image-delete').show(); + + toggleSaveButton(); + toggleResetButton(); + } +}); + +$(document).on('click', '#edit-app-social-image-delete', async function(e) { + $('#edit-app-social-image').css('background-image', ''); + $('#edit-app-social-image').removeAttr('data-url'); + $('#edit-app-social-image').removeAttr('data-base64'); + $('#edit-app-social-image-delete').hide(); +}); + +window.handleSocialImageUpload = async (app_name, socialImageData) => { + if (!socialImageData) return null; + + try { + const assets_url = await puter.kv.get('assets_url'); + if (!assets_url) throw new Error('Assets URL not found'); + + // Convert base64 to blob + const base64Response = await fetch(socialImageData); + const blob = await base64Response.blob(); + + // Get assets directory path + const assetsDir = `/${auth_username}/AppData/${dev_center_uid}/assets`; + + // Upload new image + await puter.fs.upload( + new File([blob], `${app_name}.png`, { type: 'image/png' }), + assetsDir, + { overwrite: true } + ); + + return `${assets_url}/${app_name}.png`; + } catch (err) { + console.error('Error uploading social image:', err); + throw err; + } +} + +$(document).on('click', '.copy-app-uid', function(e) { + const appUID = $('#edit-app-uid').val(); + navigator.clipboard.writeText(appUID); + // change to 'copied' + $(this).html('Copied'); + setTimeout(() => { + $(this).html(copy_svg); + }, 2000); +}); + +$(document).on('change', '#analytics-period', async function(e) { + let period = $(this).val(); + render_analytics(period); +}); + +async function render_analytics(period){ + puter.ui.showSpinner(); + + // set a sensible stats_grouping based on the selected period + let stats_grouping; + + if (period === 'today' || period === 'yesterday') { + stats_grouping = 'hour'; + } + else if (period === 'this_week' || period === 'last_week' || period === 'this_month' || period === 'last_month' || period === '7d' || period === '30d') { + stats_grouping = 'day'; + } + else if (period === 'this_year' || period === 'last_year' || period === '12m' || period === 'all') { + stats_grouping = 'month'; + } + + const app = await puter.apps.get( + currently_editing_app.name, + { + icon_size: 16, + stats_period: period, + stats_grouping: stats_grouping, + } + ); + + $('#analytics-users .count').html(number_format(app.stats.user_count)); + $('#analytics-opens .count').html(number_format(app.stats.open_count)); + + // Clear existing chart if any + $('#analytics-chart').remove(); + $('.analytics-container').remove(); + + // Create new canvas + const container = $('
'); + const canvas = $(''); + container.append(canvas); + $('#analytics-opens').parent().after(container); + + // Format the data + const labels = app.stats.grouped_stats.open_count.map(item => { + let date; + if (stats_grouping === 'month') { + // Handle YYYY-MM format explicitly + const [year, month] = item.period.split('-'); + date = new Date(parseInt(year), parseInt(month) - 1); // month is 0-based in JS + } else { + date = new Date(item.period); + } + + if (stats_grouping === 'hour') { + return date.toLocaleString('en-US', { hour: 'numeric', hour12: true }).toLowerCase(); + } else if (stats_grouping === 'day') { + return date.toLocaleString('en-US', { month: 'short', day: 'numeric' }); + } else { + return date.toLocaleString('en-US', { month: 'short', year: 'numeric' }); + } + }); + const openData = app.stats.grouped_stats.open_count.map(item => item.count); + const userData = app.stats.grouped_stats.user_count.map(item => item.count); + + // Create chart + const ctx = document.getElementById('analytics-chart').getContext('2d'); + new Chart(ctx, { + type: 'line', + data: { + labels: labels, + datasets: [ + { + label: 'Opens', + data: openData, + borderColor: '#346beb', + tension: 0, + fill: false + }, + { + label: 'Users', + data: userData, + borderColor: '#27cc32', + tension: 0, + fill: false + } + ] + }, + options: { + responsive: true, + maintainAspectRatio: false, + scales: { + x: { + display: true, + title: { + display: true, + text: 'Period' + }, + ticks: { + maxRotation: 45, + minRotation: 45 + } + }, + y: { + display: true, + beginAtZero: true, + title: { + display: true, + text: 'Count' + }, + ticks: { + precision: 0, // Show whole numbers only + stepSize: 1 // Increment by 1 + } + } + }, + } + }); + + puter.ui.hideSpinner(); +} + +$(document).on('click', '.stats-cell', function(e) { + edit_app_section($(this).attr('data-app-name'), 'analytics'); +}) +export default init_apps; \ No newline at end of file diff --git a/src/dev-center/js/dev-center.js b/src/dev-center/js/dev-center.js index 9ba704a6f..bec57515a 100644 --- a/src/dev-center/js/dev-center.js +++ b/src/dev-center/js/dev-center.js @@ -17,213 +17,83 @@ * along with this program. If not, see . */ -let URLParams = new URLSearchParams(window.location.search); -let domain = 'puter.com', authUsername; -let source_path -let apps = []; -let workers = []; -let sortBy = 'created_at'; -let sortDirection = 'desc'; -const dev_center_uid = puter.appID; -let developer; -let activeTab = 'apps'; -let currently_editing_app; -let dropped_items; -let search_query; -let originalValues = {}; +import init_apps from './apps.js'; +import init_workers from './workers.js'; +import init_websites from './websites.js'; -const APP_CATEGORIES = [ - { id: 'games', label: 'Games' }, - { id: 'developer-tools', label: 'Developer Tools' }, - { id: 'photo-video', label: 'Photo & Video' }, - { id: 'productivity', label: 'Productivity' }, - { id: 'utilities', label: 'Utilities' }, - { id: 'education', label: 'Education' }, - { id: 'business', label: 'Business' }, - { id: 'social', label: 'Social' }, - { id: 'graphics-design', label: 'Graphics & Design' }, - { id: 'music-audio', label: 'Music & Audio' }, - { id: 'news', label: 'News' }, - { id: 'entertainment', label: 'Entertainment' }, - { id: 'finance', label: 'Finance' }, - { id: 'health-fitness', label: 'Health & Fitness' }, - { id: 'lifestyle', label: 'Lifestyle' }, -]; +window.url_params = new URLSearchParams(window.location.search); +window.domain = 'puter.com' +window.auth_username = null; +window.dev_center_uid = puter.appID; +window.developer; +window.activeTab = 'apps'; -const deploying_spinner = ``; -const loading_spinner = ``; -const drop_area_placeholder = `

Drop your app folder and files here to deploy.

HTML, JS, CSS, ...

`; -const index_missing_error = `Please upload an 'index.html' file or if you're uploading a directory, make sure it contains an 'index.html' file at its root.`; -const lock_svg = ` `; -const lock_svg_tippy = ` `; - -const copy_svg = ` `; - -// authUsername +// auth_username (async () => { let user = await puter.auth.getUser(); if (user?.username) { - authUsername = user.username; + window.auth_username = user.username; } })() -// source_path -if (URLParams.has('source_path')) { - source_path = URLParams.get('source_path'); -} else { - source_path = null; -} - // domain and APIOrigin -if (URLParams.has('puter.domain')) { - domain = URLParams.get('puter.domain') +if (window.url_params.has('puter.domain')) { + window.domain = window.url_params.get('puter.domain') } // static hosting domain -let static_hosting_domain = 'puter.site'; -if(domain === 'puter.localhost'){ - static_hosting_domain = 'site.puter.localhost'; +window.static_hosting_domain = 'puter.site'; +if(window.domain === 'puter.localhost'){ + window.static_hosting_domain = 'site.puter.localhost'; } // add port to static_hosting_domain if provided -if (URLParams.has('puter.port') && URLParams.get('puter.port')) { - static_hosting_domain = static_hosting_domain + `:` + html_encode(URLParams.get('puter.port')); +if (window.url_params.has('puter.port') && window.url_params.get('puter.port')) { + window.static_hosting_domain = window.static_hosting_domain + `:` + html_encode(window.url_params.get('puter.port')); } // protocol -let protocol = 'https'; -if (URLParams.has('puter.protocol') && URLParams.get('puter.protocol') === 'http') - protocol = 'http'; +window.protocol = 'https'; +if (window.url_params.has('puter.protocol') && window.url_params.get('puter.protocol') === 'http') + window.protocol = 'http'; // port -let port = ''; -if (URLParams.has('puter.port') && URLParams.get('puter.port')) { - port = html_encode(URLParams.get('puter.port')); +window.port = ''; +if (window.url_params.has('puter.port') && window.url_params.get('puter.port')) { + window.port = html_encode(window.url_params.get('puter.port')); } -$(document).ready(function () { +// source_path +if (window.url_params.has('source_path')) { + window.source_path = window.url_params.get('source_path'); +} else { + window.source_path = null; +} + +// --------------------------------------------------------------- +// Initialize +// --------------------------------------------------------------- +$(document).ready(async function () { // initialize assets directory - initializeAssetsDirectory(); + await initializeAssetsDirectory(); + + // create default worker file + await createDefaultWorkerFile(); puter.ui.showSpinner(); - setTimeout(async function () { - puter.ui.onLaunchedWithItems(async function (items) { - source_path = items[0].path; - // if source_path is provided, this means that the user is creating a new app/updating an existing app - // by deploying an existing Puter folder. So we create the app and deploy it. - if (source_path) { - // todo if there are no apps, go straight to creating a new app - $('.insta-deploy-modal').get(0).showModal(); - // set item name - $('.insta-deploy-item-name').html(html_encode(items[0].name)); - } - }) + init_apps(); + init_websites(); + init_workers(); - // Get dev profile. This is only for puter.com for now as we don't have dev profiles in self-hosted Puter - if(domain === 'puter.com'){ - puter.apps.getDeveloperProfile(async function (dev_profile) { - developer = dev_profile; - if (dev_profile.approved_for_incentive_program && !dev_profile.joined_incentive_program) { - $('#join-incentive-program').show(); - } - - // show earn money c2a only if dev is not approved for incentive program or has already joined - if (!dev_profile.approved_for_incentive_program || dev_profile.joined_incentive_program) { - puter.kv.get('earn-money-c2a-closed').then((value) => { - if (value?.result || value === true || value === "true") - return; - - $('#earn-money').get(0).showModal(); - }); - } - - // show payout method tab if dev has joined incentive program - if (dev_profile.joined_incentive_program) { - $('.tab-btn[data-tab="payout-method"]').show(); - $('#payout-method-email').html(dev_profile.paypal); - } - }) - } - // Get apps - puter.apps.list({ icon_size: 64 }).then((resp) => { - apps = resp; - - // hide loading - puter.ui.hideSpinner(); - - // set apps - if (apps.length > 0) { - if (activeTab === 'apps') { - $('#no-apps-notice').hide(); - $('#app-list').show(); - } - $('.app-card').remove(); - apps.forEach(app => { - $('#app-list-table > tbody').append(generate_app_card(app)); - }); - count_apps(); - sort_apps(); - activate_tippy(); - } else { - $('#no-apps-notice').show(); - } - }) - }, 1000); + puter.ui.hideSpinner(); }); -/** - * Refreshes the list of apps in the UI. - * - * @param {boolean} [show_loading=false] - Whether to show a loading indicator while refreshing. - * - */ - -function refresh_app_list(show_loading = false) { - if (show_loading) - puter.ui.showSpinner(); - // get apps - setTimeout(function () { - // uncheck the select all checkbox - $('.select-all-apps').prop('checked', false); - - puter.apps.list({ icon_size: 64 }).then((apps_res) => { - puter.ui.hideSpinner(); - apps = apps_res; - if (apps.length > 0) { - if (activeTab === 'apps') { - $('#no-apps-notice').hide(); - $('#app-list').show(); - } - $('.app-card').remove(); - apps.forEach(app => { - $('#app-list-table > tbody').append(generate_app_card(app)); - }); - count_apps(); - sort_apps(); - } else { - $('#no-apps-notice').show(); - $('#app-list').hide() - } - activate_tippy(); - }) - }, show_loading ? 1000 : 0); -} - -function refresh_worker_list(show_loading = false) { - if (show_loading) - puter.ui.showSpinner(); - // get workers - setTimeout(function () { - puter.workers.list().then((workers_res) => { - workers = workers_res; - puter.ui.hideSpinner(); - }) - }, 1000); -} - -$(document).on('click', '.tab-btn', function (e) { +// --------------------------------------------------------------- +// Tab Buttons +// --------------------------------------------------------------- +$(document).on('click', '.tab-btn', async function (e) { puter.ui.showSpinner(); $('section:not(.sidebar)').hide(); $('.tab-btn').removeClass('active'); @@ -241,21 +111,29 @@ $(document).on('click', '.tab-btn', function (e) { // Workers tab // --------------------------------------------------------------- else if ($(this).attr('data-tab') === 'workers') { - // Get workers - puter.workers.list().then((resp) => { - workers = resp || []; - if (activeTab === 'workers' && workers.length > 0) { - $('#no-workers-notice').hide(); - $('#worker-list').show(); - workers.forEach(worker => { - $('#worker-list-table > tbody').append(generate_worker_card(worker)); - }); - } else { - $('#no-workers-notice').show(); - $('#worker-list').hide(); - } - }) activeTab = 'workers'; + // puter.workers.list() returns an object with each worker as a key and the worker object as the value + // so we need to convert it to an array, key is the worker name and value is the worker object + window.workers = Object.entries(await puter.workers.list()); + // Get workers + if (activeTab === 'workers' && window.workers.length > 0) { + $('#no-workers-notice').hide(); + $('#worker-list').show(); + window.workers.forEach(([name, worker]) => { + // append row to worker-list-table + $('#worker-list-table > tbody').append(` + + ${name} + + + + + `); + }); + } else { + $('#no-workers-notice').show(); + $('#worker-list').hide(); + } } // --------------------------------------------------------------- // Payout Method tab @@ -279,952 +157,6 @@ $(document).on('click', '.tab-btn', function (e) { puter.ui.hideSpinner(); }) -$(document).on('click', '.create-an-app-btn', async function (e) { - let title = await puter.ui.prompt('Please enter a title for your app:', 'My Awesome App'); - - if (title.length > 60) { - puter.ui.alert(`Title cannot be longer than 60.`, [ - { - label: 'Ok', - }, - ]); - // todo go back to create an app prompt and prefill the title input with the title the user entered - return; - } - else if (title) { - create_app(title); - } -}) - -$(document).on('click', '.create-a-worker-btn', async function (e) { - let name = await puter.ui.prompt('Please enter a name for your worker:', 'My Awesome Worker'); - - if (name) { - create_worker(name); - } -}) - -async function create_app(title, source_path = null, items = null) { - // name - let name = slugify(title, { - lower: true, - strict: true, - }); - - // icon - let icon = await getBase64ImageFromUrl('./img/app.svg'); - - // open the 'Creting new app...' modal - let start_ts = Date.now(); - - puter.ui.showSpinner(); - - //---------------------------------------------------- - // Create app - //---------------------------------------------------- - puter.apps.create({ - title: title, - name: name, - indexURL: 'https://dev-center.puter.com/coming-soon.html', - icon: icon, - description: ' ', - maximizeOnStart: false, - background: false, - dedupeName: true, - metadata: { - window_resizable: true, - fullpage_on_landing: true, - }, - - }) - .then(async (app) => { - let app_dir; - // ---------------------------------------------------- - // Create app directory in AppData - // ---------------------------------------------------- - app_dir = await puter.fs.mkdir( - `/${authUsername}/AppData/${dev_center_uid}/${app.uid}`, - { overwrite: true, recursive: true, rename: false } - ); - // ---------------------------------------------------- - // Create a router for the app with a fresh hostname - // ---------------------------------------------------- - let subdomain = name + '-' + Math.random().toString(36).substring(2) - await puter.hosting.create(subdomain, app_dir.path); - - // ---------------------------------------------------- - // Update the app with the new hostname - // ---------------------------------------------------- - puter.apps.update(app.name, { - title: title, - indexURL: source_path ? protocol + `://${subdomain}.` + static_hosting_domain : 'https://dev-center.puter.com/coming-soon.html', - icon: icon, - description: ' ', - maximizeOnStart: false, - background: false, - metadata: { - category: null, // default category on creation - window_resizable: true, - fullpage_on_landing: true, - } -}).then(async (app) => { - // refresh app list - puter.apps.list({ icon_size: 64 }).then(async (resp) => { - apps = resp; - // Close the 'Creting new app...' modal - // but make sure it was shown for at least 2 seconds - setTimeout(() => { - // open edit app section - edit_app_section(app.name); - refresh_app_list(); // ✅ Refreshes main app list - - // set drop area if source_path was provided or items were dropped - if (source_path || items) { - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - } - puter.ui.hideSpinner(); - // deploy app if source_path was provided - if (source_path) { - deploy(app, source_path); - } else if (items) { - deploy(app, items); - } - activate_tippy(); - }, (Date.now() - start_ts) > 2000 ? 1 : 2000 - (Date.now() - start_ts)); - }) - }).catch(async (err) => { - console.log(err); - }) - // ---------------------------------------------------- - // Create a "shortcut" on the desktop - // ---------------------------------------------------- - puter.fs.upload(new File([], app.title), - `/${authUsername}/Desktop`, - { - name: app.title, - dedupeName: true, - overwrite: false, - appUID: app.uid, - } - ) - }).catch(async (err) => { - $('#create-app-error').show(); - $('#create-app-error').html(err.message); - // scroll to top so that user sees error message - document.body.scrollTop = document.documentElement.scrollTop = 0; - }) -} - -async function create_worker(name) { - let worker = await puter.workers.create({ - name: name, - }); -} - -$(document).on('click', '.deploy-btn', function (e) { - deploy(currently_editing_app, dropped_items); -}) - -$(document).on('click', '.edit-app, .got-to-edit-app', function (e) { - const cur_app_name = $(this).attr('data-app-name') - edit_app_section(cur_app_name); -}) - -$(document).on('click', '.delete-app', async function (e) { - let app_uid = $(this).attr('data-app-uid'); - let app_title = $(this).attr('data-app-title'); - let app_name = $(this).attr('data-app-name'); - - // get app - const app_data = await puter.apps.get(app_name, { icon_size: 16 }); - - if(app_data.metadata?.locked){ - puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ - { - label: 'Ok', - }, - ], { - type: 'warning', - }); - return; - } - - // confirm delete - const alert_resp = await puter.ui.alert(`Are you sure you want to premanently delete ${html_encode(app_title)}?`, - [ - { - label: 'Yes, delete permanently', - value: 'delete', - type: 'danger', - }, - { - label: 'Cancel' - }, - ] - ); - - if (alert_resp === 'delete') { - let init_ts = Date.now(); - puter.ui.showSpinner(); - puter.apps.delete(app_name).then(async (app) => { - setTimeout(() => { - puter.ui.hideSpinner(); - $(`.app-card[data-uid="${app_uid}"]`).fadeOut(200, function name(params) { - $(this).remove(); - if ($(`.app-card`).length === 0) { - $('section:not(.sidebar)').hide(); - $('#no-apps-notice').show(); - } else { - $('section:not(.sidebar)').hide(); - $('#app-list').show(); - } - count_apps(); - }); - }, - // make sure the modal was shown for at least 2 seconds - (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); - - // get app directory - puter.fs.stat({ - path: `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - returnSubdomains: true, - }).then(async (stat) => { - // delete subdomain associated with the app dir - puter.hosting.delete(stat.subdomains[0].subdomain) - // delete app directory - puter.fs.delete( - `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - { recursive: true } - ) - }) - }).catch(async (err) => { - setTimeout(() => { - puter.ui.hideSpinner(); - puter.ui.alert(err?.message, [ - { - label: 'Ok', - }, - ]); - }, - // make sure the modal was shown for at least 2 seconds - (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); - }) - } -}) - -// generate app link -function applink(app) { - return protocol + `://${domain}${ port ? ':' + port : '' }/app/${app.name}`; -} - -/** - * Generates the HTML for the app editing section. - * - * @param {Object} app - The app object containing details of the app to be edited. - * * - * @returns {string} HTML string for the app editing section. - * - * @description - * This function creates the HTML for the app editing interface, including: - * - App icon and title display - * - Options to open, add to desktop, or delete the app - * - Tabs for deployment and settings - * - Form fields for editing various app properties - * - Display of app statistics - * - * The generated HTML includes interactive elements and placeholders for - * dynamic content to be filled or updated by other functions. - * - * @example - * const appEditHTML = generate_edit_app_section(myAppObject); - * $('#edit-app').html(appEditHTML); - */ - -function generate_edit_app_section(app) { - if(app.result) - app = app.result; - - let maximize_on_start = app.maximize_on_start ? 'checked' : ''; - - let h = ``; - h += ` -
-
- -

${html_encode(app.title)}${app.metadata?.locked ? lock_svg_tippy : ''}

-
- Open - - Add Shortcut to Desktop - - Delete -
- ${html_encode(applink(app))} -
- -
- -
    -
  • Deploy
  • -
  • Settings
  • -
  • Analytics
  • -
- -
-
- New version deployed successfully 🎉× -

Give it a try!

-
-
${drop_area_placeholder}
- -
- -
-
-
-
App has been successfully updated.× -

Give it a try!

-
- - -

Basic

- - - - - - - - - - -
- ${copy_svg} -
- - -
-
Change App Icon
-
- Remove icon - - ${generateSocialImageSection(app)} - - - - - - - -

A list of file type specifiers. For example if you include .txt your apps could be opened when a user clicks on a TXT file.

-

You can paste multiple extensions at once (comma, space, or tab separated) or press comma to add each extension.

- - -

Window

-
- - -
- -
- - -
- -
- - -
- -
- - - - -
- -
- - - - -
- -
- - -
- -
- - -
- -

Misc

-
- - -

When enabled, the app cannot be deleted. This is useful for preventing accidental deletion of important apps.

-
- -
- - -
-
-
-
- - -
-
-

Users

-
-
-
-

Opens

-
-
-
-
-

Timezone: UTC

-

More analytics features coming soon...

-
- ` - return h; -} - -/* This function keeps track of the original values of the app before it is edited*/ -function trackOriginalValues(){ - originalValues = { - title: $('#edit-app-title').val(), - name: $('#edit-app-name').val(), - indexURL: $('#edit-app-index-url').val(), - description: $('#edit-app-description').val(), - icon: $('#edit-app-icon').attr('data-base64'), - fileAssociations: $('#edit-app-filetype-associations').val(), - category: $('#edit-app-category').val(), - socialImage: $('#edit-app-social-image').attr('data-base64'), - windowSettings: { - width: $('#edit-app-window-width').val(), - height: $('#edit-app-window-height').val(), - top: $('#edit-app-window-top').val(), - left: $('#edit-app-window-left').val() - }, - checkboxes: { - maximizeOnStart: $('#edit-app-maximize-on-start').is(':checked'), - background: $('#edit-app-background').is(':checked'), - resizableWindow: $('#edit-app-window-resizable').is(':checked'), - hideTitleBar: $('#edit-app-hide-titlebar').is(':checked'), - locked: $('#edit-app-locked').is(':checked'), - fullPageOnLanding: $('#edit-app-fullpage-on-landing').is(':checked') - } - }; -} - -/* This function compares for all fields and checks if anything has changed from before editting*/ -function hasChanges() { - // is icon changed - if($('#edit-app-icon').attr('data-base64') !== originalValues.icon){ - return true; - } - - // if social image is changed - if($('#edit-app-social-image').attr('data-base64') !== originalValues.socialImage){ - return true; - } - - // if any of the fields have changed - return( - $('#edit-app-title').val() !== originalValues.title || - $('#edit-app-name').val() !== originalValues.name || - $('#edit-app-index-url').val() !== originalValues.indexURL || - $('#edit-app-description').val() !== originalValues.description || - $('#edit-app-icon').attr('data-base64') !== originalValues.icon || - $('#edit-app-filetype-associations').val() !== originalValues.fileAssociations || - $('#edit-app-category').val() !== originalValues.category || - $('#edit-app-social-image').attr('data-base64') !== originalValues.socialImage || - $('#edit-app-window-width').val() !== originalValues.windowSettings.width || - $('#edit-app-window-height').val() !== originalValues.windowSettings.height || - $('#edit-app-window-top').val() !== originalValues.windowSettings.top || - $('#edit-app-window-left').val() !== originalValues.windowSettings.left || - $('#edit-app-maximize-on-start').is(':checked') !== originalValues.checkboxes.maximizeOnStart || - $('#edit-app-background').is(':checked') !== originalValues.checkboxes.background || - $('#edit-app-window-resizable').is(':checked') !== originalValues.checkboxes.resizableWindow || - $('#edit-app-hide-titlebar').is(':checked') !== originalValues.checkboxes.hideTitleBar || - $('#edit-app-locked').is(':checked') !== originalValues.checkboxes.locked || - $('#edit-app-fullpage-on-landing').is(':checked') !== originalValues.checkboxes.fullPageOnLanding - ); -} - -/* This function enables or disables the save button if there are any changes made */ -function toggleSaveButton() { - if (hasChanges()) { - $('.edit-app-save-btn').prop('disabled', false); - } else { - $('.edit-app-save-btn').prop('disabled', true); - } -} - -/* This function enables or disables the reset button if there are any changes made */ -function toggleResetButton() { - if (hasChanges()) { - $('.edit-app-reset-btn').prop('disabled', false); - } else { - $('.edit-app-reset-btn').prop('disabled', true); - } -} - -/* This function revers the changes made back to the original values of the edit form */ -function resetToOriginalValues() { - $('#edit-app-title').val(originalValues.title); - $('#edit-app-name').val(originalValues.name); - $('#edit-app-index-url').val(originalValues.indexURL); - $('#edit-app-description').val(originalValues.description); - $('#edit-app-filetype-associations').val(originalValues.fileAssociations); - $('#edit-app-category').val(originalValues.category); - $('#edit-app-window-width').val(originalValues.windowSettings.width); - $('#edit-app-window-height').val(originalValues.windowSettings.height); - $('#edit-app-window-top').val(originalValues.windowSettings.top); - $('#edit-app-window-left').val(originalValues.windowSettings.left); - $('#edit-app-maximize-on-start').prop('checked', originalValues.checkboxes.maximizeOnStart); - $('#edit-app-background').prop('checked', originalValues.checkboxes.background); - $('#edit-app-window-resizable').prop('checked', originalValues.checkboxes.resizableWindow); - $('#edit-app-hide-titlebar').prop('checked', originalValues.checkboxes.hideTitleBar); - $('#edit-app-locked').prop('checked', originalValues.checkboxes.locked); - $('#edit-app-fullpage-on-landing').prop('checked', originalValues.checkboxes.fullPageOnLanding); - - if (originalValues.icon) { - $('#edit-app-icon').css('background-image', `url(${originalValues.icon})`); - $('#edit-app-icon').attr('data-url', originalValues.icon); - $('#edit-app-icon').attr('data-base64', originalValues.icon); - $('#edit-app-icon-delete').show(); - } else { - $('#edit-app-icon').css('background-image', ''); - $('#edit-app-icon').removeAttr('data-url'); - $('#edit-app-icon').removeAttr('data-base64'); - $('#edit-app-icon-delete').hide(); - } - - if (originalValues.socialImage) { - $('#edit-app-social-image').css('background-image', `url(${originalValues.socialImage})`); - $('#edit-app-social-image').attr('data-url', originalValues.socialImage); - $('#edit-app-social-image').attr('data-base64', originalValues.socialImage); - } else { - $('#edit-app-social-image').css('background-image', ''); - $('#edit-app-social-image').removeAttr('data-url'); - $('#edit-app-social-image').removeAttr('data-base64'); - } -} - -async function edit_app_section(cur_app_name, tab = 'deploy') { - $('section:not(.sidebar)').hide(); - $('.tab-btn').removeClass('active'); - $('.tab-btn[data-tab="apps"]').addClass('active'); - - let cur_app = await puter.apps.get(cur_app_name, {icon_size: 128, stats_period: 'today'}); - - currently_editing_app = cur_app; - - // generate edit app section - $('#edit-app').html(generate_edit_app_section(cur_app)); - trackOriginalValues(); // Track initial field values - toggleSaveButton(); // Ensure Save button is initially disabled - toggleResetButton(); // Ensure Reset button is initially disabled - $('#edit-app').show(); - - // analytics - $('#analytics-users .count').html(cur_app.stats.user_count); - $('#analytics-opens .count').html(cur_app.stats.open_count); - - render_analytics('today') - - // show the correct tab - $('.section-tab').hide(); - $(`.section-tab[data-tab="${tab}"]`).show(); - $('.section-tab-buttons .section-tab-btn').removeClass('active'); - $(`.section-tab-buttons .section-tab-btn[data-tab="${tab}"]`).addClass('active'); - - const filetype_association_input = document.querySelector('textarea[id=edit-app-filetype-associations]'); - let tagify = new Tagify(filetype_association_input, { - pattern: /\.(?:[a-z0-9]+)|(?:[a-z]+\/(?:[a-z0-9.-]+|\*))/, - delimiters: ",", // Use comma as delimiter - duplicates: false, // Prevent duplicate tags - enforceWhitelist: false, - dropdown : { - // show the dropdown immediately on focus (0 character typed) - enabled: 0, - }, - whitelist: [ - // MIME type patterns - "text/*", "image/*", "audio/*", "video/*", "application/*", - - // Documents - ".doc", ".docx", ".pdf", ".txt", ".odt", ".rtf", ".tex", ".md", ".pages", ".epub", ".mobi", ".azw", ".azw3", ".djvu", ".xps", ".oxps", ".fb2", ".textile", ".markdown", ".asciidoc", ".rst", ".wpd", ".wps", ".abw", ".zabw", - - // Spreadsheets - ".xls", ".xlsx", ".csv", ".ods", ".numbers", ".tsv", ".gnumeric", ".xlt", ".xltx", ".xlsm", ".xltm", ".xlam", ".xlsb", - - // Presentations - ".ppt", ".pptx", ".key", ".odp", ".pps", ".ppsx", ".pptm", ".potx", ".potm", ".ppam", - - // Images - ".jpg", ".jpeg", ".png", ".gif", ".bmp", ".tiff", ".tif", ".svg", ".webp", ".ico", ".psd", ".ai", ".eps", ".raw", ".cr2", ".nef", ".orf", ".sr2", ".heic", ".heif", ".avif", ".jxr", ".hdp", ".wdp", ".jng", ".xcf", ".pgm", ".pbm", ".ppm", ".pnm", - - // Video - ".mp4", ".avi", ".mov", ".wmv", ".mkv", ".flv", ".webm", ".m4v", ".mpeg", ".mpg", ".3gp", ".3g2", ".ogv", ".vob", ".drc", ".gifv", ".mng", ".qt", ".yuv", ".rm", ".rmvb", ".asf", ".amv", ".m2v", ".svi", - - // Audio - ".mp3", ".wav", ".aac", ".flac", ".ogg", ".m4a", ".wma", ".aiff", ".alac", ".ape", ".au", ".mid", ".midi", ".mka", ".pcm", ".ra", ".ram", ".snd", ".wv", ".opus", - - // Code/Development - ".js", ".ts", ".html", ".css", ".json", ".xml", ".php", ".py", ".java", ".cpp", ".c", ".cs", ".h", ".hpp", ".hxx", ".rs", ".go", ".rb", ".pl", ".swift", ".kt", ".kts", ".scala", ".coffee", ".sass", ".scss", ".less", ".jsx", ".tsx", ".vue", ".sh", ".bash", ".zsh", ".fish", ".ps1", ".bat", ".cmd", ".sql", ".r", ".dart", ".f", ".f90", ".for", ".lua", ".m", ".mm", ".clj", ".erl", ".ex", ".exs", ".elm", ".hs", ".lhs", ".lisp", ".ml", ".mli", ".nim", ".pl", ".rkt", ".v", ".vhd", - - // Archives - ".zip", ".rar", ".7z", ".tar", ".gz", ".bz2", ".xz", ".z", ".lz", ".lzma", ".tlz", ".txz", ".tgz", ".tbz2", ".bz", ".br", ".lzo", ".ar", ".cpio", ".shar", ".lrz", ".lz4", ".lz2", ".rz", ".sfark", ".sz", ".zoo", - - // Database - ".db", ".sql", ".sqlite", ".sqlite3", ".dbf", ".mdb", ".accdb", ".db3", ".s3db", ".dbx", - - // Fonts - ".ttf", ".otf", ".woff", ".woff2", ".eot", ".pfa", ".pfb", ".sfd", - - // CAD and 3D - ".dwg", ".dxf", ".stl", ".obj", ".fbx", ".dae", ".3ds", ".blend", ".max", ".ma", ".mb", ".c4d", ".skp", ".usd", ".usda", ".usdc", ".abc", - - // Scientific/Technical - ".mat", ".fig", ".nb", ".cdf", ".fits", ".fts", ".fit", ".gmsh", ".msh", ".fem", ".neu", ".hdf", ".h5", ".nx", ".unv", - - // System - ".exe", ".dll", ".so", ".dylib", ".app", ".dmg", ".iso", ".img", ".bin", ".msi", ".apk", ".ipa", ".deb", ".rpm", - - // Directory - ".directory" - ], - }) - - // -------------------------------------------------------- - // Dragster - // -------------------------------------------------------- - let drop_area_content = drop_area_placeholder; - - $('.drop-area').dragster({ - enter: function (dragsterEvent, event) { - drop_area_content = $('.drop-area').html(); - $('.drop-area').addClass('drop-area-hover'); - $('.drop-area').html(drop_area_placeholder); - }, - leave: function (dragsterEvent, event) { - $('.drop-area').html(drop_area_content); - $('.drop-area').removeClass('drop-area-hover'); - }, - drop: async function (dragsterEvent, event) { - const e = event.originalEvent; - e.stopPropagation(); - e.preventDefault(); - - // hide previous success message - $('.deploy-success-msg').fadeOut(); - - // remove hover class - $('.drop-area').removeClass('drop-area-hover'); - - //---------------------------------------------------- - // Puter items dropped - //---------------------------------------------------- - if (e.detail?.items?.length > 0) { - let items = e.detail.items; - - // ---------------------------------------------------- - // One Puter file dropped - // ---------------------------------------------------- - if (items.length === 1 && !items[0].isDirectory) { - if (items[0].name.toLowerCase() === 'index.html') { - dropped_items = items[0].path; - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - drop_area_content = `

index.html

Ready to deploy 🚀

Cancel

`; - $('.drop-area').html(drop_area_content); - - // enable deploy button - $('.deploy-btn').removeClass('disabled'); - - } else { - puter.ui.alert(`You need to have an index.html file in your deployment.`, [ - { - label: 'Ok', - }, - ]); - $('.drop-area').removeClass('drop-area-ready-to-deploy'); - $('.deploy-btn').addClass('disabled'); - dropped_items = []; - } - return; - } - // ---------------------------------------------------- - // Multiple Puter files dropped - // ---------------------------------------------------- - else if (items.length > 1) { - let hasIndexHtml = false; - for (let item of items) { - if (item.name.toLowerCase() === 'index.html') { - hasIndexHtml = true; - break; - } - } - - if (hasIndexHtml) { - dropped_items = items; - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - drop_area_content = `

${items.length} items

Ready to deploy 🚀

Cancel

`; - $('.drop-area').html(drop_area_content); - - // enable deploy button - $('.deploy-btn').removeClass('disabled'); - } else { - puter.ui.alert(`You need to have an index.html file in your deployment.`, [ - { - label: 'Ok', - }, - ]); - $('.drop-area').removeClass('drop-area-ready-to-deploy'); - $('.drop-area').removeClass('drop-area-hover'); - $('.deploy-btn').addClass('disabled'); - dropped_items = []; - } - return; - } - // ---------------------------------------------------- - // One Puter directory dropped - // ---------------------------------------------------- - else if (items.length === 1 && items[0].isDirectory) { - let children = await puter.fs.readdir(items[0].path); - // check if index.html exists, if found, deploy entire directory - for (let child of children) { - if (child.name === 'index.html') { - // deploy(currently_editing_app, items[0].path); - dropped_items = items[0].path; - let rootItems = ''; - - if (children.length === 1) - rootItems = children[0].name; - else if (children.length === 2) - rootItems = children[0].name + ', ' + children[1].name; - else if (children.length === 3) - rootItems = children[0].name + ', ' + children[1].name + ', and' + children[1].name; - else if (children.length > 3) - rootItems = children[0].name + ', ' + children[1].name + ', and ' + (children.length - 2) + ' more item' + (children.length - 2 > 1 ? 's' : ''); - - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - drop_area_content = `

${rootItems}

Ready to deploy 🚀

Cancel

`; - $('.drop-area').html(drop_area_content); - - // enable deploy button - $('.deploy-btn').removeClass('disabled'); - return; - } - } - - // no index.html in directory - puter.ui.alert(index_missing_error, [ - { - label: 'Ok', - }, - ]); - $('.drop-area').removeClass('drop-area-ready-to-deploy'); - $('.deploy-btn').addClass('disabled'); - dropped_items = []; - } - - return false; - } - - //----------------------------------------------------------------------------- - // Local items dropped - //----------------------------------------------------------------------------- - if (!e.dataTransfer || !e.dataTransfer.items || e.dataTransfer.items.length === 0) - return; - - // get dropped items - dropped_items = await puter.ui.getEntriesFromDataTransferItems(e.dataTransfer.items); - - // generate a flat array of full paths from the dropped items - let paths = []; - for (let item of dropped_items) { - paths.push('/' + (item.fullPath ?? item.filepath)); - } - - // generate a directory tree from the paths - let tree = generateDirTree(paths); - - dropped_items = setRootDirTree(tree, dropped_items); - - // alert if no index.html in root - if (!hasRootIndexHtml(tree)) { - puter.ui.alert(index_missing_error, [ - { - label: 'Ok', - }, - ]); - $('.drop-area').removeClass('drop-area-ready-to-deploy'); - $('.deploy-btn').addClass('disabled'); - dropped_items = []; - return; - } - - // Get all keys (directories and files) in the root - const rootKeys = Object.keys(tree); - - // generate a list of items in the root in the form of a string (e.g. /index.html, /css/style.css) with maximum of 3 items - let rootItems = ''; - - if (rootKeys.length === 1) - rootItems = rootKeys[0]; - else if (rootKeys.length === 2) - rootItems = rootKeys[0] + ', ' + rootKeys[1]; - else if (rootKeys.length === 3) - rootItems = rootKeys[0] + ', ' + rootKeys[1] + ', and' + rootKeys[1]; - else if (rootKeys.length > 3) - rootItems = rootKeys[0] + ', ' + rootKeys[1] + ', and ' + (rootKeys.length - 2) + ' more item' + (rootKeys.length - 2 > 1 ? 's' : ''); - - rootItems = html_encode(rootItems); - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - drop_area_content = `

${rootItems}

Ready to deploy 🚀

Cancel

`; - $('.drop-area').html(drop_area_content); - - // enable deploy button - $('.deploy-btn').removeClass('disabled'); - - return false; - } - }); - - // Focus on the first input - $('#edit-app-title').focus(); - - try { - activate_tippy(); - } catch (e) { - console.log('no tippy:', e); - } - - // Custom function to handle bulk pasting of file extensions - if (tagify) { - // Create a completely separate paste handler - const handleBulkPaste = function(e) { - const clipboardData = e.clipboardData || window.clipboardData; - if (!clipboardData) return; - - const pastedText = clipboardData.getData('text'); - if (!pastedText) return; - - // Check if the pasted text contains delimiters - if (/[,;\t\s]/.test(pastedText)) { - e.stopPropagation(); - e.preventDefault(); - - // Process the pasted text to extract extensions - const extensions = pastedText.split(/[,;\t\s]+/) - .map(ext => ext.trim()) - .filter(ext => ext && (ext.startsWith('.') || ext.includes('/'))); - - if (extensions.length > 0) { - // Get existing values to prevent duplicates - const existingValues = tagify.value.map(tag => tag.value); - - // Only add extensions that don't already exist - const newExtensions = extensions.filter(ext => !existingValues.includes(ext)); - - if (newExtensions.length > 0) { - // Add the new tags - tagify.addTags(newExtensions); - - // Update the UI - setTimeout(() => { - toggleSaveButton(); - toggleResetButton(); - }, 10); - } - } - - // Clear the input element to prevent any text concatenation - setTimeout(() => { - if (tagify.DOM.input) { - tagify.DOM.input.textContent = ''; - } - }, 10); - } - }; - - // Add the paste handler directly to the tagify wrapper element - const tagifyWrapper = tagify.DOM.scope; - if (tagifyWrapper) { - tagifyWrapper.addEventListener('paste', handleBulkPaste, true); - } - - // Also add it to the input element for better coverage - if (tagify.DOM.input) { - tagify.DOM.input.addEventListener('paste', handleBulkPaste, true); - } - - // Add a comma key handler to support adding tags with comma - tagify.DOM.input.addEventListener('keydown', function(e) { - if (e.key === ',' && tagify.DOM.input.textContent.trim()) { - e.preventDefault(); - - const text = tagify.DOM.input.textContent.trim(); - - // Only add valid extensions - if ((text.startsWith('.') || text.includes('/')) && - tagify.settings.pattern.test(text)) { - - // Check for duplicates - const existingValues = tagify.value.map(tag => tag.value); - - if (!existingValues.includes(text)) { - tagify.addTags([text]); - - // Update UI - setTimeout(() => { - toggleSaveButton(); - toggleResetButton(); - }, 10); - } - - // Always clear the input - tagify.DOM.input.textContent = ''; - } - } - }); - } -} - $('.jip-submit-btn').on('click', async function (e) { const first_name = $('#jip-first-name').val(); const last_name = $('#jip-last-name').val(); @@ -1288,201 +220,6 @@ $('.jip-submit-btn').on('click', async function (e) { }) }) -$(document).on('click', '.edit-app-save-btn', async function (e) { - const title = $('#edit-app-title').val(); - const name = $('#edit-app-name').val(); - const index_url = $('#edit-app-index-url').val(); - const description = $('#edit-app-description').val(); - const uid = $('#edit-app-uid').val(); - const height = $('#edit-app-window-height').val(); - const width = $('#edit-app-window-width').val(); - const top = $('#edit-app-window-top').val(); - const left = $('#edit-app-window-left').val(); - const category = $('#edit-app-category').val(); - - let filetype_associations = $('#edit-app-filetype-associations').val(); - - let icon; - - let error; - - //validation - if (title === '') - error = `Title is required.`; - else if (title.length > 60) - error = `Title cannot be longer than ${60}.`; - else if (name === '') - error = `Name is required.`; - else if (name.length > 60) - error = `Name cannot be longer than ${60}.`; - else if (index_url === '') - error = `Index URL is required.`; - else if (!name.match(/^[a-zA-Z0-9-_-]+$/)) - error = `Name can only contain letters, numbers, dash (-) and underscore (_).`; - else if (!is_valid_url(index_url)) - error = `Index URL must be a valid url.`; - else if (!index_url.toLowerCase().startsWith('https://') && !index_url.toLowerCase().startsWith('http://')) - error = `Index URL must start with 'https://' or 'http://'.`; - // height must be a number - else if (isNaN(height)) - error = `Window Height must be a number.`; - // height must be greater than 0 - else if (height <= 0) - error = `Window Height must be greater than 0.`; - // width must be a number - else if (isNaN(width)) - error = `Window Width must be a number.`; - // width must be greater than 0 - else if (width <= 0) - error = `Window Width must be greater than 0.`; - // top must be a number - else if (top && isNaN(top)) - error = `Window Top must be a number.`; - // left must be a number - else if (left && isNaN(left)) - error = `Window Left must be a number.`; - - // download icon from URL - else { - let icon_url = $('#edit-app-icon').attr('data-url'); - let icon_base64 = $('#edit-app-icon').attr('data-base64'); - - if(icon_base64){ - icon = icon_base64; - }else if (icon_url) { - icon = await getBase64ImageFromUrl(icon_url); - let app_max_icon_size = 5 * 1024 * 1024; - if (icon.length > app_max_icon_size) - error = `Icon cannot be larger than ${byte_format(app_max_icon_size)}`; - // make sure icon is an image - else if (!icon.startsWith('data:image/') && !icon.startsWith('data:application/octet-stream')) - error = `Icon must be an image.`; - }else{ - icon = null; - } - } - - // parse filetype_associations - if(filetype_associations !== ''){ - filetype_associations = JSON.parse(filetype_associations); - filetype_associations = filetype_associations.map((type) => { - const fileType = type.value; - if ( - !fileType || - fileType === "." || - fileType === "/" - ) { - error = `File Association Type must be valid.`; - return null; // Return null for invalid cases - } - const lower = fileType.toLocaleLowerCase(); - - if (fileType.includes("/")) { - return lower; - } else if (fileType.includes(".")) { - return "." + lower.split(".")[1]; - } else { - return "." + lower; - } - }).filter(Boolean); - } - - // error? - if (error) { - $('#edit-app-error').show(); - $('#edit-app-error').html(error); - document.body.scrollTop = document.documentElement.scrollTop = 0; - return; - } - - // show working spinner - puter.ui.showSpinner(); - - // disable submit button - $('.edit-app-save-btn').prop('disabled', true); - - let socialImageUrl = null; - if ($('#edit-app-social-image').attr('data-base64')) { - socialImageUrl = await handleSocialImageUpload(name, $('#edit-app-social-image').attr('data-base64')); - } else if ($('#edit-app-social-image').attr('data-url')) { - socialImageUrl = $('#edit-app-social-image').attr('data-url'); - } - - puter.apps.update(currently_editing_app.name, { - title: title, - name: name, - indexURL: index_url, - icon: icon, - description: description, - maximizeOnStart: $('#edit-app-maximize-on-start').is(":checked"), - background: $('#edit-app-background').is(":checked"), - metadata: { - fullpage_on_landing: $('#edit-app-fullpage-on-landing').is(":checked"), - social_image: socialImageUrl, - category: category || null, - window_size: { - width: width ?? 800, - height: height ?? 600, - }, - window_position: { - top: top, - left: left, - }, - window_resizable: $('#edit-app-window-resizable').is(":checked"), - hide_titlebar: $('#edit-app-hide-titlebar').is(":checked"), - locked: $(`#edit-app-locked`).is(":checked") ?? false, - }, - filetypeAssociations: filetype_associations, - }).then(async (app) => { - refresh_app_list(); - - currently_editing_app = app; - trackOriginalValues(); // Update original values after save - toggleSaveButton(); //Disable Save Button after succesful save - toggleResetButton(); //DIsable Reset Button after succesful save - $('#edit-app-error').hide(); - $('#edit-app-success').show(); - document.body.scrollTop = document.documentElement.scrollTop = 0; - // Update open-app-btn - $(`.open-app-btn[data-app-uid="${uid}"]`).attr('data-app-name', app.name); - $(`.open-app[data-uid="${uid}"]`).attr('data-app-name', app.name); - // Update title - $(`.app-title[data-uid="${uid}"]`).html(html_encode(app.title)); - // Update app link - $(`.app-url[data-uid="${uid}"]`).html(applink(app)); - $(`.app-url[data-uid="${uid}"]`).attr('href', applink(app)); - // Update icons - $(`.app-icon[data-uid="${uid}"]`).attr('src', html_encode(app.icon ? app.icon : './img/app.svg')); - $(`[data-app-uid="${uid}"]`).attr('data-app-title', html_encode(app.title)); - $(`[data-app-name="${uid}"]`).attr('data-app-name', html_encode(app.name)); - }).catch((err) => { - $('#edit-app-success').hide(); - $('#edit-app-error').show(); - $('#edit-app-error').html(err.error?.message); - // scroll to top so that user sees error message - document.body.scrollTop = document.documentElement.scrollTop = 0; - // re-enable submit button - $('.edit-app-save-btn').prop('disabled', false); - }).finally(() => { - puter.ui.hideSpinner(); - }) -}) - -$(document).on('input change', '#edit-app input, #edit-app textarea, #edit-app select', () => { - toggleSaveButton(); - toggleResetButton(); -}); - -$(document).on('click', '.edit-app-reset-btn', function () { - resetToOriginalValues(); - toggleSaveButton(); // Disable Save button since values are reverted to original - toggleResetButton(); //Disable Reset button since values are reverted to original -}); - -$(document).on('click', '.open-app-btn', async function (e) { - puter.ui.launchApp($(this).attr('data-app-name')) -}) - $('#earn-money-c2a-close').click(async function (e) { $('#earn-money').get(0).close(); puter.kv.set('earn-money-c2a-closed', 'true') @@ -1494,127 +231,8 @@ $('#earn-money::backdrop').click(async function (e) { puter.kv.set('earn-money-c2a-closed', 'true') }) -$(document).on('click', '.edit-app-open-app-btn', async function (e) { - puter.ui.launchApp($(this).attr('data-app-name')) -}) - -$(document).on('click', '.delete-app-settings', async function (e) { - let app_uid = $(this).attr('data-app-uid'); - let app_name = $(this).attr('data-app-name'); - let app_title = $(this).attr('data-app-title'); - - // check if app is locked - const app_data = await puter.apps.get(app_name, {icon_size: 16}); - - if(app_data.metadata?.locked){ - puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ - { - label: 'Ok', - }, - ], { - type: 'warning', - }); - return; - } - - // confirm delete - const alert_resp = await puter.ui.alert(`Are you sure you want to premanently delete ${html_encode(app_title)}?`, - [ - { - label: 'Yes, delete permanently', - value: 'delete', - type: 'danger', - }, - { - label: 'Cancel' - }, - ] - ); - - if (alert_resp === 'delete') { - let init_ts = Date.now(); - puter.ui.showSpinner(); - puter.apps.delete(app_name).then(async (app) => { - setTimeout(() => { - puter.ui.hideSpinner(); - $('.back-to-main-btn').trigger('click'); - }, - // make sure the modal was shown for at least 2 seconds - (Date.now() - init_ts) > 2000 ? 1 : 2000 - (Date.now() - init_ts)); - // get app directory - puter.fs.stat({ - path: `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - returnSubdomains: true, - }).then(async (stat) => { - // delete subdomain associated with the app dir - puter.hosting.delete(stat.subdomains[0].subdomain) - // delete app directory - puter.fs.delete( - `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - { recursive: true } - ) - }) - }).catch(async (err) => { - setTimeout(() => { - puter.ui.hideSpinner(); - puter.ui.alert(err?.message, [ - { - label: 'Ok', - }, - ]); - }, - (Date.now() - init_ts) > 2000 ? 1 : (2000 - (Date.now() - init_ts))); - }) - } -}) - -$(document).on('click', '.edit-app', async function (e) { - $('#edit-app-uid').val($(this).attr('data-app-uid')); -}) - -$(document).on('click', '.back-to-main-btn', function (e) { - $('section:not(.sidebar)').hide(); - $('.tab-btn').removeClass('active'); - $('.tab-btn[data-tab="apps"]').addClass('active'); - - // get apps - puter.ui.showSpinner(); - setTimeout(function () { - puter.apps.list({icon_size: 64}).then((apps_res) => { - // uncheck the select all checkbox - $('.select-all-apps').prop('checked', false); - - puter.ui.hideSpinner(); - apps = apps_res; - if (apps.length > 0) { - if (activeTab === 'apps') { - $('#no-apps-notice').hide(); - $('#app-list').show(); - } - $('.app-card').remove(); - apps.forEach(app => { - $('#app-list-table > tbody').append(generate_app_card(app)); - }); - count_apps(); - sort_apps(); - activate_tippy(); - } else - $('#no-apps-notice').show(); - }) - }, 1000); -}) - -function count_apps() { - let count = 0; - $('.app-card').each(function () { - count++; - }) - $('.app-count').html(count); - return count; -} - // https://stackoverflow.com/a/43467144/1764493 -function is_valid_url(string) { +window.is_valid_url = (string) => { let url; try { @@ -1626,47 +244,7 @@ function is_valid_url(string) { return url.protocol === "http:" || url.protocol === "https:"; } -$(document).on('click', '#edit-app-icon-delete', async function (e) { - $('#edit-app-icon').css('background-image', ``); - $('#edit-app-icon').removeAttr('data-url'); - $('#edit-app-icon').removeAttr('data-base64'); - $('#edit-app-icon-delete').hide(); - - toggleSaveButton(); - toggleResetButton(); -}) - -$(document).on('click', '#edit-app-icon', async function (e) { - const res2 = await puter.ui.showOpenFilePicker({ - accept: "image/*", - }); - - const icon = await puter.fs.read(res2.path); - // convert blob to base64 - const reader = new FileReader(); - reader.readAsDataURL(icon); - - reader.onloadend = function () { - let image = reader.result; - // Get file extension - let fileExtension = res2.name.split('.').pop(); - - // Get MIME type - let mimeType = getMimeType(fileExtension); - - // Replace MIME type in the data URL - image = image.replace('data:application/octet-stream;base64', `data:${mimeType};base64`); - - $('#edit-app-icon').css('background-image', `url(${image})`); - $('#edit-app-icon').attr('data-base64', image); - $('#edit-app-icon-delete').show(); - - toggleSaveButton(); - toggleResetButton(); - } -}) - -async function getBase64ImageFromUrl(imageUrl) { +window.getBase64ImageFromUrl = async (imageUrl) => { var res = await fetch(imageUrl); var blob = await res.blob(); @@ -1683,161 +261,6 @@ async function getBase64ImageFromUrl(imageUrl) { }) } -/** - * Generates HTML for an individual app card in the app list. - * - * @param {Object} app - The app object containing details of the app. - * * - * @returns {string} HTML string representing the app card. - * - * @description - * This function creates an HTML string for an app card, which includes: - * - Checkbox for app selection - * - App icon and title - * - Links to open, edit, add to desktop, or delete the app - * - Display of app statistics (user count, open count) - * - Creation date - * - Incentive program status badge (if applicable) - * - * The generated HTML is designed to be inserted into the app list table. - * It includes data attributes for various interactive features and - * event handling. - * - * @example - * const appCardHTML = generate_app_card(myAppObject); - * $('#app-list-table > tbody').append(appCardHTML); - */ -function generate_app_card(app) { - let h = ``; -h += ``; - // check box - h += ``; - h += `
`; - h += ``; - h += `
`; - h += ``; - // App info (title, category, toolbar) -h += ``; - - // Wrapper for icon + content side by side -h += `
`; - - // Icon - h += `
`; - - // App info content - h += `
`; - - // Info block with fixed layout -h += `
`; - - // Title - h += `

- ${html_encode(app.title)}${app.metadata?.locked ? lock_svg_tippy : ''} -

`; - - // Category (optional) - if (app.metadata?.category) { - const category = APP_CATEGORIES.find(c => c.id === app.metadata.category); - if (category) { - h += `${html_encode(category.label)}`; - } - } - - // Link - h += `${html_encode(applink(app))}`; - -h += `
`; - - - - // Toolbar - h += `
`; - h += `
`; // remove inline styles - - h += `Open`; - h += `Settings`; - h += `Add Shortcut to Desktop`; - h += `Delete`; - h += `
`; -h += `
`; - h += `
`; // end info column - h += `
`; // end row -h += ``; - - - // users count - h += ``; - h += `${number_format((app.stats.referral_count ?? 0) + app.stats.user_count)}`; - h += ``; - - // opens - h += ``; - h += `${number_format(app.stats.open_count)}`; - h += ``; - - // Created - h += ``; - h += `${moment(app.created_at).format('MMM Do, YYYY')}`; - h += ``; - - h += ``; - h += `
`; - // "Approved for listing" - h += ``; - - // "Approved for opening items" - h += ``; - - // "Approved for incentive program" - h += ``; - h += `
`; - h += ``; - h += ``; - return h; -} - /** * Formats a binary-byte integer into the human-readable form with units. * @@ -1854,7 +277,7 @@ window.byte_format = (bytes) => { /** * check if a string is a valid email address */ -function validateEmail(email) { +window.validateEmail = (email) => { var re = /\S+@\S+\.\S+/; return re.test(email); } @@ -1869,7 +292,7 @@ function validateEmail(email) { * @returns {string} The formatted number with grouped thousands, using the specified decimal point and thousands separator characters. * @throws {TypeError} If the `number` parameter cannot be converted to a finite number, or if the `decimals` parameter is non-finite and cannot be converted to an absolute number. */ -function number_format(number, decimals, dec_point, thousands_sep) { +window.number_format = (number, decimals, dec_point, thousands_sep) => { // Strip all characters but numerical ones. number = (number + '').replace(/[^0-9+\-Ee.]/g, ''); var n = !isFinite(+number) ? 0 : +number, @@ -1897,420 +320,6 @@ $(document).on('click', '.close-message', function () { $($(this).attr('data-target')).fadeOut(); }); -$('th.sort').on('click', function (e) { - // determine what column to sort by - const sortByColumn = $(this).attr('data-column'); - - // toggle sort direction - if (sortByColumn === sortBy) { - if (sortDirection === 'asc') - sortDirection = 'desc'; - else - sortDirection = 'asc'; - } - else { - sortBy = sortByColumn; - sortDirection = 'desc'; - } - - // update arrow - $('.sort-arrow').css('display', 'none'); - $('#app-list-table').find('th').removeClass('sorted'); - $(this).find('.sort-arrow-' + sortDirection).css('display', 'inline'); - $(this).addClass('sorted'); - - sort_apps(); -}); - -function sort_apps() { - let sorted_apps; - - // sort - if (sortDirection === 'asc'){ - sorted_apps = apps.sort((a, b) => { - if(sortBy === 'name'){ - return a[sortBy].localeCompare(b[sortBy]); - }else if(sortBy === 'created_at'){ - return new Date(a[sortBy]) - new Date(b[sortBy]); - } else if(sortBy === 'user_count' || sortBy === 'open_count'){ - return a.stats[sortBy] - b.stats[sortBy]; - }else{ - a[sortBy] > b[sortBy] ? 1 : -1 - } - }); - }else{ - sorted_apps = apps.sort((a, b) => { - if(sortBy === 'name'){ - return b[sortBy].localeCompare(a[sortBy]); - }else if(sortBy === 'created_at'){ - return new Date(b[sortBy]) - new Date(a[sortBy]); - } else if(sortBy === 'user_count' || sortBy === 'open_count'){ - return b.stats[sortBy] - a.stats[sortBy]; - }else{ - b[sortBy] > a[sortBy] ? 1 : -1 - } - }); - } - // refresh app list - $('.app-card').remove(); - sorted_apps.forEach(app => { - $('#app-list-table > tbody').append(generate_app_card(app)); - }); - - count_apps(); - - // show apps that match search_query and hide apps that don't - if (search_query) { - // show apps that match search_query and hide apps that don't - apps.forEach((app) => { - if (app.title.toLowerCase().includes(search_query.toLowerCase())) { - $(`.app-card[data-name="${html_encode(app.name)}"]`).show(); - } else { - $(`.app-card[data-name="${html_encode(app.name)}"]`).hide(); - } - }) - } -} - -/** - * Checks if the items being deployed contain a .git directory - * @param {Array|string} items - Items to check (can be path string or array of items) - * @returns {Promise} - True if .git directory is found - */ -async function hasGitDirectory(items) { - // Case 1: Single Puter path - if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { - const stat = await puter.fs.stat(items); - if (stat.is_dir) { - const files = await puter.fs.readdir(items); - return files.some(file => file.name === '.git' && file.is_dir); - } - return false; - } - - // Case 2: Array of Puter items - if (Array.isArray(items) && items[0]?.uid) { - return items.some(item => item.name === '.git' && item.is_dir); - } - - // Case 3: Local items (DataTransferItems) - if (Array.isArray(items)) { - for (let item of items) { - if (item.fullPath?.includes('/.git/') || - item.path?.includes('/.git/') || - item.filepath?.includes('/.git/')) { - return true; - } - } - } - - return false; -} - -/** - * Shows a warning dialog about .git directory deployment - * @returns {Promise} - True if the user wants to proceed with deployment - */ -async function showGitWarningDialog() { - try { - // Check if the user has chosen to skip the warning - const skipWarning = await puter.kv.get('skip-git-warning'); - - // Log retrieved value for debugging - console.log('Retrieved skip-git-warning:', skipWarning); - - // If the user opted to skip the warning, proceed without showing it - if (skipWarning === true) { - return true; - } - } catch (error) { - console.error('Error accessing KV store:', error); - // If KV store access fails, fall back to showing the dialog - } - - // Create the modal dialog - const modal = document.createElement('div'); - modal.innerHTML = ` -
-

Warning: Git Repository Detected

-

A .git directory was found in your deployment files. Deploying .git directories may:

-
    -
  • Expose sensitive information like commit history and configuration
  • -
  • Significantly increase deployment size
  • -
-
- - -
-
- - -
-
-
- `; - document.body.appendChild(modal); - - return new Promise((resolve) => { - // Handle "Continue Deployment" - document.getElementById('continue-deployment').addEventListener('click', async () => { - try { - const skipChecked = document.getElementById('skip-git-warning')?.checked; - if (skipChecked) { - console.log("Saving 'skip-git-warning' preference as true"); - await puter.kv.set('skip-git-warning', true); - } - } catch (error) { - console.error('Error saving user preference to KV store:', error); - } finally { - document.body.removeChild(modal); - resolve(true); // Continue deployment - } - }); - - // Handle "Cancel Deployment" - document.getElementById('cancel-deployment').addEventListener('click', () => { - document.body.removeChild(modal); - resolve(false); // Cancel deployment - }); - }); -} - -window.deploy = async function (app, items) { - // Check for .git directory before proceeding - try { - if (await hasGitDirectory(items)) { - const shouldProceed = await showGitWarningDialog(); - if (!shouldProceed) { - reset_drop_area(); - return; - } - } - } catch (err) { - console.error('Error checking for .git directory:', err); - } - let appdata_dir, current_app_dir; - - // disable deploy button - $('.deploy-btn').addClass('disabled'); - - // change drop area text - $('.drop-area').html(deploying_spinner + '
Deploying (0%)
'); - - if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - } - - // -------------------------------------------------------------------- - // Get current directory, we need to delete the existing hostname - // later on - // -------------------------------------------------------------------- - try { - current_app_dir = await puter.fs.stat({ - path: `/${authUsername}/AppData/${dev_center_uid}/${app.uid ?? app.uuid}`, - returnSubdomains: true - }); - } catch (err) { - console.log(err); - } - - // -------------------------------------------------------------------- - // Delete existing hostnames attached to this app directory if they exist - // -------------------------------------------------------------------- - if (current_app_dir?.subdomains.length > 0) { - for (let subdomain of current_app_dir?.subdomains) { - puter.hosting.delete(subdomain.subdomain) - } - } - - // -------------------------------------------------------------------- - // Delete existing app directory - // -------------------------------------------------------------------- - try { - await puter.fs.delete(current_app_dir.path) - } catch (err) { - console.log(err); - } - - // -------------------------------------------------------------------- - // Make an app directory under AppData - // if the directory already exists, it should be overwritten - // -------------------------------------------------------------------- - try { - appdata_dir = await puter.fs.mkdir( - // path - `/${authUsername}/AppData/${dev_center_uid}/${app.uid ?? app.uuid}`, - // options - { overwrite: true, recursive: true, rename: false } - ) - } catch (err) { - console.log(err); - } - - // -------------------------------------------------------------------- - // (A) One Puter Item: If 'items' is a string and starts with /, it's a path to a Puter item - // -------------------------------------------------------------------- - if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { - // perform stat on 'items' - const stat = await puter.fs.stat(items); - - // -------------------------------------------------------------------- - // Puter Directory - // -------------------------------------------------------------------- - // Perform readdir on 'items' - // todo there is apparently a bug in Puter where sometimes path is literally missing from the items - // returned by readdir. This is the 'path' that readdit didn't return a path for: "~/Desktop/particle-clicker-master" - if (stat.is_dir) { - const files = await puter.fs.readdir(items); - // copy the 'files' to the app directory - if (files.length > 0) { - for (let file of files) { - // perform copy - await puter.fs.copy( - file.path, - appdata_dir.path, - { overwrite: true } - ); - // update progress - $('.deploy-percent').text(`(${Math.round((files.indexOf(file) / files.length) * 100)}%)`); - } - } - } - // -------------------------------------------------------------------- - // Puter File - // -------------------------------------------------------------------- - else { - // copy the 'files' to the app directory - await puter.fs.copy( - items, - appdata_dir.path, - { overwrite: true } - ); - } - - // generate new hostname with a random suffix - let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; - - // -------------------------------------------------------------------- - // Create a router for the app with the fresh hostname - // we change hostname every time to prevent caching issues - // -------------------------------------------------------------------- - puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { - // TODO this endpoint needs to be able to update only the specified fields - puter.apps.update(currently_editing_app.name, { - indexURL: protocol + `://${hostname}.` + static_hosting_domain, - title: currently_editing_app.title, - name: currently_editing_app.name, - icon: currently_editing_app.icon, - description: currently_editing_app.description, - maximizeOnStart: currently_editing_app.maximize_on_start, - background: currently_editing_app.background, - filetypeAssociations: currently_editing_app.filetype_associations, - }) - // set the 'Index URL' field for the 'Settings' tab - $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); - // show success message - $('.deploy-success-msg').show(); - // reset drop area - reset_drop_area(); - }) - } - // -------------------------------------------------------------------- - // (B) Multiple Puter Items: If `items` is an Array `items[0]` has `uid` - // then it's a Puter Item Array. - // -------------------------------------------------------------------- - else if (Array.isArray(items) && items[0].uid) { - // If there's no index.html in the root, return - if (!hasRootIndexHtml) - return; - - // copy the 'files' to the app directory - for (let item of items) { - // perform copy - await puter.fs.copy( - item.fullPath ? item.fullPath : item.path ? item.path : item.filepath, - appdata_dir.path, - { overwrite: true } - ); - // update progress - $('.deploy-percent').text(`(${Math.round((items.indexOf(item) / items.length) * 100)}%)`); - } - - // generate new hostname with a random suffix - let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; - - // -------------------------------------------------------------------- - // Create a router for the app with the fresh hostname - // we change hostname every time to prevent caching issues - // -------------------------------------------------------------------- - puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { - // TODO this endpoint needs to be able to update only the specified fields - puter.apps.update(currently_editing_app.name, { - indexURL: protocol + `://${hostname}.` + static_hosting_domain, - title: currently_editing_app.title, - name: currently_editing_app.name, - icon: currently_editing_app.icon, - description: currently_editing_app.description, - maximizeOnStart: currently_editing_app.maximize_on_start, - background: currently_editing_app.background, - filetypeAssociations: currently_editing_app.filetype_associations, - }) - // set the 'Index URL' field for the 'Settings' tab - $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); - // show success message - $('.deploy-success-msg').show(); - // reset drop area - reset_drop_area(); - }) - } - - // -------------------------------------------------------------------- - // (C) Local Items: Upload new deploy - // -------------------------------------------------------------------- - else { - puter.fs.upload( - items, - `/${authUsername}/AppData/${dev_center_uid}/${currently_editing_app.uid}`, - { - dedupeName: false, - overwrite: false, - parsedDataTransferItems: true, - createMissingAncestors: true, - progress: function (operation_id, op_progress) { - $('.deploy-percent').text(`(${op_progress}%)`); - }, - }).then(async (uploaded) => { - // new hostname - let hostname = `${currently_editing_app.name}-${(Math.random() + 1).toString(36).substring(7)}`; - - // ---------------------------------------- - // Create a router for the app with a fresh hostname - // we change hostname every time to prevent caching issues - // ---------------------------------------- - puter.hosting.create(hostname, appdata_dir.path).then(async (res) => { - // TODO this endpoint needs to be able to update only the specified fields - puter.apps.update(currently_editing_app.name, { - indexURL: protocol + `://${hostname}.` + static_hosting_domain, - title: currently_editing_app.title, - name: currently_editing_app.name, - icon: currently_editing_app.icon, - description: currently_editing_app.description, - maximizeOnStart: currently_editing_app.maximize_on_start, - background: currently_editing_app.background, - filetypeAssociations: currently_editing_app.filetype_associations, - }) - // set the 'Index URL' field for the 'Settings' tab - $('#edit-app-index-url').val(protocol + `://${hostname}.` + static_hosting_domain); - // show success message - $('.deploy-success-msg').show(); - // reset drop area - reset_drop_area() - }) - }) - } -} - $(document).on('click', '.section-tab-btn', function (e) { // hide all tabs $('.section-tab').hide(); @@ -2322,207 +331,10 @@ $(document).on('click', '.section-tab-btn', function (e) { $(this).addClass('active'); }) -function generateDirTree(paths) { - const root = {}; - - for (let path of paths) { - let parts = path.split('/'); - let currentNode = root; - for (let part of parts) { - if (!part) continue; // skip empty parts, especially leading one - if (!currentNode[part]) { - currentNode[part] = {}; - } - currentNode = currentNode[part]; - } - } - - return root; -} - -function setRootDirTree(tree, items) { - // Get all keys (directories and files) in the root - const rootKeys = Object.keys(tree); - - // If there's only one object in the root, check if it's non-empty and return it - if (rootKeys.length === 1 && typeof tree[rootKeys[0]] === 'object' && Object.keys(tree[rootKeys[0]]).length > 0) { - let newItems = []; - for (let item of items) { - if (item.fullPath) - item.finalPath = item.fullPath.replace(rootKeys[0], ''); - else if (item.path) - item.path = item.path.replace(rootKeys[0], ''); - else - item.filepath = item.filepath.replace(rootKeys[0], ''); - - newItems.push(item); - } - return newItems; - } else { - return items; - } -} - -function hasRootIndexHtml(tree) { - // Check if index.html exists in the root - if (tree['index.html']) { - return true; - } - - // Get all keys (directories and files) in the root - const rootKeys = Object.keys(tree); - - // If there's only one directory in the root, check if index.html exists in that directory - if (rootKeys.length === 1 && typeof tree[rootKeys[0]] === 'object' && tree[rootKeys[0]]['index.html']) { - return true; - } - - return false; -} - $(document).on('click', '.close-success-msg', function (e) { $(this).closest('div').fadeOut(); }) -$(document).on('click', '.open-app', function (e) { - puter.ui.launchApp($(this).attr('data-app-name')); -}) - -$(document).on('click', '.insta-deploy-to-new-app', async function (e) { - $('.insta-deploy-modal').get(0).close(); - let title = await puter.ui.prompt('Please enter a title for your app:', 'My Awesome App'); - - if (title.length > 60) { - puter.ui.alert(`Title cannot be longer than 60.`, [ - { - label: 'Ok', - }, - ]); - // todo go back to create an app prompt and prefill the title input with the title the user entered - $('.insta-deploy-modal').get(0).showModal(); - } - else if (title) { - if (source_path) { - create_app(title, source_path); - source_path = null; - } else { - create_app(title, null, dropped_items); - dropped_items = null; - } - } else - $('.insta-deploy-modal').get(0).showModal(); - - return; - -}) - -$(document).on('click', '.insta-deploy-to-existing-app', function (e) { - $('.insta-deploy-modal').get(0).close(); - $('.insta-deploy-existing-app-select').get(0).showModal(); - $('.insta-deploy-existing-app-list').html(`
${loading_spinner}
`); - puter.apps.list({ icon_size: 64 }).then((apps) => { - setTimeout(() => { - $('.insta-deploy-existing-app-list').html(''); - if (apps.length === 0) - $('.insta-deploy-existing-app-list').html(` -
- - You have no existing apps. -
- `); - else { - for (let app of apps) { - $('.insta-deploy-existing-app-list').append( - `
- - ${html_encode(app.title)} -
- ${number_format((app.stats.referral_count ?? 0) + app.stats.user_count)} - ${number_format(app.stats.open_count)} -
-
` - ); - } - } - }, 500); - }) - - // todo reset .insta-deploy-existing-app-list on close -}) - -$(document).on('click', '.insta-deploy-app-selector', function (e) { - $('.insta-deploy-app-selector').removeClass('active'); - $(this).addClass('active'); - - // enable deploy button - $('.insta-deploy-existing-app-deploy-btn').removeClass('disabled'); -}) - -$(document).on('click', '.insta-deploy-existing-app-deploy-btn', function (e) { - $('.insta-deploy-existing-app-deploy-btn').addClass('disabled'); - $('.insta-deploy-existing-app-select')?.get(0)?.close(); - - const app_item = $('.insta-deploy-app-selector.active'); - - // load the 'App Settings' section - edit_app_section(app_item.attr('data-name')); - - $('.drop-area').removeClass('drop-area-hover'); - $('.drop-area').addClass('drop-area-ready-to-deploy'); - let drop_area_content = `

Ready to deploy 🚀

Cancel

`; - $('.drop-area').html(drop_area_content); - - // deploy - console.log('data uid is present?', $(e.target).attr('data-uid'), app_item.attr('data-uid')); - deploy({ uid: app_item.attr('data-uid') }, source_path ?? dropped_items); - $('.insta-deploy-existing-app-list').html(''); -}) - -$(document).on('click', '.insta-deploy-cancel', function (e) { - $(this).closest('dialog')?.get(0)?.close(); -}) -$(document).on('click', '.insta-deploy-existing-app-back', function (e) { - $('.insta-deploy-existing-app-select')?.get(0)?.close(); - $('.insta-deploy-modal')?.get(0)?.showModal(); - // disable deploy button - $('.insta-deploy-existing-app-deploy-btn').addClass('disabled'); - - // todo disable the 'an existing app' option if there are no existing apps -}) - - -$(document).on('click', '.add-app-to-desktop', function (e) { - let app_title = $(this).attr('data-app-title'); - let app_uid = $(this).attr('data-app-uid'); - - puter.fs.upload( - new File([], app_title), - `/${authUsername}/Desktop`, - { - name: app_title, - dedupeName: true, - overwrite: false, - appUID: app_uid, - }).then(async (uploaded) => { - puter.ui.alert(`${app_title} shortcut has been added to your desktop.`, [ - { - label: 'Ok', - type: 'primary', - }, - ], { - type: 'success', - }); - }) - -}) - -function reset_drop_area() { - dropped_items = null; - $('.drop-area').html(drop_area_placeholder); - $('.drop-area').removeClass('drop-area-ready-to-deploy'); - $('.deploy-btn').addClass('disabled'); -} - $('body').on('dragover', function (event) { // skip if the user is dragging something over the drop area if ($(event.target).hasClass('drop-area')) @@ -2610,253 +422,13 @@ $('body').on('drop', async function (event) { $('.insta-deploy-item-name').html(html_encode(rootItems)); }); -$('.insta-deploy-existing-app-select').on('close', function (e) { - $('.insta-deploy-existing-app-list').html(''); -}) - -$('.refresh-app-list').on('click', function (e) { - puter.ui.showSpinner(); - - puter.apps.list({ icon_size: 64 }).then((resp) => { - setTimeout(() => { - apps = resp; - - $('.app-card').remove(); - apps.forEach(app => { - $('#app-list-table > tbody').append(generate_app_card(app)); - }); - - count_apps(); - - // preserve search query - if (search_query) { - // show apps that match search_query and hide apps that don't - apps.forEach((app) => { - if (app.title.toLowerCase().includes(search_query.toLowerCase())) { - $(`.app-card[data-name="${app.name}"]`).show(); - } else { - $(`.app-card[data-name="${app.name}"]`).hide(); - } - }) - } - - // preserve sort - sort_apps(); - activate_tippy(); - - puter.ui.hideSpinner(); - }, 1000); - }) -}) - -$(document).on('click', '.search', function (e) { - e.stopPropagation(); - e.preventDefault(); - // don't let click bubble up to window - e.stopImmediatePropagation(); -}) - -$(document).on('input change keyup keypress keydown paste cut', '.search', function (e) { - // search apps for query - search_query = $(this).val().toLowerCase(); - if (search_query === '') { - // hide 'clear search' button - $('.search-clear').hide(); - // show all apps again - $(`.app-card`).show(); - } else { - // show 'clear search' button - $('.search-clear').show(); - // show apps that match search_query and hide apps that don't - apps.forEach((app) => { - if ( - app.title.toLowerCase().includes(search_query.toLowerCase()) - || app.name.toLowerCase().includes(search_query.toLowerCase()) - || app.description.toLowerCase().includes(search_query.toLowerCase()) - || app.uid.toLowerCase().includes(search_query.toLowerCase()) - ) - { - $(`.app-card[data-name="${app.name}"]`).show(); - } else { - $(`.app-card[data-name="${app.name}"]`).hide(); - } - }) - } -}) - -$(document).on('click', '.search-clear', function (e) { - $('.search').val(''); - $('.search').trigger('change'); - $('.search').focus(); - search_query = ''; -}) - -$(document).on('change', '.app-checkbox', function (e) { - // determine if select-all checkbox should be checked, indeterminate, or unchecked - if ($('.app-checkbox:checked').length === $('.app-checkbox').length) { - $('.select-all-apps').prop('indeterminate', false); - $('.select-all-apps').prop('checked', true); - } else if ($('.app-checkbox:checked').length > 0) { - $('.select-all-apps').prop('indeterminate', true); - $('.select-all-apps').prop('checked', false); - } - else { - $('.select-all-apps').prop('indeterminate', false); - $('.select-all-apps').prop('checked', false); - } - - // activate row - if ($(this).is(':checked')) - $(this).closest('tr').addClass('active'); - else - $(this).closest('tr').removeClass('active'); - - // enable delete button if at least one checkbox is checked - if ($('.app-checkbox:checked').length > 0) - $('.delete-apps-btn').removeClass('disabled'); - else - $('.delete-apps-btn').addClass('disabled'); - -}) - -$(document).on('click', '.delete-apps-btn', async function (e) { - // show confirmation alert - let resp = await puter.ui.alert(`Are you sure you want to delete the selected apps?`, [ - { - label: 'Delete', - type: 'danger', - value: 'delete', - }, - { - label: 'Cancel', - }, - ], { - type: 'warning', - }); - - if (resp === 'delete') { - // disable delete button - // $('.delete-apps-btn').addClass('disabled'); - - // show 'deleting' modal - puter.ui.showSpinner(); - - let start_ts = Date.now(); - const apps = $('.app-checkbox:checked').toArray(); - - // delete all checked apps - for (let app of apps) { - // get app uid - const app_uid = $(app).attr('data-app-uid'); - const app_name = $(app).attr('data-app-name'); - - // get app - const app_data = await puter.apps.get(app_name, {icon_size: 64 }); - - if(app_data.metadata?.locked){ - if(apps.length === 1){ - puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ - { - label: 'Ok', - }, - ], { - type: 'warning', - }); - - break; - } - - let resp = await puter.ui.alert(`${app_data.title} is locked and cannot be deleted.`, [ - { - label: 'Skip and Continue', - value: 'Continue', - type: 'primary' - }, - { - label: 'Cancel', - }, - ], { - type: 'warning', - }); - - if(resp === 'Cancel') - break; - else if(resp === 'Continue') - continue; - else - continue; - } - - // delete app - await puter.apps.delete(app_name) - - // remove app card - $(`.app-card[data-uid="${app_uid}"]`).fadeOut(200, function name(params) { - $(this).remove(); - if ($(`.app-card`).length === 0) { - $('section:not(.sidebar)').hide(); - $('#no-apps-notice').show(); - } else { - $('section:not(.sidebar)').hide(); - $('#app-list').show(); - } - count_apps(); - }); - - try{ - // get app directory - const stat = await puter.fs.stat({ - path: `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - returnSubdomains: true - }); - // delete subdomain associated with the app directory - if(stat?.subdomains[0]?.subdomain){ - await puter.hosting.delete(stat.subdomains[0].subdomain) - } - // delete app directory - await puter.fs.delete( - `/${authUsername}/AppData/${dev_center_uid}/${app_uid}`, - { recursive: true } - ) - count_apps(); - } catch(err) { - console.log(err); - } - } - - // close 'deleting' modal - setTimeout(() => { - puter.ui.hideSpinner(); - if($('.app-checkbox:checked').length === 0){ - // disable delete button - $('.delete-apps-btn').addClass('disabled'); - // reset the 'select all' checkbox - $('.select-all-apps').prop('indeterminate', false); - $('.select-all-apps').prop('checked', false); - } - }, (start_ts - Date.now()) > 500 ? 0 : 500); - } -}) - -$(document).on('change', '.select-all-apps', function (e) { - if ($(this).is(':checked')) { - $('.app-checkbox').prop('checked', true); - $('.app-card').addClass('active'); - $('.delete-apps-btn').removeClass('disabled'); - } else { - $('.app-checkbox').prop('checked', false); - $('.app-card').removeClass('active'); - $('.delete-apps-btn').addClass('disabled'); - } -}) - /** * Get the MIME type for a given file extension. * * @param {string} extension - The file extension (with or without leading dot). * @returns {string} The corresponding MIME type, or 'application/octet-stream' if not found. */ -function getMimeType(extension) { +window.getMimeType = (extension) => { const mimeTypes = { jpg: 'image/jpeg', jpeg: 'image/jpeg', @@ -2876,287 +448,12 @@ function getMimeType(extension) { return mimeTypes[cleanExtension] || 'application/octet-stream'; } -// if edit-app-maximize-on-start is checked, disable window size and position fields -$(document).on('change', '#edit-app-maximize-on-start', function (e) { - if ($(this).is(':checked')) { - $('#edit-app-window-width, #edit-app-window-height').prop('disabled', true); - $('#edit-app-window-top, #edit-app-window-left').prop('disabled', true); - } else { - $('#edit-app-window-width, #edit-app-window-height').prop('disabled', false); - $('#edit-app-window-top, #edit-app-window-left').prop('disabled', false); - } -}) - -$(document).on('change', '#edit-app-background', function (e) { - if($('#edit-app-background').is(":checked")){ - disable_window_settings() - }else{ - enable_window_settings() - } -}) - -function disable_window_settings(){ - $('#edit-app-maximize-on-start').prop('disabled', true); - $('#edit-app-fullpage-on-landing').prop('disabled', true); - $('#edit-app-window-width, #edit-app-window-height').prop('disabled', true); - $('#edit-app-window-top, #edit-app-window-left').prop('disabled', true); - $('#edit-app-window-resizable').prop('disabled', true); - $('#edit-app-hide-titlebar').prop('disabled', true); -} - -function enable_window_settings(){ - $('#edit-app-maximize-on-start').prop('disabled', false); - $('#edit-app-fullpage-on-landing').prop('disabled', false); - $('#edit-app-window-width, #edit-app-window-height').prop('disabled', false); - $('#edit-app-window-top, #edit-app-window-left').prop('disabled', false); - $('#edit-app-window-resizable').prop('disabled', false); - $('#edit-app-hide-titlebar').prop('disabled', false); -} - -$(document).on('click', '.reset-deploy', function (e) { - reset_drop_area(); -}) - $(document).on('click', '.sidebar-toggle', function (e) { $('.sidebar').toggleClass('open'); $('body').toggleClass('sidebar-open'); }) -async function initializeAssetsDirectory() { - try { - // Check if assets_url exists - const existingURL = await puter.kv.get('assets_url'); - if (!existingURL) { - // Create assets directory - const assetsDir = await puter.fs.mkdir( - `/${authUsername}/AppData/${dev_center_uid}/assets`, - { overwrite: false } - ); - - // Publish the directory - const hostname = `assets-${Math.random().toString(36).substring(2)}`; - const route = await puter.hosting.create(hostname, assetsDir.path); - - // Store the URL - await puter.kv.set('assets_url', `https://${hostname}.puter.site`); - } - } catch (err) { - console.error('Error initializing assets directory:', err); - } -} - -function generateSocialImageSection(app) { - return ` - - - Remove social image - - `; -} - - -$(document).on('click', '#edit-app-social-image', async function(e) { - const res = await puter.ui.showOpenFilePicker({ - accept: "image/*", - }); - - const socialImage = await puter.fs.read(res.path); - // Convert blob to base64 for preview - const reader = new FileReader(); - reader.readAsDataURL(socialImage); - - reader.onloadend = function() { - let image = reader.result; - // Get file extension - let fileExtension = res.name.split('.').pop(); - // Get MIME type - let mimeType = getMimeType(fileExtension); - // Replace MIME type in the data URL - image = image.replace('data:application/octet-stream;base64', `data:image/${mimeType};base64`); - - $('#edit-app-social-image').css('background-image', `url(${image})`); - $('#edit-app-social-image').attr('data-base64', image); - $('#edit-app-social-image-delete').show(); - - toggleSaveButton(); - toggleResetButton(); - } -}); - -$(document).on('click', '#edit-app-social-image-delete', async function(e) { - $('#edit-app-social-image').css('background-image', ''); - $('#edit-app-social-image').removeAttr('data-url'); - $('#edit-app-social-image').removeAttr('data-base64'); - $('#edit-app-social-image-delete').hide(); -}); - -async function handleSocialImageUpload(app_name, socialImageData) { - if (!socialImageData) return null; - - try { - const assets_url = await puter.kv.get('assets_url'); - if (!assets_url) throw new Error('Assets URL not found'); - - // Convert base64 to blob - const base64Response = await fetch(socialImageData); - const blob = await base64Response.blob(); - - // Get assets directory path - const assetsDir = `/${authUsername}/AppData/${dev_center_uid}/assets`; - - // Upload new image - await puter.fs.upload( - new File([blob], `${app_name}.png`, { type: 'image/png' }), - assetsDir, - { overwrite: true } - ); - - return `${assets_url}/${app_name}.png`; - } catch (err) { - console.error('Error uploading social image:', err); - throw err; - } -} - -$(document).on('click', '.copy-app-uid', function(e) { - const appUID = $('#edit-app-uid').val(); - navigator.clipboard.writeText(appUID); - // change to 'copied' - $(this).html('Copied'); - setTimeout(() => { - $(this).html(copy_svg); - }, 2000); -}); - -$(document).on('change', '#analytics-period', async function(e) { - let period = $(this).val(); - render_analytics(period); -}); - -async function render_analytics(period){ - puter.ui.showSpinner(); - - // set a sensible stats_grouping based on the selected period - let stats_grouping; - - if (period === 'today' || period === 'yesterday') { - stats_grouping = 'hour'; - } - else if (period === 'this_week' || period === 'last_week' || period === 'this_month' || period === 'last_month' || period === '7d' || period === '30d') { - stats_grouping = 'day'; - } - else if (period === 'this_year' || period === 'last_year' || period === '12m' || period === 'all') { - stats_grouping = 'month'; - } - - const app = await puter.apps.get( - currently_editing_app.name, - { - icon_size: 16, - stats_period: period, - stats_grouping: stats_grouping, - } - ); - - $('#analytics-users .count').html(number_format(app.stats.user_count)); - $('#analytics-opens .count').html(number_format(app.stats.open_count)); - - // Clear existing chart if any - $('#analytics-chart').remove(); - $('.analytics-container').remove(); - - // Create new canvas - const container = $('
'); - const canvas = $(''); - container.append(canvas); - $('#analytics-opens').parent().after(container); - - // Format the data - const labels = app.stats.grouped_stats.open_count.map(item => { - let date; - if (stats_grouping === 'month') { - // Handle YYYY-MM format explicitly - const [year, month] = item.period.split('-'); - date = new Date(parseInt(year), parseInt(month) - 1); // month is 0-based in JS - } else { - date = new Date(item.period); - } - - if (stats_grouping === 'hour') { - return date.toLocaleString('en-US', { hour: 'numeric', hour12: true }).toLowerCase(); - } else if (stats_grouping === 'day') { - return date.toLocaleString('en-US', { month: 'short', day: 'numeric' }); - } else { - return date.toLocaleString('en-US', { month: 'short', year: 'numeric' }); - } - }); - const openData = app.stats.grouped_stats.open_count.map(item => item.count); - const userData = app.stats.grouped_stats.user_count.map(item => item.count); - - // Create chart - const ctx = document.getElementById('analytics-chart').getContext('2d'); - new Chart(ctx, { - type: 'line', - data: { - labels: labels, - datasets: [ - { - label: 'Opens', - data: openData, - borderColor: '#346beb', - tension: 0, - fill: false - }, - { - label: 'Users', - data: userData, - borderColor: '#27cc32', - tension: 0, - fill: false - } - ] - }, - options: { - responsive: true, - maintainAspectRatio: false, - scales: { - x: { - display: true, - title: { - display: true, - text: 'Period' - }, - ticks: { - maxRotation: 45, - minRotation: 45 - } - }, - y: { - display: true, - beginAtZero: true, - title: { - display: true, - text: 'Count' - }, - ticks: { - precision: 0, // Show whole numbers only - stepSize: 1 // Increment by 1 - } - } - }, - } - }); - - puter.ui.hideSpinner(); -} - -$(document).on('click', '.stats-cell', function(e) { - edit_app_section($(this).attr('data-app-name'), 'analytics'); -}) - -function activate_tippy(){ +window.activate_tippy = () => { tippy('.tippy', { content(reference) { return reference.getAttribute('title'); diff --git a/src/dev-center/js/html-entities.js b/src/dev-center/js/libs/html-entities.js similarity index 100% rename from src/dev-center/js/html-entities.js rename to src/dev-center/js/libs/html-entities.js diff --git a/src/dev-center/js/jquery-3.6.0.min.js b/src/dev-center/js/libs/jquery-3.6.0.min.js similarity index 100% rename from src/dev-center/js/jquery-3.6.0.min.js rename to src/dev-center/js/libs/jquery-3.6.0.min.js diff --git a/src/dev-center/js/jquery.dragster.js b/src/dev-center/js/libs/jquery.dragster.js similarity index 100% rename from src/dev-center/js/jquery.dragster.js rename to src/dev-center/js/libs/jquery.dragster.js diff --git a/src/dev-center/js/slugify.js b/src/dev-center/js/libs/slugify.js similarity index 100% rename from src/dev-center/js/slugify.js rename to src/dev-center/js/libs/slugify.js diff --git a/src/dev-center/js/websites.js b/src/dev-center/js/websites.js new file mode 100644 index 000000000..e896bbb27 --- /dev/null +++ b/src/dev-center/js/websites.js @@ -0,0 +1,4 @@ +async function init_websites() { +} + +export default init_websites; \ No newline at end of file diff --git a/src/dev-center/js/workers.js b/src/dev-center/js/workers.js new file mode 100644 index 000000000..2ad8b9a4d --- /dev/null +++ b/src/dev-center/js/workers.js @@ -0,0 +1,63 @@ +window.workers = []; + +window.create_worker = async (name) => { + let worker = await puter.workers.create(name, window.default_worker_file); + + return worker; +} + +window.refresh_worker_list = (show_loading = false) => { + if (show_loading) + puter.ui.showSpinner(); + // get workers + setTimeout(function () { + puter.workers.list().then((workers_res) => { + workers = workers_res; + puter.ui.hideSpinner(); + }) + }, 1000); +} + + +async function init_workers() { +} + +$(document).on('click', '.create-a-worker-btn', async function (e) { + let name = await puter.ui.prompt('Please enter a name for your worker:', 'my-awesome-worker'); + + if (name) { + console.log(name); + await create_worker(name); + } +}) + +window.createDefaultWorkerFile = async () => { + window.default_worker_file = `/${auth_username}/AppData/${dev_center_uid}/default_worker_file.js`; + let existingFile; + try { + // Check if default_worker_file exists + existingFile = await puter.fs.read(default_worker_file); + } catch (err) { + console.error('Error creating default worker file:', err); + } + + if (!existingFile) { + // Create default_worker_file + await puter.fs.write(default_worker_file, `// This is an example application for Puter Workers + +router.get('/', ({request}) => { +return 'Hello World'; // returns a string +}); +router.get('/api/hello', ({request}) => { +return {'msg': 'hello'}; // returns a JSON object +}); +router.get('/*page', ({request, params}) => { +return new Response(\`Page \${params.page} not found\`, {status: 404}); +});`); + } + +} + + + +export default init_workers; \ No newline at end of file