Skip to content
Snippets Groups Projects
Select Git revision
  • 38451e87d752c465d86585920f48aa94667cfb19
  • main default protected
  • studip-rector
  • ci-opt
  • course-members-export-as-word
  • data-vue-app
  • pipeline-improvements
  • webpack-optimizations
  • rector
  • icon-renewal
  • http-client-and-factories
  • jsonapi-atomic-operations
  • vueify-messages
  • tic-2341
  • 135-translatable-study-areas
  • extensible-sorm-action-parameters
  • sorm-configuration-trait
  • jsonapi-mvv-routes
  • docblocks-for-magic-methods
19 results

SQLQuery.php

Blame
  • Forked from Stud.IP / Stud.IP
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CoursewareDateInput.vue 1.19 KiB
    <template>
        <input :value="formattedDate" @input="onInput" type="date" :min="formattedMinDate" />
    </template>
    
    <script>
    const fromISO8601 = (string) => new Date(string);
    const toISO8601 = (date) => date.toISOString();
    const pad = (what, length = 2) => `00000000${what}`.substr(-length);
    
    export default {
        props: ['value', 'min'],
        data: () => ({
            date: new Date(),
            submissionDate: new Date()
        }),
        computed: {
            formattedDate() {
                return `${this.date.getFullYear()}-${pad(this.date.getMonth() + 1)}-${pad(this.date.getDate())}`;
            },
            formattedMinDate() {
                return `${this.submissionDate.getFullYear()}-${pad(this.submissionDate.getMonth() + 1)}-${pad(this.submissionDate.getDate())}`;
            }
        },
        methods: {
            onInput({ target }) {
                const newValue = toISO8601(target.valueAsDate);
                if (newValue !== this.value) {
                    this.$emit('input', newValue);
                }
            },
        },
        beforeMount() {
            if (this.value) {
                this.date = fromISO8601(this.value);
            }
            if (this.min) {
                this.submissionDate = fromISO8601(this.min);
            }
        },
    };
    </script>