Add an intermediate pending state for widget messages (#323)
* Add an intermediate pending state for widget messages * Remove unnecessary setTimeout * Rename method
This commit is contained in:
parent
070f762293
commit
a3662091c7
7 changed files with 110 additions and 11 deletions
10
app/javascript/widget/helpers/uuid.js
Normal file
10
app/javascript/widget/helpers/uuid.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
const getUuid = () =>
|
||||
'xxxxxxxx4xxx'.replace(/[xy]/g, c => {
|
||||
// eslint-disable-next-line
|
||||
const r = (Math.random() * 16) | 0;
|
||||
// eslint-disable-next-line
|
||||
const v = c === 'x' ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
});
|
||||
|
||||
export default getUuid;
|
Loading…
Add table
Add a link
Reference in a new issue