sw.js 5.8 KB
Newer Older
M
r111  
Mr.doob 已提交
1
// r111
2

M
Mr.doob 已提交
3
const assets = [
4 5
	'./',

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

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

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

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

M
Mr.doob 已提交
42 43 44
	'./manifest.json',
	'./images/icon.png',

45 46 47 48 49 50 51
	'./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
	'./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',

M
Mr.doob 已提交
93
	'./js/EditorControls.js',
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
	'./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 已提交
124
	'./js/Sidebar.Geometry.DodecahedronGeometry.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
	'./js/commands/SetSceneCommand.js',

	//

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

];

182
self.addEventListener( 'install', async function () {
183 184

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

M
Mr.doob 已提交
186
	assets.forEach( function ( asset ) {
187 188 189 190 191 192 193 194

		cache.add( asset ).catch( function () {

			console.error( '[SW] Cound\'t cache:', asset );

		} );

	} );
195 196 197 198 199 200 201 202 203 204 205 206 207

} );

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

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

} );

async function cacheFirst( request ) {

	const cachedResponse = await caches.match( request );
208 209 210 211 212 213 214 215 216

	if ( cachedResponse === undefined ) {

		console.error( '[SW] Not cached:', request.url );
		return fetch( request );

	}

	return cachedResponse;
217 218

}