@linktr.ee/create-link-app 0.3.0-next.4 → 0.3.0-next.41

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.
Files changed (43) hide show
  1. package/README.md +29 -0
  2. package/dist/commands/build.js +3 -2
  3. package/dist/commands/dev.js +2 -1
  4. package/dist/commands/generate-types.js +111 -0
  5. package/dist/commands/storybook.js +28 -0
  6. package/dist/lib/create/create-project.js +3 -0
  7. package/dist/lib/deploy/pack-project.js +12 -1
  8. package/dist/lib/schema/compile.js +30 -0
  9. package/dist/postcss/postcss.config.js +31 -0
  10. package/dist/storybook/global.css +53 -0
  11. package/dist/storybook/main.js +53 -0
  12. package/dist/storybook/preview.js +21 -0
  13. package/dist/webpack/webpack.config.js +40 -40
  14. package/html-template/development.html +2 -2
  15. package/html-template/production.html +2 -2
  16. package/oclif.manifest.json +32 -1
  17. package/package.json +28 -9
  18. package/templates/common/README.md +38 -17
  19. package/templates/common/fixtures/props-data.json +1 -2
  20. package/templates/common/gitignore +1 -0
  21. package/templates/common/schema/editablePrivate.jtd.json +6 -0
  22. package/templates/common/schema/editablePublic.jtd.json +10 -0
  23. package/templates/common/schema/readonlyPrivate.jtd.json +8 -0
  24. package/templates/common/schema/readonlyPublic.jtd.json +6 -0
  25. package/templates/common/schema/system.jtd.json +6 -0
  26. package/templates/common/settings.json +11 -23
  27. package/templates/react/package.json +5 -2
  28. package/templates/react/src/index.jsx +4 -13
  29. package/templates/react/src/tailwind.css +5 -0
  30. package/templates/react-ts/package.json +7 -4
  31. package/templates/react-ts/src/App.tsx +23 -0
  32. package/templates/react-ts/src/Editor.tsx +7 -0
  33. package/templates/react-ts/src/Sheet.tsx +7 -0
  34. package/templates/react-ts/src/components/Layouts.tsx +59 -0
  35. package/templates/react-ts/src/stories/LinkApp.stories.tsx +94 -0
  36. package/templates/react-ts/src/stories/tailwind.sb.css +5 -0
  37. package/templates/react-ts/src/tailwind.css +4 -0
  38. package/templates/react-ts/src/types/global.d.ts +11 -5
  39. package/templates/react-ts/src/types/index.ts +8 -7
  40. package/templates/react-ts/src/types/schema/index.ts +33 -0
  41. package/templates/react/src/images/logo.png +0 -0
  42. package/templates/react-ts/src/images/logo.png +0 -0
  43. package/templates/react-ts/src/index.tsx +0 -19
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.0-next.4",
2
+ "version": "0.3.0-next.41",
3
3
  "commands": {
4
4
  "build": {
5
5
  "id": "build",
@@ -139,6 +139,17 @@
139
139
  },
140
140
  "args": {}
141
141
  },
142
+ "generate-types": {
143
+ "id": "generate-types",
144
+ "description": "Generate Typescript types from the schema definitions",
145
+ "strict": true,
146
+ "pluginName": "@linktr.ee/create-link-app",
147
+ "pluginAlias": "@linktr.ee/create-link-app",
148
+ "pluginType": "core",
149
+ "aliases": [],
150
+ "flags": {},
151
+ "args": {}
152
+ },
142
153
  "grant-access": {
143
154
  "id": "grant-access",
144
155
  "description": "Grant access to other developers to push updates for your Link App",
@@ -216,6 +227,26 @@
216
227
  }
217
228
  },
218
229
  "args": {}
230
+ },
231
+ "storybook": {
232
+ "id": "storybook",
233
+ "description": "Start the Storybook development server",
234
+ "strict": true,
235
+ "pluginName": "@linktr.ee/create-link-app",
236
+ "pluginAlias": "@linktr.ee/create-link-app",
237
+ "pluginType": "core",
238
+ "aliases": [],
239
+ "flags": {
240
+ "port": {
241
+ "name": "port",
242
+ "type": "option",
243
+ "char": "p",
244
+ "description": "Port to run the Storybook server on",
245
+ "multiple": false,
246
+ "default": 6006
247
+ }
248
+ },
249
+ "args": {}
219
250
  }
220
251
  }
221
252
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/create-link-app",
3
- "version": "0.3.0-next.4",
3
+ "version": "0.3.0-next.41",
4
4
  "description": "Create a Link App on Linktr.ee.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Linktree",
@@ -19,13 +19,14 @@
19
19
  "/templates"
20
20
  ],
21
21
  "scripts": {
22
- "build": "shx rm -rf dist && tsc -b",
22
+ "build": "shx rm -rf dist && tsc -b && yarn copy-storybook-global-css",
23
23
  "postpack": "shx rm -f oclif.manifest.json",
24
24
  "prepack": "yarn build && oclif manifest && oclif readme",
25
25
  "test": "jest --watch",
26
26
  "test:ci": "jest",
27
27
  "test:cov": "jest --coverage",
28
- "version": "oclif readme && git add README.md"
28
+ "version": "oclif readme && git add README.md",
29
+ "copy-storybook-global-css": "cp ./src/storybook/global.css ./dist/storybook/global.css"
29
30
  },
30
31
  "dependencies": {
31
32
  "@babel/core": "^7.18.2",
@@ -34,9 +35,22 @@
34
35
  "@babel/preset-react": "^7.17.12",
35
36
  "@babel/preset-typescript": "^7.17.12",
36
37
  "@babel/runtime": "^7.18.3",
37
- "@linktr.ee/component-library": "^7.0.17",
38
+ "@linktr.ee/component-library": "latest",
39
+ "@linktr.ee/ui-link-kit": "latest",
38
40
  "@oclif/core": "^1.9.0",
39
41
  "@oclif/plugin-help": "^5.1.12",
42
+ "@storybook/addon-actions": "^6.5.9",
43
+ "@storybook/addon-essentials": "^6.5.9",
44
+ "@storybook/addon-interactions": "^6.5.9",
45
+ "@storybook/addon-links": "^6.5.9",
46
+ "@storybook/addon-postcss": "^2.0.0",
47
+ "@storybook/builder-webpack5": "^6.5.9",
48
+ "@storybook/manager-webpack5": "^6.5.9",
49
+ "@storybook/react": "^6.5.9",
50
+ "@tailwindcss/line-clamp": "^0.4.4",
51
+ "@testing-library/react": "^12.1.4",
52
+ "@testing-library/user-event": "14",
53
+ "ajv": "^8.12.0",
40
54
  "archiver": "^5.3.1",
41
55
  "autoprefixer": "^10.4.14",
42
56
  "axios": "^0.27.2",
@@ -53,12 +67,17 @@
53
67
  "netrc-parser": "^3.1.6",
54
68
  "openid-client": "^5.1.6",
55
69
  "postcss": "^8.4.21",
56
- "react": "^17.0.2",
57
- "react-dom": "^17.0.2",
70
+ "postcss-loader": "^4.3.0",
71
+ "prettier": "^2.8.8",
72
+ "prop-types": "^15.8.1",
73
+ "react": "^18.2.0",
74
+ "react-dom": "^18.2.0",
58
75
  "slugify": "^1.6.6",
76
+ "storybook-addon-designs": "^6.3.1",
77
+ "storybook-addon-turbo-build": "^1.1.0",
59
78
  "style-loader": "^3.3.2",
60
79
  "styled-components": "^5.3.5",
61
- "tailwindcss": "^3.3.1",
80
+ "tailwindcss": "^3.3.2",
62
81
  "typescript": "^4.7.3",
63
82
  "webpack": "^5.75.0",
64
83
  "webpack-dev-server": "^4.11.1"
@@ -71,8 +90,8 @@
71
90
  "@types/fs-extra": "^9.0.13",
72
91
  "@types/jest": "^28.1.1",
73
92
  "@types/jsonwebtoken": "^8.5.8",
74
- "@types/react": "^17.0.45",
75
- "@types/react-dom": "^17.0.17",
93
+ "@types/react": "^18.2.20",
94
+ "@types/react-dom": "^18.2.7",
76
95
  "axios-mock-adapter": "^1.21.1",
77
96
  "jest": "^28.1.1",
78
97
  "oclif": "^3.0.1",
@@ -14,13 +14,34 @@ Optionally, you can specify a different port or serve over HTTPS. Run command wi
14
14
 
15
15
  Several files were created during the bootstrapping of this project. Some of these files play a key role:
16
16
 
17
- | File | Description |
18
- | --- | --- |
19
- | `src/index.jsx` | The entry point for your Link App |
20
- | `manifest.json` | Defines key information about your Link App, and helps users to discover your Link App via the [Linktree Marketplace](https://linktr.ee/marketplace) |
21
- | `settings.json` | Defines the settings made available to Linktree users when configuring the Link App via [Linktree Admin](https://linktr.ee/admin) |
22
- | `fixtures/props-data.json` | Used during development, this file acts as mock data for the `settings.json` output, it is injected as props to the entry point component |
23
- | `url-match-rules.json` | Defines the URL pattern to match against when users add a link on Linktree via URL, its structure follows the [URL Pattern API](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) |
17
+ | File | Description |
18
+ | -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
19
+ | `src/index.jsx` | The entry point for your Link App |
20
+ | `manifest.json` | Defines key information about your Link App, and helps users to discover your Link App via the [Linktree Marketplace](https://linktr.ee/marketplace) |
21
+ | `settings.json` | Defines the settings made available to Linktree users when configuring the Link App via [Linktree Admin](https://linktr.ee/admin) |
22
+ | `fixtures/props-data.json` | Used during development, this file acts as mock data for the `settings.json` output, it is injected as props to the entry point component |
23
+ | `url-match-rules.json` | Defines the URL pattern to match against when users add a link on Linktree via URL, its structure follows the [URL Pattern API](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) |
24
+ | `schema/*.jtd.json` | These files define the shape of the data that is stored for each Link that uses this Link App. They are used to validate the data on the front and back end and to generate Typescript types shared between client and server. The format for these schemas adheres to the [JSON Type Definition](https://jsontypedef.com/), aka [RFC 8927](https://datatracker.ietf.org/doc/html/rfc8927), standard. |
25
+
26
+ ## Generating types from your `schema/*.jtd.json` files
27
+
28
+ Under the hood Linktree uses the `jtd-codegen` package to generate types from your schema. If you want to generate types for local development, this package must first be installed on your system. You can install it with the following command:
29
+
30
+ ```sh
31
+ brew install jsontypedef/jsontypedef/jtd-codegen
32
+ ```
33
+
34
+ You will also require `prettier`
35
+
36
+ ```sh
37
+ brew install prettier
38
+ ```
39
+
40
+ When you have these packages installed, you can generate types by running one of the following commands:
41
+
42
+ `npm run generate:types` or `yarn generate:types`
43
+
44
+ For more information on using `jtd-codegen` to generate code see the [official documentation](https://jsontypedef.com/docs/jtd-codegen/), or for specifics on generating Typescript code [here](https://jsontypedef.com/docs/typescript-codegen/).
24
45
 
25
46
  ## UI Components
26
47
 
@@ -72,18 +93,18 @@ Access to a Link App can be granted to additional users who may need to retrieve
72
93
 
73
94
  Please note the user receiving access must also have a Linktree account with developer privileges. Maintainer access can be granted to as many developer accounts as required.
74
95
 
75
- ***Note: Only the Link App Owner can grant Maintainer access to additional users. You must be logged in with an Owner account in order to use the command.***
96
+ **_Note: Only the Link App Owner can grant Maintainer access to additional users. You must be logged in with an Owner account in order to use the command._**
76
97
 
77
98
  ### Maintainer and Owner Permitted Actions
78
99
 
79
100
  The following table compares which actions are permitted for Maintainers and Owners:
80
101
 
81
- |Action |Owner |Maintainer|Notes |
82
- |---------------------------|-------|----------|-----------------------------------------------|
83
- |Create Link App |✓|N/A |Owner is defined when Link App is first created|
84
- |Get Link App |✓|✓ | |
85
- |Update Link App |✓|✓ | |
86
- |Request Link App review |✓|✓ | |
87
- |Get Link App maintainers |✓|✓ | |
88
- |Add new Link App maintainer|✓|✗ | |
89
- |Remove Link App maintainer |✓|✗ | |
102
+ | Action | Owner | Maintainer | Notes |
103
+ | --------------------------- | ------- | ---------- | ----------------------------------------------- |
104
+ | Create Link App | ✓ | N/A | Owner is defined when Link App is first created |
105
+ | Get Link App | ✓ | ✓ | |
106
+ | Update Link App | ✓ | ✓ | |
107
+ | Request Link App review | ✓ | ✓ | |
108
+ | Get Link App maintainers | ✓ | ✓ | |
109
+ | Add new Link App maintainer | ✓ | ✗ | |
110
+ | Remove Link App maintainer | ✓ | ✗ | |
@@ -1,4 +1,3 @@
1
1
  {
2
- "toggle": true,
3
- "your_name": "World"
2
+ "title": "Link App Title"
4
3
  }
@@ -1,3 +1,4 @@
1
1
  node_modules
2
2
  dist
3
3
  .DS_Store
4
+ package.tgz
@@ -0,0 +1,6 @@
1
+ {
2
+ "metadata": {
3
+ "description": "These are properties that the Linker can `read` and `write`, but the Visitor will never have access to."
4
+ },
5
+ "properties": {}
6
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "metadata": {
3
+ "description": "These are properties that the Linker can `read` and `write`, and the Visitor can `read`"
4
+ },
5
+ "properties": {
6
+ "thumbnailUrl": { "type": "string" },
7
+ "title": { "type": "string" },
8
+ "url": { "type": "string" }
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "metadata": {
3
+ "description": "These are properties that only the Linker can `read`. The Visitor will never have access to these properties"
4
+ },
5
+ "properties": {
6
+ "httpResponseCode": { "type": "int16" }
7
+ }
8
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "metadata": {
3
+ "description": "These are properties that the Linker can `read`, and the Visitor can `read`"
4
+ },
5
+ "properties": {}
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "metadata": {
3
+ "description": "These are internal-only properties that neither the Linker nor Visitor will ever have access to."
4
+ },
5
+ "properties": {}
6
+ }
@@ -1,33 +1,21 @@
1
1
  {
2
- "title": "Link Type",
3
- "overview": {
4
- "title": "You can have a heading",
5
- "description": "as well as a description to inform users on what the link does."
6
- },
2
+ "title": "Link App",
7
3
  "elements": [
8
4
  {
9
- "inputType": "linkBehavior",
10
- "id": "how_link_behaves",
11
- "title": "How would you like the link to behave?",
12
- "description": "When a user interacts with this link:",
13
- "linkBehaviorLabels": {
14
- "embedLabel": "Embed content on the profile",
15
- "linkOffLabel": "Go directly to URL"
16
- },
17
- "defaultValue": "embedLabel"
5
+ "id": "thumbnailUrl",
6
+ "title": "Thumbnail",
7
+ "inputType": "file",
8
+ "accept": ["image/*"]
18
9
  },
19
10
  {
20
- "inputType": "switch",
21
- "id": "toggle",
22
- "title": "Use another title/description to break up content",
23
- "description": "and describe what the next section of inputs will do",
24
- "label": "Is feature enabled?",
25
- "defaultValue": true
11
+ "id": "title",
12
+ "title": "Title",
13
+ "inputType": "text"
26
14
  },
27
15
  {
28
- "inputType": "text",
29
- "id": "your_name",
30
- "label": "elements that only have a label will stick close the element above"
16
+ "id": "url",
17
+ "title": "URL",
18
+ "inputType": "text"
31
19
  }
32
20
  ]
33
21
  }
@@ -3,10 +3,13 @@
3
3
  "scripts": {
4
4
  "build": "create-link-app build",
5
5
  "deploy": "create-link-app deploy",
6
- "dev": "create-link-app dev"
6
+ "storybook": "create-link-app storybook",
7
+ "dev": "create-link-app dev",
8
+ "generate:types": "jtd-codegen ./schema.json --typescript-out src/types --root-name=LinkAppData"
7
9
  },
8
10
  "devDependencies": {
9
- "@linktr.ee/create-link-app": "latest",
11
+ "@linktr.ee/component-library": "latest",
12
+ "@linktr.ee/create-link-app": "next",
10
13
  "@linktr.ee/ui-link-kit": "latest"
11
14
  }
12
15
  }
@@ -1,18 +1,9 @@
1
- import { Container, Description, Header } from '@linktr.ee/ui-link-kit'
1
+ import P from '@linktr.ee/component-library/P'
2
2
 
3
- import logo from './images/logo.png'
3
+ import './tailwind.css'
4
4
 
5
- function App({ toggle, your_name, __linkUrl }) {
6
- return (
7
- <Container
8
- primaryCta={toggle ? { label: 'Visit our UI docs for more info', href: 'https://blstrco.github.io/ui-link-kit/' } : null}
9
- secondaryCta={toggle ? { label: 'Original url for your Linktree link', href: __linkUrl } : null}
10
- logo={logo}
11
- >
12
- <Header heading={`Hello ${your_name}!`} secondaryHeading="Congratulations, you now have a Linktree link!" layout="hero" />
13
- <Description>{your_name}</Description>
14
- </Container>
15
- )
5
+ function App({ title }) {
6
+ return <P>{title}</P>
16
7
  }
17
8
 
18
9
  export default App
@@ -0,0 +1,5 @@
1
+ /* tailwind.css */
2
+
3
+ @tailwind base;
4
+ @tailwind components;
5
+ @tailwind utilities;
@@ -3,12 +3,15 @@
3
3
  "scripts": {
4
4
  "build": "create-link-app build",
5
5
  "deploy": "create-link-app deploy",
6
- "dev": "create-link-app dev"
6
+ "storybook": "create-link-app storybook",
7
+ "dev": "create-link-app dev",
8
+ "generate:types": "create-link-app generate-types"
7
9
  },
8
10
  "devDependencies": {
9
- "@linktr.ee/create-link-app": "latest",
11
+ "@linktr.ee/component-library": "latest",
12
+ "@linktr.ee/create-link-app": "next",
10
13
  "@linktr.ee/ui-link-kit": "latest",
11
- "@types/react": "^17.0.0",
12
- "@types/react-dom": "^17.0.0"
14
+ "@types/react": "^18.2.8",
15
+ "@types/react-dom": "^18.2.4"
13
16
  }
14
17
  }
@@ -0,0 +1,23 @@
1
+ import { Featured, Carousel, Grid, Stack } from './components/Layouts'
2
+ import { AppProps, Layout } from './types'
3
+
4
+ import './tailwind.css'
5
+
6
+ function App(props: AppProps) {
7
+ const { layout } = props
8
+
9
+ switch (layout) {
10
+ case Layout.Stack:
11
+ return <Stack {...props} />
12
+ case Layout.Grid:
13
+ return <Grid {...props} />
14
+ case Layout.Carousel:
15
+ return <Carousel {...props} />
16
+ case Layout.Featured:
17
+ return <Featured {...props} />
18
+ default:
19
+ return <div>Unknown layout: {props.layout}</div>
20
+ }
21
+ }
22
+
23
+ export default App
@@ -0,0 +1,7 @@
1
+ import './tailwind.css'
2
+
3
+ const Editor = () => {
4
+ return <div>Editor</div>
5
+ }
6
+
7
+ export default Editor
@@ -0,0 +1,7 @@
1
+ import './tailwind.css'
2
+
3
+ const Sheet = () => {
4
+ return <div>Sheet</div>
5
+ }
6
+
7
+ export default Sheet
@@ -0,0 +1,59 @@
1
+ import { AppProps } from '../types'
2
+
3
+ const baseStyle = {
4
+ backgroundColor: 'var(--lt-color-primary)',
5
+ color: 'var(--lt-color-on-primary)',
6
+ } as React.CSSProperties
7
+
8
+ const Featured = (props: AppProps) => {
9
+ return (
10
+ <div
11
+ className="px-6 pt-12 pb-11 h-full"
12
+ style={{
13
+ ...baseStyle,
14
+ borderRadius: 'var(--lt-feature-container-radius)',
15
+ }}
16
+ >
17
+ Featured
18
+ </div>
19
+ )
20
+ }
21
+
22
+ const Carousel = (props: AppProps) => {
23
+ return (
24
+ <div
25
+ className="px-4 pt-16 pb-10 h-full"
26
+ style={{
27
+ ...baseStyle,
28
+ borderRadius: 'var(--lt-carousel-container-radius)',
29
+ }}
30
+ >
31
+ Carousel
32
+ </div>
33
+ )
34
+ }
35
+
36
+ const Grid = (props: AppProps) => {
37
+ return (
38
+ <div className="px-3 py-10 h-full" style={{ ...baseStyle, borderRadius: 'var(--lt-grid-container-radius)' }}>
39
+ Grid
40
+ </div>
41
+ )
42
+ }
43
+
44
+ const Stack = (props: AppProps) => {
45
+ return (
46
+ <div
47
+ className="flex p-2 h-full gap-4 w-full"
48
+ style={{
49
+ ...baseStyle,
50
+ borderRadius: 'var(--lt-stack-container-radius)',
51
+ }}
52
+ >
53
+ <div className="w-16 aspect-square"></div>
54
+ <h2 className="mr-20">Stack</h2>
55
+ </div>
56
+ )
57
+ }
58
+
59
+ export { Featured, Carousel, Grid, Stack }
@@ -0,0 +1,94 @@
1
+ import React from 'react'
2
+ import { ComponentStory, ComponentMeta } from '@storybook/react'
3
+ import manifest from '../../manifest.json'
4
+ import fixture from '../../fixtures/props-data.json'
5
+
6
+ import { Layout } from '../types'
7
+
8
+ import LinkApp from '..'
9
+
10
+ import './tailwind.sb.css'
11
+
12
+ export default {
13
+ title: `Link App/${manifest.name}`,
14
+ component: LinkApp,
15
+ tags: ['autodocs'],
16
+ parameters: {
17
+ layout: 'fullscreen',
18
+ },
19
+ args: {
20
+ ...fixture,
21
+ editing: false,
22
+ },
23
+ argTypes: {
24
+ layout: {
25
+ table: {
26
+ disable: true,
27
+ },
28
+ },
29
+ },
30
+ } as ComponentMeta<typeof LinkApp>
31
+
32
+ export const Stack: ComponentStory<typeof LinkApp> = (args) => (
33
+ <div
34
+ data-link-type-id={__LINK_TYPE_SLUG__}
35
+ style={{
36
+ margin: '0.5rem',
37
+ width: 374,
38
+ height: 80,
39
+ }}
40
+ >
41
+ <LinkApp {...args} />
42
+ </div>
43
+ )
44
+ Stack.args = {
45
+ layout: Layout.Stack,
46
+ }
47
+
48
+ export const Grid: ComponentStory<typeof LinkApp> = (args) => (
49
+ <div
50
+ data-link-type-id={__LINK_TYPE_SLUG__}
51
+ style={{
52
+ margin: '0.5rem',
53
+ width: 183,
54
+ height: 240,
55
+ }}
56
+ >
57
+ <LinkApp {...args} />
58
+ </div>
59
+ )
60
+ Grid.args = {
61
+ layout: Layout.Grid,
62
+ }
63
+
64
+ export const Carousel: ComponentStory<typeof LinkApp> = (args) => (
65
+ <div
66
+ data-link-type-id={__LINK_TYPE_SLUG__}
67
+ style={{
68
+ margin: '0.5rem',
69
+ width: 224,
70
+ height: 296,
71
+ }}
72
+ >
73
+ <LinkApp {...args} />
74
+ </div>
75
+ )
76
+ Carousel.args = {
77
+ layout: Layout.Carousel,
78
+ }
79
+
80
+ export const Featured: ComponentStory<typeof LinkApp> = (args) => (
81
+ <div
82
+ data-link-type-id={__LINK_TYPE_SLUG__}
83
+ style={{
84
+ margin: '0.5rem',
85
+ width: 374,
86
+ height: 374,
87
+ }}
88
+ >
89
+ <LinkApp {...args} />
90
+ </div>
91
+ )
92
+ Featured.args = {
93
+ layout: Layout.Featured,
94
+ }
@@ -0,0 +1,5 @@
1
+ /* tailwind.sb.css */
2
+
3
+ @tailwind base;
4
+ @tailwind components;
5
+ @tailwind utilities;
@@ -0,0 +1,4 @@
1
+ /* tailwind.css */
2
+
3
+ @tailwind components;
4
+ @tailwind utilities;
@@ -1,5 +1,11 @@
1
- declare module '*.jpg'
2
- declare module '*.png'
3
- declare module '*.jpeg'
4
- declare module '*.gif'
5
- declare module '*.svg'
1
+ // @HACK: These files are removed at build time, but we need it for type checking
2
+ declare module '*manifest.json' {
3
+ export const name: string
4
+ }
5
+
6
+ declare module '*props-data.json' {
7
+ export const name: string
8
+ }
9
+
10
+ declare const __LINK_TYPE_ID__: string
11
+ declare const __LINK_TYPE_SLUG__: string
@@ -1,7 +1,8 @@
1
- type LinktreeLinkContext = {
2
- __linkUrl: string
3
- }
4
- export type SettingsData = {
5
- toggle: boolean
6
- your_name: string
7
- } & LinktreeLinkContext
1
+ import type { HostData } from '@linktr.ee/ui-link-kit/Schemas'
2
+ import { EditablePrivateData, EditablePublicData, ReadonlyPrivateData, ReadonlyPublicData } from './schema'
3
+
4
+ export type { HostData } from '@linktr.ee/ui-link-kit/Schemas'
5
+ export { HostDataLayout as Layout } from '@linktr.ee/ui-link-kit/Schemas'
6
+
7
+ export type AppProps = HostData & EditablePublicData & ReadonlyPublicData
8
+ export type EditorProps = EditablePublicData & ReadonlyPublicData & EditablePrivateData & ReadonlyPrivateData
@@ -0,0 +1,33 @@
1
+ /**
2
+ * These types were autogenerated by @linktr.ee/create-link-app
3
+ * https://www.npmjs.com/package/@linktr.ee/create-link-app
4
+ */
5
+
6
+ /**
7
+ * These are properties that the Linker can `read` and `write`, and the Visitor
8
+ * can `read`
9
+ */
10
+ export interface EditablePublicData {
11
+ thumbnailUrl: string
12
+ title: string
13
+ url: string
14
+ }
15
+
16
+ /**
17
+ * These are properties that the Linker can `read`, and the Visitor can `read`
18
+ */
19
+ export interface ReadonlyPublicData {}
20
+
21
+ /**
22
+ * These are properties that the Linker can `read` and `write`, but the Visitor
23
+ * will never have access to.
24
+ */
25
+ export interface EditablePrivateData {}
26
+
27
+ /**
28
+ * These are properties that only the Linker can `read`. The Visitor will never
29
+ * have access to these properties
30
+ */
31
+ export interface ReadonlyPrivateData {
32
+ httpResponseCode: number
33
+ }