aboutsummaryrefslogtreecommitdiff
path: root/front/default.nix
blob: d7d9fa677f7986cddf62b8404a0ed5b26e4f542e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
workadventuresrc:

{ stdenv
, makeWrapper
, workadventure
, yarn2nix-moretea
, lib
, replace
, environment ? {}
, ... }:

let
  envIf = name: script: if environment ? name then script else "";
in
yarn2nix-moretea.mkYarnPackage 
  (rec {
    pname = "workadventurefront";
    version = "unstable";

    # TODO: perhaps move this into its own file, to make it easily
    # replacable across all workadventure packages.
    src = "${workadventuresrc}/front";

    # NOTE: this is optional and generated dynamically if omitted
    yarnNix = ./yarn.nix;

    nativeBuildInputs = [
      makeWrapper
      # includes `replace-literal` for patching. This command is
      # actually the basis for `substituteInPlace`!
      replace
    ];

    dontStrip = true;

    patchPhase = ''
      # remove google tag manager
      replace-literal -efsw '<script async src="https://www.googletagmanager.com/gtag/js?id=UA-10196481-11"></script>' ' ';
      # remove quill js cdn
      replace-literal -efsr -x .ts 'fileref.setAttribute("href", "https://cdn.quilljs.com/1.3.7/quill.snow.css");' ' ';
      replace-literal -efsr '"@types/quill": "^1.3.7",' ' ';
      replace-literal -efsr '"quill": "^1.3.7",' ' ';
    ''
    + envIf "RESOLUTION" ''replace-literal -efsr -x .ts 'const RESOLUTION = 2' 'const RESOLUTION = ${environment.RESOLUTION}' ''
    + envIf "ZOOM_LEVEL" ''replace-literal -efsr -x .ts 'const ZOOM_LEVEL = 1' 'const ZOOM_LEVEL = ${environment.ZOOM_LEVEL}' ''
    + envIf "POSITION_DELAY" ''replace-literal -efsr -x .ts 'const POSITION_DELAY = 200' 'const POSITION_DELAY = ${environment.POSITION_DELAY}' ''
    + envIf "MAX_EXTRAPOLATION_TIME" ''replace-literal -efsr -x .ts 'const MAX_EXTRAPOLATION_TIME = 100' 'const MAX_EXTRAPOLATION_TIME = ${environment.MAX_EXTRAPOLATION_TIME}' '';

    buildPhase = ''
      mkdir -p $out
      ln -s ${workadventure.messages.outPath}/generated deps/${pname}/src/Messages/generated
      HOME=$TMPDIR yarn --offline run build
      cp -r deps/${pname}/dist/ $out/
    '';

    distPhase = ":";
    installPhase = ":";
  } // environment)