🎉 Initial project

This commit is contained in:
zhengyi 2023-12-18 15:56:41 +08:00
commit 2c108052f8
9 changed files with 2752 additions and 0 deletions

132
.gitignore vendored Normal file
View File

@ -0,0 +1,132 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.idea

51
demo/index.html Normal file
View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#title {
display: flex;
gap: 20px;
}
#title h3 {
flex: 1 1;
}
#shower {
display: flex;
min-height: 200px;
gap: 20px;
}
#editor,
#preview {
min-height: 200px;
flex: 1 1;
}
#preview {
border: 1px solid red;
}
#html {
width: 100%;
min-height: 200px;
}
</style>
</head>
<body>
<h1 style="text-align: center">HALO RENDER DEMO</h1>
<div id="title">
<h3>SOURCE</h3>
<h3>RENDER DIST</h3>
</div>
<div id="shower">
<textarea id="editor"></textarea>
<div id="preview"></div>
</div>
<h2>HTML CODE</h2>
<textarea id="html"></textarea>
</body>
</html>

20
demo/index.js Normal file
View File

@ -0,0 +1,20 @@
import {haloRender} from "../src";
const editor = document.getElementById("editor")
const preview = document.getElementById("preview")
const html = document.getElementById("html")
editor.addEventListener("input", e => {
render()
})
const render = () => {
const text = editor.value
let ht = ""
text.split("---").forEach(ele => {
ht += haloRender(ele)
})
console.log(ht)
preview.innerHTML = ht
html.value = ht
}

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "halo-render",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.dev.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"html-webpack-plugin": "^5.5.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}

2460
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

3
src/index.ts Normal file
View File

@ -0,0 +1,3 @@
export const haloRender = (src: string): string => {
return `<h2>${src.trim()}</h2>`
}

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}

19
webpack.config.js Normal file
View File

@ -0,0 +1,19 @@
const path = require("path")
module.exports = {
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js"
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: "/node-modules/"
}
]
},
mode: "development"
}

37
webpack.dev.js Normal file
View File

@ -0,0 +1,37 @@
const path = require("path")
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
watch: true,
entry: {
"index.js": './demo/index.js'
},
output: {
path: path.resolve(__dirname, "demo/dist"),
filename: "[name]"
},
resolve: {
extensions: ['.js', '.ts', '.png', '.less'],
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: "/node-modules/"
}
]
},
mode: "development",
plugins: [
new HtmlWebpackPlugin({
chunks: ['index.js'],
filename: "index.html",
template: "./demo/index.html"
})
],
devServer: {
port: 9000,
host: "0.0.0.0"
}
}