sw.js 5.6 KB
Newer Older
M
r108  
Mr.doob 已提交
1
// r108
2 3 4 5

const staticAssets = [
	'./',

M
Mr.doob 已提交
6 7
	'../files/favicon.ico',

8 9 10 11 12
	'../build/three.js',

	'../examples/js/controls/EditorControls.js',
	'../examples/js/controls/TransformControls.js',

M
Mr.doob 已提交
13
	'../examples/js/libs/chevrotain.min.js',
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
	'../examples/js/libs/jszip.min.js',
	'../examples/js/libs/inflate.min.js',

	'../examples/js/loaders/AMFLoader.js',
	'../examples/js/loaders/ColladaLoader.js',
	'../examples/js/loaders/DRACOLoader.js',
	'../examples/js/loaders/FBXLoader.js',
	'../examples/js/loaders/GLTFLoader.js',
	'../examples/js/loaders/deprecated/LegacyGLTFLoader.js',
	'../examples/js/loaders/KMZLoader.js',
	'../examples/js/loaders/MD2Loader.js',
	'../examples/js/loaders/OBJLoader.js',
	'../examples/js/loaders/MTLLoader.js',
	'../examples/js/loaders/PLYLoader.js',
	'../examples/js/loaders/STLLoader.js',
	'../examples/js/loaders/SVGLoader.js',
	'../examples/js/loaders/TGALoader.js',
	'../examples/js/loaders/TDSLoader.js',
	'../examples/js/loaders/VRMLLoader.js',
	'../examples/js/loaders/VTKLoader.js',

	'../examples/js/exporters/ColladaExporter.js',
	'../examples/js/exporters/GLTFExporter.js',
	'../examples/js/exporters/OBJExporter.js',
	'../examples/js/exporters/STLExporter.js',

	'../examples/js/renderers/Projector.js',
	'../examples/js/renderers/RaytracingRenderer.js',
	'../examples/js/renderers/SoftwareRenderer.js',
	'../examples/js/renderers/SVGRenderer.js',

	'./js/libs/codemirror/codemirror.css',
	'./js/libs/codemirror/theme/monokai.css',

	'./js/libs/codemirror/codemirror.js',
	'./js/libs/codemirror/mode/javascript.js',
	'./js/libs/codemirror/mode/glsl.js',

52
	'./js/libs/system.min.js',
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
	'./js/libs/esprima.js',
	'./js/libs/jsonlint.js',
	'./js/libs/glslprep.min.js',

	'./js/libs/codemirror/addon/dialog.css',
	'./js/libs/codemirror/addon/show-hint.css',
	'./js/libs/codemirror/addon/tern.css',

	'./js/libs/codemirror/addon/dialog.js',
	'./js/libs/codemirror/addon/show-hint.js',
	'./js/libs/codemirror/addon/tern.js',
	'./js/libs/acorn/acorn.js',
	'./js/libs/acorn/acorn_loose.js',
	'./js/libs/acorn/walk.js',
	'./js/libs/ternjs/polyfill.js',
	'./js/libs/ternjs/signal.js',
	'./js/libs/ternjs/tern.js',
	'./js/libs/ternjs/def.js',
	'./js/libs/ternjs/comment.js',
	'./js/libs/ternjs/infer.js',
	'./js/libs/ternjs/doc_comment.js',
	'./js/libs/tern-threejs/threejs.js',

	'./js/libs/signals.min.js',
	'./js/libs/ui.js',
	'./js/libs/ui.three.js',

	'./js/libs/html2canvas.js',
	'./js/libs/three.html.js',

	'./js/libs/app.js',
	'./js/Player.js',
	'./js/Script.js',

	'../examples/js/vr/WebVR.js',

	//

	'./css/main.css',
	'./css/dark.css',
	'./css/light.css',

	'./js/Storage.js',

	'./js/Editor.js',
	'./js/Config.js',
	'./js/History.js',
	'./js/Loader.js',
	'./js/Menubar.js',
	'./js/Menubar.File.js',
	'./js/Menubar.Edit.js',
	'./js/Menubar.Add.js',
	'./js/Menubar.Play.js',
	// './js/Menubar.View.js',
	'./js/Menubar.Examples.js',
	'./js/Menubar.Help.js',
	'./js/Menubar.Status.js',
	'./js/Sidebar.js',
	'./js/Sidebar.Scene.js',
	'./js/Sidebar.Project.js',
	'./js/Sidebar.Settings.js',
	'./js/Sidebar.Settings.Shortcuts.js',
	'./js/Sidebar.Settings.Viewport.js',
	'./js/Sidebar.Properties.js',
	'./js/Sidebar.Object.js',
	'./js/Sidebar.Geometry.js',
	'./js/Sidebar.Geometry.Geometry.js',
	'./js/Sidebar.Geometry.BufferGeometry.js',
	'./js/Sidebar.Geometry.Modifiers.js',
	'./js/Sidebar.Geometry.BoxGeometry.js',
	'./js/Sidebar.Geometry.CircleGeometry.js',
	'./js/Sidebar.Geometry.CylinderGeometry.js',
M
Mr.doob 已提交
125
	'./js/Sidebar.Geometry.ExtrudeGeometry.js',
126
	'./js/Sidebar.Geometry.IcosahedronGeometry.js',
M
Mr.doob 已提交
127
	'./js/Sidebar.Geometry.OctahedronGeometry.js',
128
	'./js/Sidebar.Geometry.PlaneGeometry.js',
M
Mr.doob 已提交
129
	'./js/Sidebar.Geometry.RingGeometry.js',
130
	'./js/Sidebar.Geometry.SphereGeometry.js',
M
Mr.doob 已提交
131 132
	'./js/Sidebar.Geometry.ShapeGeometry.js',
	'./js/Sidebar.Geometry.TetrahedronGeometry.js',
133 134 135 136 137 138 139 140 141 142 143 144 145
	'./js/Sidebar.Geometry.TorusGeometry.js',
	'./js/Sidebar.Geometry.TorusKnotGeometry.js',
	'./js/Sidebar.Geometry.TubeGeometry.js',
	'../examples/js/geometries/TeapotBufferGeometry.js',
	'./js/Sidebar.Geometry.TeapotBufferGeometry.js',
	'./js/Sidebar.Geometry.LatheGeometry.js',
	'./js/Sidebar.Material.js',
	'./js/Sidebar.Animation.js',
	'./js/Sidebar.Script.js',
	'./js/Sidebar.History.js',
	'./js/Strings.js',
	'./js/Toolbar.js',
	'./js/Viewport.js',
M
Mr.doob 已提交
146
	'./js/Viewport.Camera.js',
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	'./js/Viewport.Info.js',

	'./js/Command.js',
	'./js/commands/AddObjectCommand.js',
	'./js/commands/RemoveObjectCommand.js',
	'./js/commands/MoveObjectCommand.js',
	'./js/commands/SetPositionCommand.js',
	'./js/commands/SetRotationCommand.js',
	'./js/commands/SetScaleCommand.js',
	'./js/commands/SetValueCommand.js',
	'./js/commands/SetUuidCommand.js',
	'./js/commands/SetColorCommand.js',
	'./js/commands/SetGeometryCommand.js',
	'./js/commands/SetGeometryValueCommand.js',
	'./js/commands/MultiCmdsCommand.js',
	'./js/commands/AddScriptCommand.js',
	'./js/commands/RemoveScriptCommand.js',
	'./js/commands/SetScriptValueCommand.js',
	'./js/commands/SetMaterialCommand.js',
	'./js/commands/SetMaterialColorCommand.js',
	'./js/commands/SetMaterialMapCommand.js',
168 169
	'./js/commands/SetMaterialValueCommand.js',
	'./js/commands/SetMaterialVectorCommand.js',
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	'./js/commands/SetSceneCommand.js',

	//

	'./examples/arkanoid.app.json',
	'./examples/camera.app.json',
	'./examples/particles.app.json',
	'./examples/pong.app.json',
	'./examples/shaders.app.json'

];

self.addEventListener( 'install', async function ( event ) {

	const cache = await caches.open( 'threejs-editor' );
	cache.addAll( staticAssets );

} );

self.addEventListener( 'fetch', async function ( event ) {

	const request = event.request;
	event.respondWith( cacheFirst( request ) );

} );

async function cacheFirst( request ) {

	const cachedResponse = await caches.match( request );
	return cachedResponse || fetch( request );

}