Lädt...

🔧 4th, save tester's behavior


Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to

In the 3rd post,we make AndroidClosingTestPairs get the tester's behavior using deeplink, now we need to submit this behavior, so that App's author can know who have tested his app.

firstly: we need to create a table to save the tester's info

you can easily add columns in Supabase's table editor without writing any SQL

Image description

then, just call the supabase write function in the client, I wrappered the logic with react-query here

`
export const useSaveSubmissionForm = createMutation({
mutationKey: ['save-submission'],
mutationFn: async (formValue) => {
const { data, error } = await supabase
.from(TABLE_NAME)
.insert({
email: formValue.email,
app_name: formValue.app_name,
// tester: formValue.tester,
})
.select('*')
.single()

if (error) {
  throw new Error(error.message);
}

return data as SubmissionFormType;

},
});
`

Finally, we get the info

Image description

what's next?

we will let app's author know who has tested his app, and easily jump into the helper's app,make a test back.

...

🔧 4th, save tester's behavior


📈 47.57 Punkte
🔧 Programmierung

📰 ISC Stormcast For Friday, April 4th, 2025 https://isc.sans.edu/podcastdetail/9394, (Fri, Apr 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Tuesday, March 4th, 2025 https://isc.sans.edu/podcastdetail/9348, (Tue, Mar 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Tuesday, February 4th, 2025 https://isc.sans.edu/podcastdetail/9308, (Tue, Feb 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Tuesday, February 4th, 2025 https://isc.sans.edu/podcastdetail/9308, (Tue, Feb 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Wednesday, December 4th, 2024 https://isc.sans.edu/podcastdetail/9240, (Wed, Dec 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Monday, November 4th, 2024 https://isc.sans.edu/podcastdetail/9206, (Mon, Nov 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Friday, October 4th, 2024 https://isc.sans.edu/podcastdetail/9166, (Fri, Oct 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Wednesday, September 4th, 2024 https://isc.sans.edu/podcastdetail/9124, (Wed, Sep 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Tuesday, June 4th, 2024 https://isc.sans.edu/podcastdetail/9008, (Tue, Jun 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Thursday, April 4th, 2024 https://isc.sans.edu/podcastdetail/8924, (Thu, Apr 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Monday, March 4th, 2024 https://isc.sans.edu/podcastdetail/8878, (Mon, Mar 4th)


📈 29.51 Punkte
📰 IT Security

📰 ISC Stormcast For Thursday, January 4th, 2024 https://isc.sans.edu/podcastdetail/8796, (Thu, Jan 4th)


📈 29.51 Punkte
📰 IT Security