File size: 2,774 Bytes
30e9731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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
/* Copyright 2020 Google LLC. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/




window.makeGS = function(){
  var gs = {}

  var bodySel = d3.select('body')

  var prevSlideIndex = -1
  function updateSlide(i){
    var slide = slides[i]
    if (!slide) return

    gs.prevSlide = gs.curSlide
    gs.curSlide = slide

    var dur = gs.prevSlide ? 500*1 : 0

    sel.personSel.transition().duration(dur)
      .translate(d => d.pos[slide.pos])

    sel.textSel.transition().duration(dur)
      .at({fill: slide.textFill})


    sel.rectSel.transition('opacity').duration(dur)
      .at({opacity: slide.rectOpacity})

    if (!slide.animateThreshold){
      sel.rectSel.transition('fill').duration(dur)
        .at({fill: slide.rectFill})

      sel.textSel.transition('stroke').duration(dur)
        .st({strokeWidth: slide.textStroke})

      slider.setSlider(slide.threshold, true)
      bodySel.transition('gs-tween')
    } else {
      sel.rectSel.transition('fill').duration(dur)
      sel.textSel.transition('stroke').duration(dur)

      bodySel.transition('gs-tween').duration(dur*2)
        .attrTween('gs-tween', () => {
          var i = d3.interpolate(slider.threshold, slide.threshold)

          return t => {
            slider.setSlider(i(t))
          }
        })
    }


    sel.truthAxis.transition().duration(dur)
      .st({opacity: slide.truthAxisOpacity})

    sel.mlAxis.transition().duration(dur)
      .st({opacity: slide.mlAxisOpacity})

    sel.fpAxis.transition().duration(dur)
      .st({opacity: slide.fpAxisOpacity})

    sel.sexAxis.transition().duration(dur)
      .st({opacity: slide.sexAxisOpacity})

    sel.brAxis.transition().duration(dur)
      .st({opacity: slide.brAxisOpacity})

    sel.botAxis.transition().duration(dur)
      .translate(slide.botAxisY, 1)


    prevSlideIndex = i
    slides.curSlide = slide
  }

  gs.graphScroll = d3.graphScroll()
    .container(d3.select('.container-1'))
    .graph(d3.selectAll('container-1 #graph'))
    .eventId('uniqueId1')
    .sections(d3.selectAll('.container-1 #sections > div'))
    .offset(innerWidth < 900 ? 300 : 520)
    .on('active', updateSlide)

  return gs
}





if (window.init) window.init()