@worksafevictoria/wcl7.5 1.8.0 → 1.9.0-beta.1

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/lib/utility.js CHANGED
@@ -35,8 +35,6 @@ function isGovSite(url) {
35
35
  }
36
36
 
37
37
  function navigateToPath(path, newTab, nuxtRouter) {
38
- debugger
39
-
40
38
  const url = String(path).startsWith('www.') ? `http://${path}` : path
41
39
  const isAbsolute = isAbsoluteUrl(url)
42
40
  const router = nuxtRouter ? nuxtRouter : this.$router
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.8.0",
3
+ "version": "1.9.0-beta.1",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -227,7 +227,6 @@ export default {
227
227
  },
228
228
  methods: {
229
229
  cardTitleSelected(selectedCard, ev) {
230
- debugger;
231
230
  this.clearCards();
232
231
  selectedCard.selected = !!!selectedCard.selected;
233
232
  const selectedCardModelIndex = this.getChildIndex(selectedCard);
@@ -239,8 +238,6 @@ export default {
239
238
  });
240
239
  },
241
240
  cardSelected(selectedCard, ev) {
242
- debugger;
243
- console.log("cardSelected selectedCard :- ", selectedCard);
244
241
  this.clearCards();
245
242
  selectedCard.selected = !!!selectedCard.selected;
246
243
  const selectedCardModelIndex = this.getChildIndex(selectedCard);
@@ -401,8 +401,6 @@ export default {
401
401
  },
402
402
  methods: {
403
403
  cardClicked(ev) {
404
- debugger;
405
-
406
404
  if (this.isSelectable) {
407
405
  this.parentGrid.cardSelected(this, ev);
408
406
  }
@@ -412,7 +410,6 @@ export default {
412
410
  }
413
411
  },
414
412
  cardTitleClicked(ev) {
415
- debugger;
416
413
  if (this.isCardTitleSelectable) {
417
414
  this.parentGrid.cardTitleSelected(this, ev);
418
415
  }
@@ -3,7 +3,7 @@ import arRecord from './index.vue'
3
3
  const arData =
4
4
  {
5
5
  title: 'Ventia Utility Services Pty Limited',
6
- fullAddress: 'Ventia - Cardinia Building, 25 Lucknow Street MITCHAM VIC 3132',
6
+ fullAddress: 'MITCHAM VIC 3132',
7
7
  workPhone: '0438531164',
8
8
  mobilePhone: '0438531164',
9
9
  email: 'daniel.dehaan@ventia.com',
@@ -9,7 +9,7 @@
9
9
  </a>
10
10
  </column>
11
11
  <column md="2" sm="12" class="address" >
12
- <div class="label">Office address</div>
12
+ <div class="label">Location</div>
13
13
  <a v-if="item.fullAddress" target="_blank" :href="gMapLink"><span class="sr-only visually-hidden">Address</span>
14
14
  {{ item.fullAddress }}
15
15
  </a>
@@ -145,7 +145,7 @@ export default {
145
145
  },
146
146
  computed: {
147
147
  gMapLink() {
148
- return `https://google.com/maps?q=${this.item.title}%20${this.item.fullAddress}`
148
+ return `https://google.com/maps?q=${this.item.fullAddress}`
149
149
  },
150
150
  validContacts() {
151
151
  if (this.item.contact1 === '' && this.item.phone1 === '' && this.item.email1 === '' && this.item.mobile1 === '') {
@@ -13,7 +13,7 @@
13
13
  <label class="visually-hidden" for="search-directory">
14
14
  Search by suburb (typed suburb automatically filters below results)
15
15
  </label>
16
- <input type="text" v-model="searchSub" placeholder="Address" class="search">
16
+ <input type="text" v-model="searchSub" placeholder="Location" class="search">
17
17
  </column>
18
18
  <!-- Other Filters -->
19
19
  <column xxl="2" xl="3" md="4" sm="6">
@@ -136,7 +136,7 @@ export default {
136
136
  flatRecords.push({
137
137
  type: 'ar',
138
138
  title: record.ResourceName,
139
- fullAddress: record.CompanyAddress + ' ' + record.AddressLine2,
139
+ fullAddress: record.AddressLine2,
140
140
  workPhone: record.Phone,
141
141
  mobilePhone: record.CompanyMobile,
142
142
  email: record.CompanyEmailDisp,
@@ -172,11 +172,14 @@ export default {
172
172
 
173
173
  formatWebsite(url) {
174
174
  let startUrl = url.slice(0, 3)
175
+ let returnUrl = url
175
176
  if (startUrl.toLowerCase() === 'www') {
176
- return 'https://' + url
177
- } else {
178
- return url
179
- }
177
+ returnUrl = 'https://' + url
178
+ }
179
+ if (startUrl.toLowerCase() !== 'htt' && startUrl.toLowerCase() !== 'www' && url !== '') {
180
+ returnUrl = 'https://www.' + url
181
+ }
182
+ return returnUrl
180
183
  },
181
184
 
182
185
  returnContact(firstN, lastN) {
@@ -213,11 +213,14 @@ export default {
213
213
 
214
214
  formatWebsite(url) {
215
215
  let startUrl = url.slice(0, 3)
216
+ let returnUrl = url
216
217
  if (startUrl.toLowerCase() === 'www') {
217
- return 'https://' + url
218
- } else {
219
- return url
220
- }
218
+ returnUrl = 'https://' + url
219
+ }
220
+ if (startUrl.toLowerCase() !== 'htt' && startUrl.toLowerCase() !== 'www' && url !== '') {
221
+ returnUrl = 'https://www.' + url
222
+ }
223
+ return returnUrl
221
224
  },
222
225
 
223
226
  chunkify(arr, n) {
@@ -4,40 +4,38 @@ import { BCol, BRow, BContainer } from 'bootstrap-vue-next'
4
4
  const englishItemList = [
5
5
  {
6
6
  text: 'Section one heading',
7
- id: 'item-1'
7
+ id: 'item-1',
8
8
  },
9
9
  {
10
10
  text: 'Section two heading spans over two lines',
11
- id: 'item-2'
11
+ id: 'item-2',
12
12
  },
13
13
  {
14
- text:
15
- 'Section three heading spans over three lines and is active yellow or green',
16
- id: 'item-3'
14
+ text: 'Section three heading spans over three lines and is active yellow or green',
15
+ id: 'item-3',
17
16
  },
18
17
  {
19
18
  text: 'Section four heading',
20
- id: 'item-4'
21
- }
19
+ id: 'item-4',
20
+ },
22
21
  ]
23
22
  const arabicItemList = [
24
23
  {
25
24
  text: 'عنوان القسم الأول',
26
- id: 'item-1'
25
+ id: 'item-1',
27
26
  },
28
27
  {
29
28
  text: 'يمتد عنوان القسم الثاني على سطرين',
30
- id: 'item-2'
29
+ id: 'item-2',
31
30
  },
32
31
  {
33
- text:
34
- 'يمتد عنوان القسم الثالث على ثلاثة أسطر ويكون نشطًا باللون الأصفر أو الأخضر',
35
- id: 'item-3'
32
+ text: 'يمتد عنوان القسم الثالث على ثلاثة أسطر ويكون نشطًا باللون الأصفر أو الأخضر',
33
+ id: 'item-3',
36
34
  },
37
35
  {
38
36
  text: 'عنوان الباب الرابع',
39
- id: 'item-4'
40
- }
37
+ id: 'item-4',
38
+ },
41
39
  ]
42
40
  export default {
43
41
  title: 'Paragraphs/ScrollSpy',
@@ -45,16 +43,16 @@ export default {
45
43
  tags: ['autodocs'],
46
44
  argTypes: {
47
45
  itemList: {
48
- table: {disable: true}
49
- }
46
+ table: { disable: true },
47
+ },
50
48
  },
51
49
  args: {
52
50
  title: 'On this page',
53
- itemListEnglish: englishItemList,
51
+ itemListEnglish: englishItemList,
54
52
  itemListArabic: arabicItemList,
55
53
  rtl: false,
56
- scrollSpy: { element: 'scrollspy-nested', offset: 100, method: 'auto' }
57
- }
54
+ scrollSpy: { element: 'scrollspy-nested', offset: 100, method: 'auto' },
55
+ },
58
56
  }
59
57
  const DefaultContent = (args) => ({
60
58
  components: { ScrollSpy, BCol, BRow, BContainer },
@@ -75,7 +73,7 @@ const DefaultContent = (args) => ({
75
73
  `,
76
74
  arabicText: `هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.`,
77
75
  englishItemList,
78
- arabicItemList
76
+ arabicItemList,
79
77
  }
80
78
  },
81
79
  template: `
@@ -85,7 +83,7 @@ const DefaultContent = (args) => ({
85
83
  <div
86
84
  id="scrollspy-nested"
87
85
  >
88
- <h4 id="item-1">Section one heading</h4>
86
+ <h2 id="item-1">Section one heading</h2>
89
87
  <p>{{ text }}</p>
90
88
  <p>{{ text }}</p>
91
89
  <p>{{ text }}</p>
@@ -94,7 +92,7 @@ const DefaultContent = (args) => ({
94
92
  <p>{{ text }}</p>
95
93
  <p>{{ text }}</p>
96
94
  <p>{{ text }}</p>
97
- <h4 id="item-2">Section two heading spans over two lines</h4>
95
+ <h2 id="item-2">Section two heading spans over two lines</h2>
98
96
  <p>{{ text }}</p>
99
97
  <p>{{ text }}</p>
100
98
  <p>{{ text }}</p>
@@ -102,7 +100,7 @@ const DefaultContent = (args) => ({
102
100
  <p>{{ text }}</p>
103
101
  <p>{{ text }}</p>
104
102
  <p>{{ text }}</p>
105
- <h4 id="item-3">Section three heading spans over three lines and is active yellow or green</h4>
103
+ <h2 id="item-3">Section three heading spans over three lines and is active yellow or green</h2>
106
104
  <p>{{ text }}</p>
107
105
  <p>{{ text }}</p>
108
106
  <p>{{ text }}</p>
@@ -110,7 +108,7 @@ const DefaultContent = (args) => ({
110
108
  <p>{{ text }}</p>
111
109
  <p>{{ text }}</p>
112
110
  <p>{{ text }}</p>
113
- <h4 id="item-4">Section four heading</h4>
111
+ <h2 id="item-4">Section four heading</h2>
114
112
  <p>{{ text }}</p>
115
113
  <p>{{ text }}</p>
116
114
  <p>{{ text }}</p>
@@ -172,7 +170,7 @@ const DefaultContent = (args) => ({
172
170
  <scroll-spy v-bind="args" :item-list="args.arabicItemList" />
173
171
  </b-col>
174
172
  </b-row>
175
- </b-container>`
173
+ </b-container>`,
176
174
  })
177
175
 
178
176
  export const Default = DefaultContent.bind({})
@@ -17,55 +17,48 @@
17
17
  </section-group>
18
18
  </template>
19
19
 
20
- <script>
20
+ <script setup>
21
21
  import SectionGroup from '../../Containers/SectionGroup/index.vue'
22
+ import { defineProps } from 'vue'
22
23
  import {
23
24
  BNavbar,
24
25
  BListGroup,
25
26
  BListGroupItem,
26
- vBScrollspy,
27
+ vBScrollspy as vBScrollspy,
27
28
  } from 'bootstrap-vue-next'
28
29
 
29
- export default {
30
- name: 'ScrollSpy',
31
- components: { SectionGroup, BNavbar, BListGroup, BListGroupItem },
32
- directives: { 'b-scrollspy': vBScrollspy },
33
- props: {
34
- title: {
35
- type: String,
36
- default: 'On this page',
37
- },
38
- itemList: {
39
- type: Array,
40
- required: true,
41
- },
42
- rtl: {
43
- type: Boolean,
44
- default: false,
45
- },
46
- scrollSpy: {
47
- type: Object,
48
- default: () => {
49
- return {
50
- element: 'body',
51
- offset: 100,
52
- method: 'auto',
53
- contentQuery: '[id]',
54
- }
55
- },
56
- },
30
+ const { title, itemList, rtl, scrollSpy } = defineProps({
31
+ title: {
32
+ type: String,
33
+ default: 'On this page',
57
34
  },
58
- methods: {
59
- scrollToAnchor(anchor) {
60
- const anchorElement = document.getElementById(anchor)
61
- if (anchorElement) {
62
- anchorElement.focus()
63
- anchorElement.scrollIntoView({
64
- behavior: 'smooth',
65
- })
66
- }
67
- },
35
+ itemList: {
36
+ type: Array,
37
+ required: true,
38
+ },
39
+ rtl: {
40
+ type: Boolean,
41
+ default: false,
42
+ },
43
+ scrollSpy: {
44
+ type: Object,
45
+ default: () => ({
46
+ element: 'body',
47
+ offset: 100,
48
+ method: 'auto',
49
+ contentQuery: 'h2[id]',
50
+ }),
68
51
  },
52
+ })
53
+
54
+ const scrollToAnchor = (anchor) => {
55
+ const anchorElement = document.getElementById(anchor)
56
+ if (anchorElement) {
57
+ anchorElement.focus()
58
+ anchorElement.scrollIntoView({
59
+ behavior: 'smooth',
60
+ })
61
+ }
69
62
  }
70
63
  </script>
71
64
 
@@ -284,7 +284,8 @@ export default {
284
284
  this.type === "paragraph--resource_group" ||
285
285
  this.type === "paragraph--resource_list"
286
286
  ) {
287
- allCards.cards = this.sortByDate(allCards.cards);
287
+ // allCards.cards = this.sortByDate(allCards.cards);
288
+ allCards.cards = allCards.cards;
288
289
  }
289
290
  }
290
291
  return allCards;
@@ -151,8 +151,6 @@ export default {
151
151
  return value;
152
152
  },
153
153
  handleSelect(card) {
154
- debugger;
155
-
156
154
  const isSolar = this.googleSearchFlag === "solar";
157
155
  const link = card?.selectedCard?.link;
158
156
  const openInNewTab = card?.ev?.ctrlKey || card?.ev?.metaKey;
@@ -274,8 +274,6 @@ export default {
274
274
  }
275
275
  },
276
276
  onChange(e) {
277
- //debugger
278
-
279
277
  if (this.searchQuery && this.searchQuery.length > 2) {
280
278
  this.onSearch(e);
281
279
  }
@@ -6,7 +6,7 @@ export const arData = [
6
6
  Phone: '0404073745',
7
7
  CompanyMobile: '0404 073 745',
8
8
  CompanyEmailDisp: 'ads.asbestos@gmail.com',
9
- CompanyWebURLDisp: 'www.adsasbestosremoval.com.au',
9
+ CompanyWebURLDisp: 'adsasbestosremoval.com.au',
10
10
  ContactFirstName: 'Ivan',
11
11
  ContactLastName: 'Silva',
12
12
  ContactPhoneDisp: '0404073745',
@@ -7,7 +7,7 @@ export const hscpData = [
7
7
  Work_phone: '03 9555 9333',
8
8
  Toll_free_phone: '1800 555 333',
9
9
  Email1: 'ohs@test.com.au',
10
- Website: 'https://www.anmfvic.asn.au/education-and-training/hsr-training/events',
10
+ Website: 'anmfvic.asn.au/education-and-training/hsr-training/events',
11
11
  Contact_1: 'Christina Groebl',
12
12
  Contact_1_Phone: '03 9555 0222',
13
13
  Contact_1_Email: 'cgroebl@test.com.au',
@@ -26,7 +26,7 @@ export const hscpData = [
26
26
  Work_phone: '03 5990 7117',
27
27
  Toll_free_phone: '1300 244 746',
28
28
  Email1: 'csadmin@chisholm.edu.au',
29
- Website: 'https://www.chisholm.edu.au/career-fields/workplace-safety',
29
+ Website: 'http://www.chisholm.edu.au/career-fields/workplace-safety',
30
30
  Contact_1: 'Francesca Laforgia',
31
31
  Contact_1_Email: 'csadmin@chisholm.edu.au',
32
32
  Contact_1_Phone: '03 5990 7117',