Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Implement the frontend page for recipient's data input using ppa #26 #131

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8522577
feat: Implemented the sqr code
Blindspot22 Apr 11, 2024
7d9373b
feat(power-pay-frontend): mordified the main.tsx, index.tsx and mplem…
Tekum-Emmanuella Apr 11, 2024
b4afc6e
feat: Implemented the fake api and called it in the userinfo.tsx
Ngha-Boris Apr 12, 2024
12ffd5b
Fix: fixed the test which was failing due to the changes made in the …
Ngha-Boris Apr 13, 2024
3ebaba1
Delete power-pay-frontend/dev-dist/sw.js
Ngha-Boris Apr 15, 2024
0cedb0c
Delete power-pay-frontend/dev-dist/workbox-b5f7729d.js
Ngha-Boris Apr 15, 2024
b4f29ce
Delete power-pay-frontend/dev-dist/registerSW.js
Ngha-Boris Apr 15, 2024
ba1499d
feat(power-pay-frontend): mordified the userinfo.tsx to move all cont…
Tekum-Emmanuella Apr 17, 2024
3733593
feat(power-pay-frontend): mordified the userinfo.tsx to move all cont…
Tekum-Emmanuella Apr 17, 2024
e54af47
Update(frontend): Mordified the userinfo fo manual input. Made it res…
Tekum-Emmanuella Apr 17, 2024
ce8fb76
Merge branch 'Implement-the-frontend-page-for-recipient's-data-input-…
Tekum-Emmanuella Apr 17, 2024
ef30c09
Renamed src/components/index.tsx to paymentoption.tsx
Tekum-Emmanuella Apr 17, 2024
db0e2cf
Merge branch 'ADORSYS-GIS:main' into Implement-the-frontend-page-for-…
Tekum-Emmanuella Apr 17, 2024
ac2526f
Fix(frontend): Renamed the index file in the components folder to pay…
Tekum-Emmanuella Apr 17, 2024
e06d304
Merge branch 'Implement-the-frontend-page-for-recipient's-data-input-…
Tekum-Emmanuella Apr 17, 2024
2741c0d
Fix(frontend): Removed the uneccessary imports fron the files.
Tekum-Emmanuella Apr 17, 2024
3a51951
Fix(frontend): Removed the fake Api link from the userinfo file.
Tekum-Emmanuella Apr 18, 2024
f2dcc0e
Merge branch 'main' into Implement-the-frontend-page-for-recipient's-…
Ngha-Boris Apr 18, 2024
927fd24
Fix: fix the fake api
Ngha-Boris Apr 18, 2024
26649a2
updated the QR-Scan option
Blindspot22 Apr 22, 2024
3cc78af
Merge branch 'main' into Implement-the-frontend-page-for-recipient's-…
Ngha-Boris Apr 23, 2024
6584798
Rename userinfo.tsx to RecipientInfo.tsx
Tekum-Emmanuella May 7, 2024
e29b487
Update route.tsx
Tekum-Emmanuella May 7, 2024
28a1b64
Update RecipientInfo.tsx
Tekum-Emmanuella May 7, 2024
8ef0f30
Update paymentoption.tsx
Tekum-Emmanuella May 7, 2024
e8faaa2
Update paymentoption.tsx
Tekum-Emmanuella May 7, 2024
2531f0c
deleted: deleted paymentoption.tsx since they where two
Ngha-Boris Jun 11, 2024
43ec1f5
update: Updated the RecipientInfo
Ngha-Boris Jun 11, 2024
d36a452
update: Added type button to the QR Scan button
Ngha-Boris Jun 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions power-pay-frontend/dev-dist/registerSW.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 92 additions & 0 deletions power-pay-frontend/dev-dist/sw.js
Tekum-Emmanuella marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/**
* Copyright 2018 Google Inc. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// If the loader is already loaded, just stop.
if (!self.define) {
let registry = {};

// Used for `eval` and `importScripts` where we can't get script URL by other means.
// In both cases, it's safe to use a global var because those functions are synchronous.
let nextDefineUri;

const singleRequire = (uri, parentUri) => {
uri = new URL(uri + ".js", parentUri).href;
return registry[uri] || (

new Promise(resolve => {
if ("document" in self) {
const script = document.createElement("script");
script.src = uri;
script.onload = resolve;
document.head.appendChild(script);
} else {
nextDefineUri = uri;
importScripts(uri);
resolve();
}
})

.then(() => {
let promise = registry[uri];
if (!promise) {
throw new Error(`Module ${uri} didn’t register its module`);
}
return promise;
})
);
};

self.define = (depsNames, factory) => {
const uri = nextDefineUri || ("document" in self ? document.currentScript.src : "") || location.href;
if (registry[uri]) {
// Module is already loading or loaded.
return;
}
let exports = {};
const require = depUri => singleRequire(depUri, uri);
const specialDeps = {
module: { uri },
exports,
require
};
registry[uri] = Promise.all(depsNames.map(
depName => specialDeps[depName] || require(depName)
)).then(deps => {
factory(...deps);
return exports;
});
};
}
define(['./workbox-b5f7729d'], (function (workbox) { 'use strict';

self.skipWaiting();
workbox.clientsClaim();

/**
* The precacheAndRoute() method efficiently caches and responds to
* requests for URLs in the manifest.
* See https://goo.gl/S9QRab
*/
workbox.precacheAndRoute([{
"url": "registerSW.js",
"revision": "3ca0b8505b4bec776b69afdba2768812"
}, {
"url": "index.html",
"revision": "0.c4n6hdnvvog"
}], {});
workbox.cleanupOutdatedCaches();
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
allowlist: [/^\/$/]
}));

}));
Loading
Loading