-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
994 additions
and
656 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,47 @@ | ||
# PDF Splitter | ||
# Svelte + TS + Vite | ||
|
||
This template should help get you started developing with Svelte and TypeScript in Vite. | ||
|
||
## Recommended IDE Setup | ||
|
||
[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). | ||
|
||
## Need an official Svelte framework? | ||
|
||
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. | ||
|
||
## Technical considerations | ||
|
||
**Why use this over SvelteKit?** | ||
|
||
- It brings its own routing solution which might not be preferable for some users. | ||
- It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app. | ||
|
||
This template contains as little as possible to get started with Vite + TypeScript + 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. | ||
|
||
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. | ||
|
||
**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?** | ||
|
||
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. | ||
|
||
**Why include `.vscode/extensions.json`?** | ||
|
||
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. | ||
|
||
**Why enable `allowJs` in the TS template?** | ||
|
||
While `allowJs: false` would indeed prevent the use of `.js` files in the project, it does not prevent the use of JavaScript syntax in `.svelte` files. In addition, it would force `checkJs: false`, bringing the worst of both worlds: not being able to guarantee the entire codebase is TypeScript, and also having worse typechecking for the existing JavaScript. In addition, there are valid use cases in which a mixed codebase may be relevant. | ||
|
||
**Why is HMR not preserving my local component state?** | ||
|
||
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/rixo/svelte-hmr#svelte-hmr). | ||
|
||
If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR. | ||
|
||
```ts | ||
// store.ts | ||
// An extremely simple external store | ||
import { writable } from 'svelte/store' | ||
export default writable(0) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<script lang="ts"> | ||
import Container from "./components/container.svelte"; | ||
import Home from "./pages/home.svelte"; | ||
</script> | ||
<div class="App min-h-screen flex flex-col items-center"> | ||
<Container> | ||
<Home /> | ||
</Container> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<div class="w-full md:w-3/4 xl:w-1/2"> | ||
<slot /> | ||
</div> | ||
; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import './index.css' | ||
import App from './App.svelte' | ||
|
||
const app = new App({ | ||
target: document.getElementById('app')!, | ||
}) | ||
|
||
export default app |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<script lang="ts"> | ||
import { PDFDocument } from 'pdf-lib'; | ||
import { saveFile } from '../utils/save-file.js'; | ||
let splits: string[] = ['']; | ||
let files: FileList | undefined; | ||
let doc: PDFDocument | undefined; | ||
$: files, | ||
(() => { | ||
if (!files || !files[0]) { | ||
doc = undefined; | ||
return; | ||
} | ||
files[0].arrayBuffer().then(async (buff) => { | ||
doc = await PDFDocument.load(buff); | ||
}); | ||
})(); | ||
const split = async () => { | ||
if (!doc || !files?.[0]) return; | ||
splits.forEach(async (val, idx) => { | ||
if (val === '') return; | ||
const pages = val | ||
.split(',') | ||
.map((page) => { | ||
if (!page.includes('-')) { | ||
return Number.isNaN(parseInt(page)) ? [] : parseInt(page) - 1; | ||
} | ||
const data = page.split('-').map((val) => parseInt(val)); | ||
if (data.length < 2 || Number.isNaN(data[0]) || Number.isNaN(data[1])) return []; | ||
const temp: number[] = []; | ||
for (let i = data[0]; i <= data[1]; i++) { | ||
temp.push(i - 1); | ||
} | ||
return temp; | ||
}) | ||
.flat() | ||
.filter((val) => val >= 0 || val); | ||
if (pages.length === 0) return; | ||
const resultDoc = await PDFDocument.create(); | ||
const copiedPages = await resultDoc.copyPages(doc!, pages); | ||
for (const copied of copiedPages) { | ||
resultDoc.addPage(copied); | ||
} | ||
const buff = await resultDoc.save(); | ||
saveFile(buff, `Split#${idx + 1}_No${val}_${files![0]?.name}`, 'application/pdf'); | ||
}); | ||
}; | ||
function init(el: HTMLInputElement) { | ||
el.focus(); | ||
} | ||
</script> | ||
|
||
<div class="md:mt-10 md:border border-gray-900 rounded-lg pt-4 pb-8 px-4 md:px-6 flex flex-col gap-8 md:gap-10"> | ||
<h1 class="text-3xl text-center font-medium">PDF Splitter</h1> | ||
<div class=""> | ||
<div class="text-sm md:text-lg font-bold md:font-medium text-gray-900 mb-2">Upload PDF File</div> | ||
<div> | ||
<input | ||
accept=".pdf" | ||
class="w-full text-sm text-gray-900 border border-gray-300 rounded-lg cursor-pointer bg-gray-50 dark:text-gray-400 focus:outline-none dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 p-2" | ||
type="file" | ||
bind:files | ||
/> | ||
{#if doc} | ||
<div class="text-xs md:text-sm text-gray-900 mt-1 font-medium"> | ||
Pages Count: <span class="text-red-600">{doc?.getPageCount()}</span> | ||
</div> | ||
{/if} | ||
</div> | ||
</div> | ||
<div> | ||
<div class="flex items-center mb-2 gap-2"> | ||
<span class="text-sm md:text-lg font-bold md:font-medium text-gray-900">Split Pages</span> | ||
<span class="text-xs md:text-base">(Separated by comma, ex: 1, 2, 5-10, 14)</span> | ||
</div> | ||
<div class="flex flex-col gap-3"> | ||
{#each splits as _, idx} | ||
<div> | ||
<div class="flex md:gap-4 items-center justify-start"> | ||
<div class="text-sm md:text-base w-[60px]">{`Split #${idx + 1}`}</div> | ||
<input | ||
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-3/4 p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" | ||
type="text" | ||
placeholder="Pages number" | ||
bind:value={splits[idx]} | ||
use:init | ||
/> | ||
{#if idx === 0} | ||
<div class="w-[30px] h-[30px] ml-1 md:ml-0" /> | ||
{:else} | ||
<button | ||
on:click={() => { | ||
splits = splits.filter((_, i) => idx != i); | ||
}} | ||
class="font-bold text-sm bg-red-300 w-[30px] h-[30px] rounded-full ml-1 md:ml-0" | ||
> | ||
✕ | ||
</button> | ||
{/if} | ||
</div> | ||
</div> | ||
{/each} | ||
</div> | ||
<button | ||
type="button" | ||
class="text-white bg-orange-400 focus:outline-none focus:ring-4 focus:ring-blue-300 rounded-lg text-sm px-3 py-1 text-center mt-2 shadow-sm" | ||
on:click={() => { | ||
splits.push(''); | ||
splits = [...splits]; | ||
}} | ||
> | ||
Add Split | ||
</button> | ||
</div> | ||
<div class="mt-4 flex justify-end md:justify-start"> | ||
<button | ||
type="button" | ||
disabled={!doc || !splits.find((val) => val !== '')} | ||
class="text-white bg-gradient-to-br from-green-400 to-blue-600 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-green-200 dark:focus:ring-green-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center mr-2 shadow-md disabled:opacity-50" | ||
on:click={() => { | ||
split(); | ||
}} | ||
> | ||
Download | ||
</button> | ||
</div> | ||
</div> |
Oops, something went wrong.