Skip to content

Commit b7a55be

Browse files
Add svelte frontend
1 parent f91cf23 commit b7a55be

File tree

18 files changed

+1231
-4
lines changed

18 files changed

+1231
-4
lines changed

.github/workflows/digital-ocean-app-platform-deployment.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v3
21-
2221
- name: Set up Java
2322
uses: actions/setup-java@v3
2423
with:
@@ -30,5 +29,5 @@ jobs:
3029
# run: mvn versions:set -DnewVersion=${{ github.sha }}
3130

3231
- name: Build with Maven
33-
run: mvn --batch-mode --update-snapshots clean test
34-
# Uncomment this to deploy push image run: mvn --batch-mode --update-snapshots clean spring-boot:build-image -Dspring-boot.build-image.imageName=registry.digitalocean.com/naturalprogrammer/np-spring-mvc-demo:app
32+
# run: mvn --batch-mode --update-snapshots clean test
33+
run: mvn --batch-mode --update-snapshots clean spring-boot:build-image -Dspring-boot.build-image.imageName=registry.digitalocean.com/naturalprogrammer/np-spring-mvc-demo:app

pom.xml

+64
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2020
<testcontainers.version>1.17.6</testcontainers.version>
2121
<azure.app.name>staging-np-spring-mvc-demo</azure.app.name>
22+
<frontend-src-dir>${project.basedir}/src/main/frontend</frontend-src-dir>
23+
<node.version>v21.1.0</node.version>
24+
<frontend-maven-plugin.version>1.14.1</frontend-maven-plugin.version>
2225
</properties>
2326
<dependencies>
2427
<dependency>
@@ -272,6 +275,67 @@
272275
</excludes>
273276
</configuration>
274277
</plugin>
278+
<plugin>
279+
<groupId>com.github.eirslett</groupId>
280+
<artifactId>frontend-maven-plugin</artifactId>
281+
<version>${frontend-maven-plugin.version}</version>
282+
283+
<configuration>
284+
<nodeVersion>${node.version}</nodeVersion>
285+
<workingDirectory>${frontend-src-dir}</workingDirectory>
286+
<installDirectory>${project.build.directory}</installDirectory>
287+
</configuration>
288+
289+
<executions>
290+
<execution>
291+
<id>install node and npm</id>
292+
<goals>
293+
<goal>install-node-and-npm</goal>
294+
</goals>
295+
</execution>
296+
297+
<execution>
298+
<id>npm install</id>
299+
<goals>
300+
<goal>npm</goal>
301+
</goals>
302+
</execution>
303+
304+
<execution>
305+
<id>build-frontend</id>
306+
<goals>
307+
<goal>npm</goal>
308+
</goals>
309+
<phase>prepare-package</phase>
310+
<configuration>
311+
<arguments>run build</arguments>
312+
</configuration>
313+
</execution>
314+
315+
</executions>
316+
</plugin>
317+
318+
<plugin>
319+
<artifactId>maven-resources-plugin</artifactId>
320+
<executions>
321+
<execution>
322+
<id>position-frontend-build</id>
323+
<goals>
324+
<goal>copy-resources</goal>
325+
</goals>
326+
<phase>prepare-package</phase>
327+
<configuration>
328+
<outputDirectory>${project.build.outputDirectory}/static</outputDirectory>
329+
<resources>
330+
<resource>
331+
<directory>${frontend-src-dir}/dist</directory>
332+
<filtering>false</filtering>
333+
</resource>
334+
</resources>
335+
</configuration>
336+
</execution>
337+
</executions>
338+
</plugin>
275339
</plugins>
276340
</build>
277341

src/main/frontend/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

src/main/frontend/README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Svelte + Vite
2+
3+
This template should help get you started developing with Svelte in Vite.
4+
5+
## Recommended IDE Setup
6+
7+
[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode).
8+
9+
## Need an official Svelte framework?
10+
11+
Check out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also powered by Vite. Deploy anywhere with its serverless-first approach and adapt to various platforms, with out of the box support for TypeScript, SCSS, and Less, and easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more.
12+
13+
## Technical considerations
14+
15+
**Why use this over SvelteKit?**
16+
17+
- It brings its own routing solution which might not be preferable for some users.
18+
- It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app.
19+
20+
This template contains as little as possible to get started with Vite + Svelte, while taking into account the developer experience with regards to HMR and intellisense. It demonstrates capabilities on par with the other `create-vite` templates and is a good starting point for beginners dipping their toes into a Vite + Svelte project.
21+
22+
Should you later need the extended capabilities and extensibility provided by SvelteKit, the template has been structured similarly to SvelteKit so that it is easy to migrate.
23+
24+
**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?**
25+
26+
Setting `compilerOptions.types` shuts out all other types not explicitly listed in the configuration. Using triple-slash references keeps the default TypeScript setting of accepting type information from the entire workspace, while also adding `svelte` and `vite/client` type information.
27+
28+
**Why include `.vscode/extensions.json`?**
29+
30+
Other templates indirectly recommend extensions via the README, but this file allows VS Code to prompt the user to install the recommended extension upon opening the project.
31+
32+
**Why enable `checkJs` in the JS template?**
33+
34+
It is likely that most cases of changing variable types in runtime are likely to be accidental, rather than deliberate. This provides advanced typechecking out of the box. Should you like to take advantage of the dynamically-typed nature of JavaScript, it is trivial to change the configuration.
35+
36+
**Why is HMR not preserving my local component state?**
37+
38+
HMR state preservation comes with a number of gotchas! It has been disabled by default in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often surprising behavior. You can read the details [here](https://github.com/sveltejs/svelte-hmr/tree/master/packages/svelte-hmr#preservation-of-local-state).
39+
40+
If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR.
41+
42+
```js
43+
// store.js
44+
// An extremely simple external store
45+
import { writable } from 'svelte/store'
46+
export default writable(0)
47+
```

src/main/frontend/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + Svelte</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

src/main/frontend/jsconfig.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"compilerOptions": {
3+
"moduleResolution": "bundler",
4+
"target": "ESNext",
5+
"module": "ESNext",
6+
/**
7+
* svelte-preprocess cannot figure out whether you have
8+
* a value or a type, so tell TypeScript to enforce using
9+
* `import type` instead of `import` for Types.
10+
*/
11+
"verbatimModuleSyntax": true,
12+
"isolatedModules": true,
13+
"resolveJsonModule": true,
14+
/**
15+
* To have warnings / errors of the Svelte compiler at the
16+
* correct position, enable source maps by default.
17+
*/
18+
"sourceMap": true,
19+
"esModuleInterop": true,
20+
"skipLibCheck": true,
21+
/**
22+
* Typecheck JS in `.svelte` and `.js` files by default.
23+
* Disable this if you'd like to use dynamic types.
24+
*/
25+
"checkJs": true
26+
},
27+
/**
28+
* Use global.d.ts instead of compilerOptions.types
29+
* to avoid limiting type declarations.
30+
*/
31+
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
32+
}

0 commit comments

Comments
 (0)