• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

uw-it-aca / myuw / 3971673120

pending completion
3971673120

Pull #2892

github

GitHub
Merge 9201ce7aa into a9bd5fe92
Pull Request #2892: Fea/muwm 5199

39 of 39 new or added lines in 6 files covered. (100.0%)

16955 of 18500 relevant lines covered (91.65%)

7.66 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/myuw_vue/components/teaching/course/materials.vue
1
<template>
×
2
  <uw-card-property-group>
3
    <uw-card-property title="Course Materials">
4
      <a v-if="section.myuwclass_url" :href="section.myuwclass_url">
5
        <img :src="`${staticUrl}images/myuwclasslink.gif`" width="67px" height="24px" />
6
      </a>
7
      <ul class="mb-0 list-unstyled">
8
        <li class="mb-1"><uw-teach-website :section="section" /></li>
9
        <li class="mb-1"><uw-teach-email-list :section="section" /></li>
10
        <li class="mb-1"><uw-teach-canvas :section="section" /></li>
11
        <li v-if="!section.mini_card" class="mb-1">
12
          <uw-fut-qua-textbook v-if="section.futureTerm" :section="section" />
13
          <uw-teach-textbook v-else :section="section" />
14
        </li>
15
      </ul>
16
    </uw-card-property>
17
  </uw-card-property-group>
18
</template>
19

20
<script>
21
import { mapState } from 'vuex';
×
22
import Canvas from './materials/canvas.vue';
×
23
import Website from './materials/website.vue';
×
24
import EmailList from './materials/email-list.vue';
×
25
import Textbook from './materials/textbook.vue';
×
26
import FQTextbook from './materials/futureq-textbook.vue';
×
27
import CardPropertyGroup from '../../_templates/card-property-group.vue';
×
28
import CardProperty from '../../_templates/card-property.vue';
×
29

30
export default {
31
  components: {
32
    'uw-card-property-group': CardPropertyGroup,
33
    'uw-card-property': CardProperty,
34
    'uw-teach-canvas': Canvas,
35
    'uw-teach-website': Website,
36
    'uw-teach-email-list': EmailList,
37
    'uw-fut-qua-textbook': FQTextbook,
38
    'uw-teach-textbook': Textbook,
39
  },
40
  props: {
41
    section: {
42
      type: Object,
43
      required: true,
44
    },
45
  },
46
  computed: {
47
    ...mapState({
48
      staticUrl: (state) => state.staticUrl,
×
49
    }),
50
  },
51
};
×
52
</script>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc