-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
229 lines (184 loc) · 6.59 KB
/
script.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// [ADD NEW PROFILE] button fetched ---------------------------------------------------
const add_new_button = document.getElementById("add_new_button");
// [DIV WITH PROFILE LINKS] and buttons fetched below --------------------------------
const linksDiv = document.querySelector(".links-area");
// [key] is the name of the field
// [linkData] is the data/links in the field ------------------------------------------
const saveToLocalStorage = (key, linkData) => {
if (!linkData) {
return;
}
localStorage.setItem(key, linkData);
};
// [urlData] is the linkdata of the field ---------------------------------------------
const copyToClipboard = async (urlData) => {
try {
await navigator.clipboard.writeText(urlData);
showalert(urlData);
} catch (error) {
alert("Did you give the clipboard permission ?");
}
};
const showalert = (linkData) => {
if (!linkData) {
alert("No link to copy ❌ ");
return;
}
alert(linkData + " copied to clipboard ✔ ");
};
// [PRESET] of profiles --------------------------------------------------------------
const loadAllFromLocalStorage = () => {
const defaultFields = [
"Github",
"Linkedin",
"Twitter",
"Portfolio",
"Email",
"Dev",
];
// An array for custom fields -----------------------------------------------------
let customFields = JSON.parse(localStorage.getItem("customFields")) ?? [];
if (customFields.length != 0) {
customFields.forEach((field) => {
renderFieldsFromLocalStorage({ newFieldName: field, isNewField: false });
});
} else {
localStorage.setItem("customFields", JSON.stringify(defaultFields));
}
};
// [newFieldName] is the name of the field
// [isNewField] is a boolean to check if the field is new or not ---------------------
const renderFieldsFromLocalStorage = ({ newFieldName, isNewField }) => {
const newField = document.createElement("div");
newField.classList.add(
"flex",
"flex-row",
"justify-center",
"items-center",
"ml-3"
);
// [FONT AWESOME] icons -------------------------------------------------------------
const iconsHash = {
Linkedin: "fab fa-linkedin",
Github: "fab fa-github-alt",
Twitter: "fab fa-twitter",
Portfolio: "fab fa-instagram",
Email: "fas fa-envelope",
Dev: "fab fa-dev",
};
// Add default [LINK] icon to new fields ------------------------------------------
const newIcon = document.createElement("i");
newIcon.style.fontSize = "28px";
if (iconsHash[newFieldName]) {
newIcon.classList.add(...iconsHash[newFieldName].split(" "));
} else {
newIcon.classList.add("fas", "fa-link");
}
// Creating Copy and Delete Buttons -----------------------------------------------
const newSaveIcon = document.createElement("i");
newSaveIcon.classList.add("fas", "fa-save");
const newCopyIcon = document.createElement("i");
newCopyIcon.classList.add("fas", "fa-copy");
const newDeleteIcon = document.createElement("i");
newDeleteIcon.classList.add("fas", "fa-trash");
// Creating Input Field -------------------------------------------------------------
const newFieldInput = document.createElement("input");
newFieldInput.classList.add(
"w-3/5",
"ml-4",
"px-2",
"py-2",
"shadow-md",
"rounded-md",
"text-left"
);
newFieldInput.setAttribute("placeholder", newFieldName);
newFieldInput.setAttribute("id", newFieldName);
newFieldInput.value = localStorage.getItem(newFieldName);
newFieldInput.setAttribute("type", "text");
// -------------------------- SAVE BUTTON -------------------------------
const newFieldSaveBtn = document.createElement("button");
newFieldSaveBtn.classList.add(
"m-2",
"bg-grey-500",
"hover:bg-grey-700",
"text-black",
"font-bold",
"py-2",
"px-4",
"rounded-md",
"shadow-md"
);
newFieldSaveBtn.setAttribute("id", newFieldName + "SaveBtn");
newFieldSaveBtn.appendChild(newSaveIcon);
newFieldSaveBtn.addEventListener("click", () => {
const data = document.getElementById(newFieldName).value;
saveToLocalStorage(newFieldName, data);
});
// -------------------------- DELETE BUTTON -------------------------------
const newFieldDeleteBtn = document.createElement("button");
newFieldDeleteBtn.classList.add(
"m-2",
"bg-grey-500",
"hover:bg-grey-700",
"text-black",
"font-bold",
"py-2",
"px-4",
"rounded-md",
"shadow-md"
);
newFieldDeleteBtn.setAttribute("id", newFieldName + "DeleteBtn");
newFieldDeleteBtn.appendChild(newDeleteIcon);
newFieldDeleteBtn.addEventListener("click", () => {
const data = document.getElementById(newFieldName).value = "";
localStorage.setItem(newFieldName, data);
});
// -------------------------- COPY BUTTON -------------------------------
const newFieldCopyBtn = document.createElement("button");
newFieldCopyBtn.classList.add(
"bg-grey-500",
"hover:bg-grey-700",
"text-black",
"font-bold",
"py-2",
"px-4",
"rounded-md",
"shadow-md"
);
newFieldCopyBtn.setAttribute("id", newFieldName + "CopyBtn");
newFieldCopyBtn.appendChild(newCopyIcon);
newFieldCopyBtn.addEventListener("click", () => {
const data = document.getElementById(newFieldName).value;
copyToClipboard(data);
});
// Adding above elements -------------------------------------------------------------
newField.appendChild(newIcon);
newField.appendChild(newFieldInput);
newField.appendChild(newFieldSaveBtn);
newField.appendChild(newFieldCopyBtn);
newField.appendChild(newFieldDeleteBtn);
linksDiv.appendChild(newField);
if (isNewField) {
let existingFields = JSON.parse(localStorage.getItem("customFields"));
existingFields.push(newFieldName);
localStorage.setItem("customFields", JSON.stringify(existingFields));
}
};
add_new_button.addEventListener("click", () => {
newFieldName = prompt("Enter a new field name");
if (!newFieldName) return;
if (isDuplicateField(newFieldName)) return;
renderFieldsFromLocalStorage({ newFieldName, isNewField: true });
});
// [newLinkName] is the name of the field -------------------------------------------
const isDuplicateField = (newLinkName) => {
const links = JSON.parse(localStorage.getItem("customFields"));
if (!links) return;
if (links.includes(newLinkName)) {
alert("This field already exists");
return true;
}
};
// Load all the fields from local storage of browser on startup.
document.onload = loadAllFromLocalStorage();