-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopenfeature.ts
More file actions
143 lines (133 loc) · 4.16 KB
/
openfeature.ts
File metadata and controls
143 lines (133 loc) · 4.16 KB
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
'use client';
import {
type ReactFlagEvaluationOptions,
type ReactFlagEvaluationNoSuspenseOptions,
type FlagQuery,
useFlag,
useSuspenseFlag,
} from "@openfeature/react-sdk";
// Flag key constants for programmatic access
export const FlagKeys = {
/** Flag key for Controls the free shipping banner on the website. SHOP-4287 */
FREE_SHIPPING_BANNER: "free-shipping-banner",
/** Flag key for Make the header stay at the top of the page while scrolling. */
STICKY_HEADER: "sticky-header",
/** Flag key for When on, use postgres else sqlite. */
USE_DISTRIBUTED_DB: "use-distributed-db",
/** Flag key for When on, use a secure connection to the database. This only applies when use-distributed-db is on. */
USE_SECURE_PROTOCOL: "use-secure-protocol",
} as const;
/**
* Controls the free shipping banner on the website. SHOP-4287
*
* **Details:**
* - flag key: `free-shipping-banner`
* - default value: `false`
* - type: `boolean`
*/
export const useFreeShippingBanner = (
options?: ReactFlagEvaluationOptions
): FlagQuery<boolean> => {
return useFlag(FlagKeys.FREE_SHIPPING_BANNER, false, options);
};
/**
* Controls the free shipping banner on the website. SHOP-4287
*
* **Details:**
* - flag key: `free-shipping-banner`
* - default value: `false`
* - type: `boolean`
*
* Equivalent to useFlag with options: `{ suspend: true }`
* @experimental — Suspense is an experimental feature subject to change in future versions.
*/
export const useSuspenseFreeShippingBanner = (
options?: ReactFlagEvaluationNoSuspenseOptions
): FlagQuery<boolean> => {
return useSuspenseFlag(FlagKeys.FREE_SHIPPING_BANNER, false, options);
};
/**
* Make the header stay at the top of the page while scrolling.
*
* **Details:**
* - flag key: `sticky-header`
* - default value: `false`
* - type: `boolean`
*/
export const useStickyHeader = (
options?: ReactFlagEvaluationOptions
): FlagQuery<boolean> => {
return useFlag(FlagKeys.STICKY_HEADER, false, options);
};
/**
* Make the header stay at the top of the page while scrolling.
*
* **Details:**
* - flag key: `sticky-header`
* - default value: `false`
* - type: `boolean`
*
* Equivalent to useFlag with options: `{ suspend: true }`
* @experimental — Suspense is an experimental feature subject to change in future versions.
*/
export const useSuspenseStickyHeader = (
options?: ReactFlagEvaluationNoSuspenseOptions
): FlagQuery<boolean> => {
return useSuspenseFlag(FlagKeys.STICKY_HEADER, false, options);
};
/**
* When on, use postgres else sqlite.
*
* **Details:**
* - flag key: `use-distributed-db`
* - default value: `false`
* - type: `boolean`
*/
export const useUseDistributedDb = (
options?: ReactFlagEvaluationOptions
): FlagQuery<boolean> => {
return useFlag(FlagKeys.USE_DISTRIBUTED_DB, false, options);
};
/**
* When on, use postgres else sqlite.
*
* **Details:**
* - flag key: `use-distributed-db`
* - default value: `false`
* - type: `boolean`
*
* Equivalent to useFlag with options: `{ suspend: true }`
* @experimental — Suspense is an experimental feature subject to change in future versions.
*/
export const useSuspenseUseDistributedDb = (
options?: ReactFlagEvaluationNoSuspenseOptions
): FlagQuery<boolean> => {
return useSuspenseFlag(FlagKeys.USE_DISTRIBUTED_DB, false, options);
};
/**
* When on, use a secure connection to the database. This only applies when use-distributed-db is on.
*
* **Details:**
* - flag key: `use-secure-protocol`
* - default value: `false`
* - type: `boolean`
*/
export const useUseSecureProtocol = (
options?: ReactFlagEvaluationOptions
): FlagQuery<boolean> => {
return useFlag(FlagKeys.USE_SECURE_PROTOCOL, false, options);
};
/**
* When on, use a secure connection to the database. This only applies when use-distributed-db is on.
*
* **Details:**
* - flag key: `use-secure-protocol`
* - default value: `false`
* - type: `boolean`
*
* Equivalent to useFlag with options: `{ suspend: true }`
* @experimental — Suspense is an experimental feature subject to change in future versions.
*/
export const useSuspenseUseSecureProtocol = (options?: ReactFlagEvaluationNoSuspenseOptions): FlagQuery<boolean> => {
return useSuspenseFlag(FlagKeys.USE_SECURE_PROTOCOL, false, options);
};