@firebase/util 1.11.0-firebase-studio-sdk-integration.927daddb8 → 1.11.0-firebase-studio-sdk-integration.a528caf5f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +125 -60
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +125 -60
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +125 -60
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +125 -60
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -667,6 +667,41 @@ class Deferred {
|
|
|
667
667
|
}
|
|
668
668
|
}
|
|
669
669
|
|
|
670
|
+
/**
|
|
671
|
+
* @license
|
|
672
|
+
* Copyright 2025 Google LLC
|
|
673
|
+
*
|
|
674
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
675
|
+
* you may not use this file except in compliance with the License.
|
|
676
|
+
* You may obtain a copy of the License at
|
|
677
|
+
*
|
|
678
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
679
|
+
*
|
|
680
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
681
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
682
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
683
|
+
* See the License for the specific language governing permissions and
|
|
684
|
+
* limitations under the License.
|
|
685
|
+
*/
|
|
686
|
+
/**
|
|
687
|
+
* Checks whether host is a cloud workstation or not.
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
690
|
+
function isCloudWorkstation(host) {
|
|
691
|
+
return host.endsWith('.cloudworkstations.dev');
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Makes a fetch request to the given server.
|
|
695
|
+
* Mostly used for forwarding cookies in Firebase Studio.
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
async function pingServer(endpoint) {
|
|
699
|
+
const result = await fetch(endpoint, {
|
|
700
|
+
credentials: 'include'
|
|
701
|
+
});
|
|
702
|
+
return result.ok;
|
|
703
|
+
}
|
|
704
|
+
|
|
670
705
|
/**
|
|
671
706
|
* @license
|
|
672
707
|
* Copyright 2021 Google LLC
|
|
@@ -739,6 +774,7 @@ function getOrCreateEl(id) {
|
|
|
739
774
|
}
|
|
740
775
|
return { created, element: parentDiv };
|
|
741
776
|
}
|
|
777
|
+
let previouslyDismissed = false;
|
|
742
778
|
/**
|
|
743
779
|
* Updates Emulator Banner. Primarily used for Firebase Studio
|
|
744
780
|
* @param name
|
|
@@ -748,10 +784,16 @@ function getOrCreateEl(id) {
|
|
|
748
784
|
function updateEmulatorBanner(name, isRunningEmulator) {
|
|
749
785
|
if (typeof window === 'undefined' ||
|
|
750
786
|
typeof document === 'undefined' ||
|
|
751
|
-
|
|
787
|
+
!isCloudWorkstation(window.location.host) ||
|
|
788
|
+
emulatorStatus[name] === isRunningEmulator ||
|
|
789
|
+
emulatorStatus[name] || // If already set to use emulator, can't go back to prod.
|
|
790
|
+
previouslyDismissed) {
|
|
752
791
|
return;
|
|
753
792
|
}
|
|
754
793
|
emulatorStatus[name] = isRunningEmulator;
|
|
794
|
+
function prefixedId(id) {
|
|
795
|
+
return `__firebase__banner__${id}`;
|
|
796
|
+
}
|
|
755
797
|
const bannerId = '__firebase__banner';
|
|
756
798
|
const summary = getEmulatorSummary();
|
|
757
799
|
const showError = summary.prod.length > 0;
|
|
@@ -761,40 +803,98 @@ function updateEmulatorBanner(name, isRunningEmulator) {
|
|
|
761
803
|
element.remove();
|
|
762
804
|
}
|
|
763
805
|
}
|
|
806
|
+
function setupBannerStyles(bannerEl) {
|
|
807
|
+
bannerEl.style.display = 'flex';
|
|
808
|
+
bannerEl.style.background = '#7faaf0';
|
|
809
|
+
bannerEl.style.position = 'absolute';
|
|
810
|
+
bannerEl.style.bottom = '5px';
|
|
811
|
+
bannerEl.style.left = '5px';
|
|
812
|
+
bannerEl.style.padding = '.5em';
|
|
813
|
+
bannerEl.style.borderRadius = '5px';
|
|
814
|
+
bannerEl.style.alignContent = 'center';
|
|
815
|
+
}
|
|
816
|
+
function setupIconStyles(prependIcon, iconId) {
|
|
817
|
+
prependIcon.setAttribute('width', '24');
|
|
818
|
+
prependIcon.setAttribute('id', iconId);
|
|
819
|
+
prependIcon.setAttribute('height', '24');
|
|
820
|
+
prependIcon.setAttribute('viewBox', '0 0 24 24');
|
|
821
|
+
prependIcon.setAttribute('fill', 'none');
|
|
822
|
+
prependIcon.style.marginLeft = '-6px';
|
|
823
|
+
}
|
|
824
|
+
function setupCloseBtn() {
|
|
825
|
+
const closeBtn = document.createElement('span');
|
|
826
|
+
closeBtn.style.cursor = 'pointer';
|
|
827
|
+
closeBtn.style.paddingLeft = '5px';
|
|
828
|
+
closeBtn.innerHTML = ' ×';
|
|
829
|
+
closeBtn.onclick = () => {
|
|
830
|
+
previouslyDismissed = true;
|
|
831
|
+
tearDown();
|
|
832
|
+
};
|
|
833
|
+
return closeBtn;
|
|
834
|
+
}
|
|
835
|
+
function setupLinkStyles(learnMoreLink, learnMoreId) {
|
|
836
|
+
learnMoreLink.setAttribute('id', learnMoreId);
|
|
837
|
+
learnMoreLink.innerText = 'Learn more';
|
|
838
|
+
learnMoreLink.href =
|
|
839
|
+
'http://firebase.google.com/docs/studio/deploy-app#emulator ';
|
|
840
|
+
learnMoreLink.setAttribute('target', '__blank');
|
|
841
|
+
learnMoreLink.style.paddingLeft = '5px';
|
|
842
|
+
}
|
|
843
|
+
function setupOpenExternal(svgElement, id) {
|
|
844
|
+
svgElement.setAttribute('viewBox', '0 0 16 16');
|
|
845
|
+
svgElement.setAttribute('fill', 'none');
|
|
846
|
+
svgElement.setAttribute('id', id);
|
|
847
|
+
svgElement.style.width = '16px';
|
|
848
|
+
svgElement.style.marginLeft = '4px';
|
|
849
|
+
svgElement.innerHTML = `<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6667 12.6667H3.33333V3.33333H8V2H3.33333C2.59333 2 2 2.6 2 3.33333V12.6667C2 13.4 2.59333 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V8H12.6667V12.6667ZM9.33333 2V3.33333H11.7267L5.17333 9.88667L6.11333 10.8267L12.6667 4.27333V6.66667H14V2H9.33333Z" fill="#212121"/>`;
|
|
850
|
+
}
|
|
764
851
|
function setupDom() {
|
|
765
852
|
const banner = getOrCreateEl(bannerId);
|
|
766
|
-
const
|
|
767
|
-
|
|
853
|
+
const firebaseTextId = prefixedId('text');
|
|
854
|
+
const firebaseText = document.getElementById(firebaseTextId) || document.createElement('span');
|
|
855
|
+
const learnMoreId = prefixedId('learnmore');
|
|
856
|
+
const learnMoreLink = document.getElementById(learnMoreId) ||
|
|
857
|
+
document.createElement('a');
|
|
858
|
+
const prependIconId = prefixedId('preprendIcon');
|
|
859
|
+
const prependIcon = document.getElementById(prependIconId) ||
|
|
860
|
+
document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
|
861
|
+
const openExternalIconId = prefixedId('openexternal');
|
|
862
|
+
const openExternalIcon = document.getElementById(openExternalIconId) ||
|
|
863
|
+
document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
|
768
864
|
if (banner.created) {
|
|
769
865
|
// update styles
|
|
770
866
|
const bannerEl = banner.element;
|
|
771
|
-
bannerEl
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
bannerEl.
|
|
777
|
-
bannerEl.style.borderRadius = '5px';
|
|
778
|
-
bannerEl.style.alignContent = 'center';
|
|
779
|
-
const closeBtn = document.createElement('span');
|
|
780
|
-
closeBtn.style.cursor = 'pointer';
|
|
781
|
-
closeBtn.style.paddingLeft = '5px';
|
|
782
|
-
closeBtn.innerHTML = ' ×';
|
|
783
|
-
closeBtn.onclick = () => {
|
|
784
|
-
tearDown();
|
|
785
|
-
};
|
|
786
|
-
bannerEl.appendChild(firebaseText);
|
|
787
|
-
bannerEl.appendChild(closeBtn);
|
|
867
|
+
setupBannerStyles(bannerEl);
|
|
868
|
+
setupLinkStyles(learnMoreLink, learnMoreId);
|
|
869
|
+
setupOpenExternal(openExternalIcon, openExternalIconId);
|
|
870
|
+
const closeBtn = setupCloseBtn();
|
|
871
|
+
setupIconStyles(prependIcon, prependIconId);
|
|
872
|
+
bannerEl.append(prependIcon, firebaseText, learnMoreLink, openExternalIcon, closeBtn);
|
|
788
873
|
document.body.appendChild(bannerEl);
|
|
789
874
|
}
|
|
790
875
|
if (showError) {
|
|
791
|
-
|
|
792
|
-
|
|
876
|
+
firebaseText.innerText = `Not using emulated backend.`;
|
|
877
|
+
prependIcon.innerHTML = `<g clip-path="url(#clip0_6013_33858)">
|
|
878
|
+
<path d="M4.8 17.6L12 5.6L19.2 17.6H4.8ZM6.91667 16.4H17.0833L12 7.93333L6.91667 16.4ZM12 15.6C12.1667 15.6 12.3056 15.5444 12.4167 15.4333C12.5389 15.3111 12.6 15.1667 12.6 15C12.6 14.8333 12.5389 14.6944 12.4167 14.5833C12.3056 14.4611 12.1667 14.4 12 14.4C11.8333 14.4 11.6889 14.4611 11.5667 14.5833C11.4556 14.6944 11.4 14.8333 11.4 15C11.4 15.1667 11.4556 15.3111 11.5667 15.4333C11.6889 15.5444 11.8333 15.6 12 15.6ZM11.4 13.6H12.6V10.4H11.4V13.6Z" fill="#212121"/>
|
|
879
|
+
</g>
|
|
880
|
+
<defs>
|
|
881
|
+
<clipPath id="clip0_6013_33858">
|
|
882
|
+
<rect width="24" height="24" fill="white"/>
|
|
883
|
+
</clipPath>
|
|
884
|
+
</defs>`;
|
|
793
885
|
}
|
|
794
886
|
else {
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
887
|
+
prependIcon.innerHTML = `<g clip-path="url(#clip0_6083_34804)">
|
|
888
|
+
<path d="M11.4 15.2H12.6V11.2H11.4V15.2ZM12 10C12.1667 10 12.3056 9.94444 12.4167 9.83333C12.5389 9.71111 12.6 9.56667 12.6 9.4C12.6 9.23333 12.5389 9.09444 12.4167 8.98333C12.3056 8.86111 12.1667 8.8 12 8.8C11.8333 8.8 11.6889 8.86111 11.5667 8.98333C11.4556 9.09444 11.4 9.23333 11.4 9.4C11.4 9.56667 11.4556 9.71111 11.5667 9.83333C11.6889 9.94444 11.8333 10 12 10ZM12 18.4C11.1222 18.4 10.2944 18.2333 9.51667 17.9C8.73889 17.5667 8.05556 17.1111 7.46667 16.5333C6.88889 15.9444 6.43333 15.2611 6.1 14.4833C5.76667 13.7056 5.6 12.8778 5.6 12C5.6 11.1111 5.76667 10.2833 6.1 9.51667C6.43333 8.73889 6.88889 8.06111 7.46667 7.48333C8.05556 6.89444 8.73889 6.43333 9.51667 6.1C10.2944 5.76667 11.1222 5.6 12 5.6C12.8889 5.6 13.7167 5.76667 14.4833 6.1C15.2611 6.43333 15.9389 6.89444 16.5167 7.48333C17.1056 8.06111 17.5667 8.73889 17.9 9.51667C18.2333 10.2833 18.4 11.1111 18.4 12C18.4 12.8778 18.2333 13.7056 17.9 14.4833C17.5667 15.2611 17.1056 15.9444 16.5167 16.5333C15.9389 17.1111 15.2611 17.5667 14.4833 17.9C13.7167 18.2333 12.8889 18.4 12 18.4ZM12 17.2C13.4444 17.2 14.6722 16.6944 15.6833 15.6833C16.6944 14.6722 17.2 13.4444 17.2 12C17.2 10.5556 16.6944 9.32778 15.6833 8.31667C14.6722 7.30555 13.4444 6.8 12 6.8C10.5556 6.8 9.32778 7.30555 8.31667 8.31667C7.30556 9.32778 6.8 10.5556 6.8 12C6.8 13.4444 7.30556 14.6722 8.31667 15.6833C9.32778 16.6944 10.5556 17.2 12 17.2Z" fill="#212121"/>
|
|
889
|
+
</g>
|
|
890
|
+
<defs>
|
|
891
|
+
<clipPath id="clip0_6083_34804">
|
|
892
|
+
<rect width="24" height="24" fill="white"/>
|
|
893
|
+
</clipPath>
|
|
894
|
+
</defs>`;
|
|
895
|
+
firebaseText.innerText = 'Using emulated backend';
|
|
896
|
+
}
|
|
897
|
+
firebaseText.setAttribute('id', firebaseTextId);
|
|
798
898
|
}
|
|
799
899
|
if (document.readyState === 'loading') {
|
|
800
900
|
window.addEventListener('DOMContentLoaded', setupDom);
|
|
@@ -2196,41 +2296,6 @@ function getModularInstance(service) {
|
|
|
2196
2296
|
}
|
|
2197
2297
|
}
|
|
2198
2298
|
|
|
2199
|
-
/**
|
|
2200
|
-
* @license
|
|
2201
|
-
* Copyright 2025 Google LLC
|
|
2202
|
-
*
|
|
2203
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
2204
|
-
* you may not use this file except in compliance with the License.
|
|
2205
|
-
* You may obtain a copy of the License at
|
|
2206
|
-
*
|
|
2207
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
2208
|
-
*
|
|
2209
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
2210
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
2211
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2212
|
-
* See the License for the specific language governing permissions and
|
|
2213
|
-
* limitations under the License.
|
|
2214
|
-
*/
|
|
2215
|
-
/**
|
|
2216
|
-
* Checks whether host is a cloud workstation or not.
|
|
2217
|
-
* @public
|
|
2218
|
-
*/
|
|
2219
|
-
function isCloudWorkstation(host) {
|
|
2220
|
-
return host.endsWith('.cloudworkstations.dev');
|
|
2221
|
-
}
|
|
2222
|
-
/**
|
|
2223
|
-
* Makes a fetch request to the given server.
|
|
2224
|
-
* Mostly used for forwarding cookies in Firebase Studio.
|
|
2225
|
-
* @public
|
|
2226
|
-
*/
|
|
2227
|
-
async function pingServer(endpoint) {
|
|
2228
|
-
const result = await fetch(endpoint, {
|
|
2229
|
-
credentials: 'include'
|
|
2230
|
-
});
|
|
2231
|
-
return result.ok;
|
|
2232
|
-
}
|
|
2233
|
-
|
|
2234
2299
|
/**
|
|
2235
2300
|
* @license
|
|
2236
2301
|
* Copyright 2017 Google LLC
|