@7365admin1/layer-common 4.2.10-staging.280 → 4.2.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @iservice365/layer-common
2
2
 
3
+ ## 4.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 66a947b: Add the front-end half of facility restore: `useFacility` now forwards the
8
+ allow-listed `status` filter to `POST /api/facilities/search/v1` (omitted
9
+ entirely when a caller does not ask for it, so no existing list changes) and
10
+ exposes `restoreFacility`, which calls the `PATCH /api/facilities/restore/v1`
11
+ route already live in API-core.
12
+
3
13
  ## 4.2.9
4
14
 
5
15
  ### Patch Changes
@@ -544,11 +554,11 @@
544
554
  `utils/console-tier.ts` + `composables/useConsoleTier.ts` mirror the server's
545
555
  own rule from two endpoints the console already calls, unprojected:
546
556
 
547
- GET /api/members/user/:user/app/admin the Seven365 staff membership
548
- GET /api/roles/id/:role that membership's role document
557
+ GET /api/members/user/:user/app/admin the Seven365 staff membership
558
+ GET /api/roles/id/:role that membership's role document
549
559
 
550
- owner = member.type === "admin" && role.type === "admin" && role.default === true
551
- staff = member.type === "admin" && role.type === "admin"
560
+ owner = member.type === "admin" && role.type === "admin" && role.default === true
561
+ staff = member.type === "admin" && role.type === "admin"
552
562
 
553
563
  `role.default` is the marker because it is the only property of a platform
554
564
  staff role no API caller can set - `role.controller.ts` validates create and
@@ -742,35 +742,11 @@
742
742
  class="visitor-preview__row"
743
743
  >
744
744
  <div class="visitor-preview__label">{{ label }}</div>
745
- <div>
746
- <!-- Was a hover tooltip on the value: the full NRIC only
747
- reachable by hovering, which says nothing is there to
748
- reach and cannot be reached at all on a touch screen.
749
- The eye alone, at the 14px the Incident Report screens
750
- draw it, is a 14px target - the floor is 24px. So the
751
- NUMBER is the control and the eye is its affordance:
752
- the whole masked value is pressable, which makes the
753
- target the width of the digits rather than of a glyph,
754
- and being a real `button` it also takes a tab stop,
755
- which a `v-icon` with a click handler never did. -->
756
- <button
757
- type="button"
758
- class="visitor-preview__reveal"
759
- :aria-label="showVisitorNric ? 'Hide NRIC' : 'Show NRIC'"
760
- :aria-pressed="showVisitorNric"
761
- @click="showVisitorNric = !showVisitorNric"
762
- >
763
- <span class="visitor-preview__value">
764
- {{
765
- showVisitorNric
766
- ? selectedVisitorObject[key]
767
- : maskNRIC(selectedVisitorObject[key])
768
- }}
769
- </span>
770
- <v-icon size="16" class="visitor-preview__eye">
771
- {{ showVisitorNric ? "mdi-eye-off-outline" : "mdi-eye-outline" }}
772
- </v-icon>
773
- </button>
745
+ <div
746
+ v-tooltip:top="selectedVisitorObject[key]"
747
+ class="visitor-preview__value"
748
+ >
749
+ {{ maskNRIC(selectedVisitorObject[key]) }}
774
750
  </div>
775
751
  </div>
776
752
 
@@ -820,84 +796,6 @@
820
796
  </div>
821
797
  </div>
822
798
 
823
- <!--
824
- THE CONTRACTOR'S PARTY.
825
-
826
- The list row has always said `( +2 members)` beside the name
827
- and then had nowhere to send you for the names themselves. The
828
- block spans both columns rather than sitting in the 116px
829
- value track: a member is a record, not a value, and several of
830
- them in a 250px column is unreadable.
831
-
832
- Read off `selectedVisitorDataObject` (the raw row) and not
833
- `selectedVisitorObject`, which filters itself down to
834
- `typeFieldMap` plus five fixed keys - `members` is on neither
835
- list, and widening that computed would change what four other
836
- dialogs on this screen see.
837
- -->
838
- <div
839
- v-else-if="key === 'members' && selectedVisitorMembers.length"
840
- class="visitor-preview__row visitor-preview__row--block"
841
- >
842
- <div class="visitor-preview__label">
843
- {{ label }} ({{ selectedVisitorMembers.length }})
844
- </div>
845
- <div class="visitor-preview__members">
846
- <div
847
- v-for="(member, index) in selectedVisitorMembers"
848
- :key="member?.nric || member?.name || index"
849
- class="visitor-preview__member"
850
- >
851
- <div class="visitor-preview__value">
852
- {{ member?.name || "N/A" }}
853
- </div>
854
- <template v-for="field in memberDetailFields" :key="field.key">
855
- <div
856
- v-if="member?.[field.key]"
857
- class="visitor-preview__member-line"
858
- >
859
- <span class="visitor-preview__member-key">
860
- {{ field.label }}
861
- </span>
862
- <!-- A member's NRIC is the same class of data as the
863
- visitor's, so it gets the same control. Each
864
- member reveals separately - one toggle for the
865
- whole card would show three people's NRICs to
866
- read one. -->
867
- <button
868
- v-if="field.key === 'nric'"
869
- type="button"
870
- class="visitor-preview__reveal"
871
- :aria-label="
872
- isMemberNricShown(index)
873
- ? `Hide NRIC for ${member?.name || 'this member'}`
874
- : `Show NRIC for ${member?.name || 'this member'}`
875
- "
876
- :aria-pressed="isMemberNricShown(index)"
877
- @click="toggleMemberNric(index)"
878
- >
879
- <span>
880
- {{
881
- isMemberNricShown(index)
882
- ? member.nric
883
- : maskNRIC(member.nric)
884
- }}
885
- </span>
886
- <v-icon size="16" class="visitor-preview__eye">
887
- {{
888
- isMemberNricShown(index)
889
- ? "mdi-eye-off-outline"
890
- : "mdi-eye-outline"
891
- }}
892
- </v-icon>
893
- </button>
894
- <span v-else>{{ member[field.key] }}</span>
895
- </div>
896
- </template>
897
- </div>
898
- </div>
899
- </div>
900
-
901
799
  <div
902
800
  v-else-if="selectedVisitorObject[key]"
903
801
  class="visitor-preview__row"
@@ -2000,71 +1898,6 @@ const isSelectedVisitorPendingApproval = computed(
2000
1898
  () => selectedVisitorStatus.value === "pending"
2001
1899
  );
2002
1900
 
2003
- /**
2004
- * The members a contractor brought with them. Not gated on the Guests tab: the
2005
- * list row's own `( +N members)` count is not either, and a contractor with a
2006
- * party has one wherever the screen shows it.
2007
- *
2008
- * Blank entries are dropped rather than drawn as an empty card - the payload
2009
- * carries `""` for every detail nobody filled in, so a member with no name and
2010
- * no details would otherwise render as a bare inset box.
2011
- */
2012
- const selectedVisitorMembers = computed<Record<string, any>[]>(() => {
2013
- const members = selectedVisitorDataObject.value?.members;
2014
- if (!Array.isArray(members)) return [];
2015
-
2016
- return members.filter(
2017
- (member: Record<string, any>) =>
2018
- member?.name || member?.nric || member?.contact || member?.plateNumber
2019
- );
2020
- });
2021
-
2022
- /**
2023
- * WHICH NRICs ARE UNCOVERED RIGHT NOW.
2024
- *
2025
- * Per member and not per card, so revealing one person's number does not
2026
- * uncover the rest of the party's. Both are cleared when the dialog closes -
2027
- * a preview must not open on the next visitor with the last one's NRIC
2028
- * already showing, and it is the same `selectedVisitorId` that would carry it
2029
- * across if the same row were reopened.
2030
- */
2031
- const showVisitorNric = ref(false);
2032
- const shownMemberNrics = ref<number[]>([]);
2033
-
2034
- function isMemberNricShown(index: number) {
2035
- return shownMemberNrics.value.includes(index);
2036
- }
2037
-
2038
- function toggleMemberNric(index: number) {
2039
- shownMemberNrics.value = isMemberNricShown(index)
2040
- ? shownMemberNrics.value.filter((x) => x !== index)
2041
- : [...shownMemberNrics.value, index];
2042
- }
2043
-
2044
- watch(
2045
- () => dialog.viewVisitor,
2046
- (open) => {
2047
- if (open) return;
2048
- showVisitorNric.value = false;
2049
- shownMemberNrics.value = [];
2050
- }
2051
- );
2052
-
2053
- /**
2054
- * What a member row prints under the name, in order. `plateNumber` is in here
2055
- * because the API returns it on `members[]` even though neither
2056
- * `TMemberInfo` (this package) nor `TContractorMembers` (API-core's visitor
2057
- * model, name and nric only) declares it - the two types have drifted from the
2058
- * document and from each other. Reading the key defensively costs nothing and
2059
- * shows the vehicle a member actually arrived in; the types are somebody's to
2060
- * reconcile separately.
2061
- */
2062
- const memberDetailFields = [
2063
- { key: "nric", label: "NRIC" },
2064
- { key: "contact", label: "Contact" },
2065
- { key: "plateNumber", label: "Vehicle" },
2066
- ] as const;
2067
-
2068
1901
  const formatType = (item: any) =>
2069
1902
  (item.deliveryType ? item.deliveryType + "-" : "") + item.type;
2070
1903
 
@@ -2078,7 +1911,6 @@ const formattedFields = {
2078
1911
  level: "Level",
2079
1912
  unit: "Unit",
2080
1913
  purpose: "Purpose",
2081
- members: "Members",
2082
1914
  checkIn: "Check In",
2083
1915
  snapshotEntryImage: "Entry Image",
2084
1916
  checkOut: "Check Out",
@@ -3057,100 +2889,6 @@ watchEffect(async () => {
3057
2889
  word-break: break-word;
3058
2890
  }
3059
2891
 
3060
- /* A row whose value is a set of records rather than a value - it drops the
3061
- two-column grid and runs the full width of the card body. */
3062
- .visitor-preview__row--block {
3063
- display: block;
3064
- }
3065
-
3066
- .visitor-preview__members {
3067
- display: flex;
3068
- flex-direction: column;
3069
- gap: 8px;
3070
- margin-top: 8px;
3071
- }
3072
-
3073
- /*
3074
- * An added member reads as an inset on the card it sits in - `--hover` on
3075
- * `--border` at the inner radius. Those are `Card/MemberInfoSummary`'s three
3076
- * decisions, unchanged, so a member looks the same in the preview as it does
3077
- * in the form that created it. Only the TYPE differs: that card still prints
3078
- * `<strong>Label:</strong> value`, which is the pattern this dialog just moved
3079
- * off, so the lines below are set on the scale rather than inherited.
3080
- */
3081
- .visitor-preview__member {
3082
- padding: 9px 12px;
3083
- border: 1px solid var(--border);
3084
- border-radius: var(--r-inner);
3085
- background: var(--hover);
3086
- }
3087
-
3088
- .visitor-preview__member-line {
3089
- display: flex;
3090
- gap: 8px;
3091
- margin-top: 3px;
3092
- font-size: var(--fs-breadcrumb);
3093
- color: var(--text2);
3094
- word-break: break-word;
3095
- }
3096
-
3097
- .visitor-preview__member-key {
3098
- flex: 0 0 52px;
3099
- color: var(--muted);
3100
- }
3101
-
3102
- /*
3103
- * THE NRIC REVEAL.
3104
- *
3105
- * The pressable thing is the masked number, not the glyph beside it: an eye on
3106
- * its own is a 14-16px target where 24px is the floor, and on a 12.5px member
3107
- * line an `AppButton variant="icon"` - the layer's 32px icon square - would
3108
- * make the NRIC line half again the height of the Contact line under it.
3109
- * Pressing the digits gives a target the width of the value at no cost to the
3110
- * rhythm, and reads the right way round: the number is what changes.
3111
- *
3112
- * It inherits its type rather than setting any, so the visitor's NRIC stays on
3113
- * `--fs-cell` and a member's on the `--fs-breadcrumb` of the line it sits in.
3114
- * The negative margin pays back the padding, so a revealed value starts on the
3115
- * same left edge as every other value in the card.
3116
- */
3117
- .visitor-preview__reveal {
3118
- display: inline-flex;
3119
- align-items: center;
3120
- gap: 6px;
3121
- margin: -3px -7px;
3122
- padding: 3px 7px;
3123
- border: none;
3124
- border-radius: var(--r-inner-sm);
3125
- background: transparent;
3126
- font: inherit;
3127
- color: inherit;
3128
- text-align: left;
3129
- cursor: pointer;
3130
- transition: background var(--motion) ease;
3131
- }
3132
-
3133
- .visitor-preview__reveal:hover {
3134
- background: var(--hover);
3135
- }
3136
-
3137
- .visitor-preview__reveal:focus-visible {
3138
- outline: 2px solid var(--accent);
3139
- outline-offset: 1px;
3140
- }
3141
-
3142
- /* The design's interactive ink - not Vuetify's fixed blue, which is one colour
3143
- on both themes. `affectedEntities` gives its NRIC eye the same value. */
3144
- .visitor-preview__eye {
3145
- color: var(--accent-text);
3146
- }
3147
-
3148
- @media (prefers-reduced-motion: reduce) {
3149
- .visitor-preview__reveal {
3150
- transition: none;
3151
- }
3152
- }
3153
-
3154
2892
  /* The width the type filter carried as `max-width="200"` on the v-select. */
3155
2893
  .visitor-type-filter {
3156
2894
  max-width: 200px;
@@ -317,6 +317,15 @@ export default function usetFacility() {
317
317
  }
318
318
  }
319
319
 
320
+ /**
321
+ * `status` is the "Show deleted" switch.
322
+ *
323
+ * Omitted, the server keeps its existing default of active-only, which is
324
+ * what every caller sends today (none send it at all), so no list changes
325
+ * unless a caller asks for the other one. The server allow-lists it to
326
+ * exactly `active` / `deleted`, so this is a passthrough of two words and
327
+ * not of free text.
328
+ */
320
329
  async function getFacilitiesByPageSearch({
321
330
  page = 1,
322
331
  search = "",
@@ -324,6 +333,7 @@ export default function usetFacility() {
324
333
  sites = [],
325
334
  _id = "",
326
335
  userType,
336
+ status,
327
337
  }: {
328
338
  _id?: string;
329
339
  page?: number;
@@ -331,6 +341,7 @@ export default function usetFacility() {
331
341
  sites?: string[];
332
342
  limit?: number;
333
343
  userType?: string;
344
+ status?: "active" | "deleted";
334
345
  }) {
335
346
  return useNuxtApp().$api("/api/facilities/search/v1", {
336
347
  method: "POST",
@@ -341,6 +352,7 @@ export default function usetFacility() {
341
352
  sites,
342
353
  _id,
343
354
  userType,
355
+ ...(status ? { status } : {}),
344
356
  },
345
357
  });
346
358
  }
@@ -443,6 +455,33 @@ export default function usetFacility() {
443
455
  });
444
456
  }
445
457
 
458
+ /**
459
+ * The way back from `deleteFacility`.
460
+ *
461
+ * Same verb, same two query parameters, same shape — the server gates the
462
+ * restore exactly as it gates the delete (`requireAuth` +
463
+ * `requireSiteAccess(req.query.site)`), so anyone who could delete a facility
464
+ * can undo it and nobody else. `restoreFacilityById` matches on
465
+ * `{_id, site, status: "deleted"}`, so restoring something already active is
466
+ * a no-op rather than a write.
467
+ */
468
+ async function restoreFacility({
469
+ _id,
470
+ site,
471
+ updatedBy,
472
+ }: {
473
+ _id?: string;
474
+ site?: string;
475
+ updatedBy?: string;
476
+ }) {
477
+ return useNuxtApp().$api(`/api/facilities/restore/v1?_id=${_id}&site=${site}`, {
478
+ method: "PATCH",
479
+ query: {
480
+ updatedBy,
481
+ },
482
+ });
483
+ }
484
+
446
485
  function setFacility(data?: TFacility) {
447
486
  facility.value = new MFacility(data);
448
487
  }
@@ -679,6 +718,7 @@ export default function usetFacility() {
679
718
  affectedBookingsTab,
680
719
  cancelFacilityBooking,
681
720
  deleteFacility,
721
+ restoreFacility,
682
722
  bookingFeeTaxPercentage,
683
723
  bookingCurrencySymbol,
684
724
  bookingCurrencyType,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "4.2.10-staging.280",
5
+ "version": "4.2.10",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",