forked from alethcoe/ChromePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinjector.js
105 lines (74 loc) · 2.66 KB
/
injector.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
//var value = ${intValue}
//you may not need cors
//fetch('https://yourapi').then(function (response) {
fetch("https://localhost:44320/sampleformdata/book", {mode: 'cors'}).then(function (response) {
//fetch(`https://localhost:44320/sampleformdata/?value=${value}`, {mode: 'cors'}).then(function (response) {
// The API call was successful!
if (response.ok) {
return response.json();
} else {
return Promise.reject(response);
}
}).then(function (data) {
// This is the JSON from our response
fillforms(data);
console.log(data);
}).catch(function (err) {
// There was an error
console.warn('Something went wrong.', err);
});
function fillforms(data){
fillField(document.querySelector('input[name="fullname"]'), data.title);
fillField(document.querySelector('input[name="email"]'), data.author);
fillField(document.querySelector('input[name="city"]'), data.pages);
//form2
fillField(document.getElementById('field1'), data.title);
fillField(document.querySelector('input[aria-label="field2"]'), data.author);
fillField(document.querySelector('input[class="field3"]'), data.pages);
}
function fillField(selector, value)
{
var field = selector();
fillField(field, value);
}
function fillField(field, value){
if(field){
field.value = value;
}
}
// function fillforms1(data){
// //form1
// var fullname = document.querySelector('input[name="fullname"]');
// fillField(fullname, data[0]);
// var email = document.querySelector('input[name="email"]');
// fillField(email, data[1]);
// //city
// var city = document.querySelector('input[name="city"]');
// fillField(city, data[2]);
// //form2
// var field1 = document.getElementById('field1');
// fillField(field1, data[0]);
// var field2 = document.querySelector('input[aria-label="field2"]');
// fillField(field2, data[1]);
// //probably terrible to look for a class like this..
// var field3 = document.querySelector('input[class="field3"]');
// fillField(field3, data[2]);
// }
// {
// "title":"The Cat in the Hat",
// "author":"Dr. Seuss",
// "pages":"48"
// }
// function fillforms2(data){
// //form1
// var title = document.querySelector('input[name="fullname"]');
// fillField(title, data.title);
// var author = document.querySelector('input[name="email"]');
// fillField(author, data.author);
// //form2
// var field1 = document.getElementById('field1');
// fillField(field1, data.title);
// //probably terrible to look for a class like this..
// var field3 = document.querySelector('input[class="field3"]');
// fillField(field3, data.pages)
// }