@budibase/bbui 1.0.105-alpha.2 → 1.0.105-alpha.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/bbui",
3
3
  "description": "A UI solution used in the different Budibase projects.",
4
- "version": "1.0.105-alpha.2",
4
+ "version": "1.0.105-alpha.22",
5
5
  "license": "MPL-2.0",
6
6
  "svelte": "src/index.js",
7
7
  "module": "dist/bbui.es.js",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@adobe/spectrum-css-workflow-icons": "^1.2.1",
41
- "@budibase/string-templates": "^1.0.105-alpha.2",
41
+ "@budibase/string-templates": "^1.0.105-alpha.22",
42
42
  "@spectrum-css/actionbutton": "^1.0.1",
43
43
  "@spectrum-css/actiongroup": "^1.0.1",
44
44
  "@spectrum-css/avatar": "^3.0.2",
@@ -84,5 +84,5 @@
84
84
  "svelte-flatpickr": "^3.2.3",
85
85
  "svelte-portal": "^1.0.0"
86
86
  },
87
- "gitHead": "0a72aa6adb6362bcd2005cc4e985b589f4f59c37"
87
+ "gitHead": "6ed0240634417aee490321aa1b37b277f26dfb28"
88
88
  }
@@ -19,18 +19,33 @@
19
19
  const dispatch = createEventDispatcher()
20
20
  const flatpickrId = `${uuid()}-wrapper`
21
21
  let open = false
22
- let flatpickr, flatpickrOptions, isTimeOnly
22
+ let flatpickr, flatpickrOptions
23
+
24
+ const resolveTimeStamp = timestamp => {
25
+ let maskedDate = new Date(`0-${timestamp}`)
26
+
27
+ if (maskedDate instanceof Date && !isNaN(maskedDate.getTime())) {
28
+ return maskedDate
29
+ } else {
30
+ return null
31
+ }
32
+ }
23
33
 
24
- $: isTimeOnly = !timeOnly && value ? !isNaN(new Date(`0-${value}`)) : timeOnly
25
34
  $: flatpickrOptions = {
26
35
  element: `#${flatpickrId}`,
27
- enableTime: isTimeOnly || enableTime || false,
28
- noCalendar: isTimeOnly || false,
36
+ enableTime: timeOnly || enableTime || false,
37
+ noCalendar: timeOnly || false,
29
38
  altInput: true,
30
- altFormat: isTimeOnly ? "H:i" : enableTime ? "F j Y, H:i" : "F j, Y",
39
+ altFormat: timeOnly ? "H:i" : enableTime ? "F j Y, H:i" : "F j, Y",
31
40
  wrap: true,
32
41
  appendTo,
33
42
  disableMobile: "true",
43
+ onReady: () => {
44
+ let timestamp = resolveTimeStamp(value)
45
+ if (timeOnly && timestamp) {
46
+ dispatch("change", timestamp.toISOString())
47
+ }
48
+ },
34
49
  }
35
50
 
36
51
  const handleChange = event => {
@@ -39,10 +54,9 @@
39
54
  if (newValue) {
40
55
  newValue = newValue.toISOString()
41
56
  }
42
- // if time only set date component to today
57
+ // if time only set date component to 2000-01-01
43
58
  if (timeOnly) {
44
- const todayDate = new Date().toISOString().split("T")[0]
45
- newValue = `${todayDate}T${newValue.split("T")[1]}`
59
+ newValue = `2000-01-01T${newValue.split("T")[1]}`
46
60
  }
47
61
  dispatch("change", newValue)
48
62
  }
@@ -76,10 +90,13 @@
76
90
  return null
77
91
  }
78
92
  let date
79
- let time = new Date(`0-${val}`)
93
+ let time
94
+
80
95
  // it is a string like 00:00:00, just time
81
- if (timeOnly || (typeof val === "string" && !isNaN(time))) {
82
- date = time
96
+ let ts = resolveTimeStamp(val)
97
+
98
+ if (timeOnly && ts) {
99
+ date = ts
83
100
  } else if (val instanceof Date) {
84
101
  // Use real date obj if already parsed
85
102
  date = val
@@ -101,7 +118,7 @@
101
118
  }
102
119
  </script>
103
120
 
104
- {#key isTimeOnly}
121
+ {#key timeOnly}
105
122
  <Flatpickr
106
123
  bind:flatpickr
107
124
  value={parseDate(value)}
@@ -36,6 +36,10 @@
36
36
  padding-left: var(--spacing-l);
37
37
  padding-right: var(--spacing-l);
38
38
  }
39
+ .paddingX-XL {
40
+ padding-left: var(--spacing-xl);
41
+ padding-right: var(--spacing-xl);
42
+ }
39
43
  .paddingY-S {
40
44
  padding-top: var(--spacing-s);
41
45
  padding-bottom: var(--spacing-s);
@@ -48,6 +52,10 @@
48
52
  padding-top: var(--spacing-l);
49
53
  padding-bottom: var(--spacing-l);
50
54
  }
55
+ .paddingY-XL {
56
+ padding-top: var(--spacing-xl);
57
+ padding-bottom: var(--spacing-xl);
58
+ }
51
59
  .gap-XXS {
52
60
  grid-gap: var(--spacing-xs);
53
61
  }
@@ -1,42 +1,21 @@
1
1
  <script>
2
2
  import Icon from "../Icon/Icon.svelte"
3
+ import { copyToClipboard } from "../helpers"
3
4
  import { notifications } from "../Stores/notifications"
5
+
4
6
  export let value
5
7
 
6
- const onClick = e => {
8
+ const onClick = async e => {
7
9
  e.stopPropagation()
8
- copyToClipboard(value)
9
- }
10
-
11
- const copyToClipboard = value => {
12
- return new Promise(res => {
13
- if (navigator.clipboard && window.isSecureContext) {
14
- // Try using the clipboard API first
15
- navigator.clipboard.writeText(value).then(res)
16
- } else {
17
- // Fall back to the textarea hack
18
- let textArea = document.createElement("textarea")
19
- textArea.value = value
20
- textArea.style.position = "fixed"
21
- textArea.style.left = "-9999px"
22
- textArea.style.top = "-9999px"
23
- document.body.appendChild(textArea)
24
- textArea.focus()
25
- textArea.select()
26
- document.execCommand("copy")
27
- textArea.remove()
28
- res()
29
- }
30
- })
31
- .then(() => {
32
- notifications.success("Copied to clipboard")
33
- })
34
- .catch(() => {
35
- notifications.error(
36
- "Failed to copy to clipboard. Check the dev console for the value."
37
- )
38
- console.warn("Failed to copy the value", value)
39
- })
10
+ try {
11
+ await copyToClipboard(value)
12
+ notifications.success("Copied to clipboard")
13
+ } catch (error) {
14
+ notifications.error(
15
+ "Failed to copy to clipboard. Check the dev console for the value."
16
+ )
17
+ console.warn("Failed to copy the value", value)
18
+ }
40
19
  }
41
20
  </script>
42
21
 
@@ -108,7 +108,7 @@
108
108
  padding-left: var(--spacing-xl);
109
109
  padding-right: var(--spacing-xl);
110
110
  position: relative;
111
- border-bottom: var(--border-light);
111
+ border-bottom: 1px solid var(--spectrum-global-color-gray-300);
112
112
  }
113
113
  .spectrum-Tabs-content {
114
114
  margin-top: var(--spectrum-global-dimension-static-size-150);
package/src/helpers.js CHANGED
@@ -106,3 +106,29 @@ export const deepSet = (obj, key, value) => {
106
106
  export const cloneDeep = obj => {
107
107
  return JSON.parse(JSON.stringify(obj))
108
108
  }
109
+
110
+ /**
111
+ * Copies a value to the clipboard
112
+ * @param value the value to copy
113
+ */
114
+ export const copyToClipboard = value => {
115
+ return new Promise(res => {
116
+ if (navigator.clipboard && window.isSecureContext) {
117
+ // Try using the clipboard API first
118
+ navigator.clipboard.writeText(value).then(res)
119
+ } else {
120
+ // Fall back to the textarea hack
121
+ let textArea = document.createElement("textarea")
122
+ textArea.value = value
123
+ textArea.style.position = "fixed"
124
+ textArea.style.left = "-9999px"
125
+ textArea.style.top = "-9999px"
126
+ document.body.appendChild(textArea)
127
+ textArea.focus()
128
+ textArea.select()
129
+ document.execCommand("copy")
130
+ textArea.remove()
131
+ res()
132
+ }
133
+ })
134
+ }