當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript service.OrgService.settings方法代碼示例

本文整理匯總了TypeScript中@eg/core/org.service.OrgService.settings方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.OrgService.settings方法的具體用法?TypeScript service.OrgService.settings怎麽用?TypeScript service.OrgService.settings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@eg/core/org.service.OrgService的用法示例。


在下文中一共展示了service.OrgService.settings方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: loadStartupData

    /**
     * Fetches data common to all staff interfaces.
     */
    loadStartupData(): Promise<void> {

        // Fetch settings needed globally.  This will cache the values
        // in the org service.
        return this.org.settings([
            'lib.timezone',
            'webstaff.format.dates',
            'webstaff.format.date_and_time',
            'ui.staff.max_recent_patrons'
        ]).then(settings => {
            this.format.wsOrgTimezone = settings['lib.timezone'];
            this.format.dateFormat = settings['webstaff.format.dates'];
            this.format.dateTimeFormat = settings['webstaff.format.date_and_time'];
        });
    }
開發者ID:jamesrf,項目名稱:Evergreen,代碼行數:18,代碼來源:resolver.service.ts

示例2: ngOnInit

    ngOnInit() {
        this.org.settings('sms.enable').then(sets => {
            this.smsEnabled = sets['sms.enable'];
            if (!this.smsEnabled) { return; }

            this.pcrud.search('csc', {active: 't'}, {order_by: {csc: 'name'}})
            .subscribe(carrier => {
                this.smsCarriers.push({
                    id: carrier.id(),
                    label: carrier.name()
                });
            });
        });

        this.fetchHold();
    }
開發者ID:StephenGWills,項目名稱:Evergreen,代碼行數:16,代碼來源:manage.component.ts

示例3: ngOnInit

    ngOnInit() {

        this.locale.supportedLocales().subscribe(
            l => this.locales.push(l),
            err => {},
            () => {
                this.currentLocale = this.locales.filter(
                    l => l.code() === this.locale.currentLocaleCode())[0];
            }
        );

        // NOTE: this can eventually go away.
        // Avoid attempts to fetch org settings if the user has not yet
        // logged in (e.g. this is the login page).
        if (this.user()) {
            this.org.settings('ui.staff.angular_catalog.enabled')
            .then(settings => this.showAngularCatalog =
                Boolean(settings['ui.staff.angular_catalog.enabled']));
        }
    }
開發者ID:StephenGWills,項目名稱:Evergreen,代碼行數:20,代碼來源:nav.component.ts

示例4: ngOnInit

    ngOnInit() {

        this.holdType = this.route.snapshot.params['type'];
        this.holdTargets = this.route.snapshot.queryParams['target'];

        if (!Array.isArray(this.holdTargets)) {
            this.holdTargets = [this.holdTargets];
        }

        this.holdTargets = this.holdTargets.map(t => Number(t));
        this.holdFor = 'patron';
        this.requestor = this.auth.user();
        this.pickupLib = this.auth.user().ws_ou();

        this.holdContexts = this.holdTargets.map(target => {
            const ctx = new HoldContext(target);
            return ctx;
        });

        this.getTargetMeta();

        this.org.settings('sms.enable').then(sets => {
            this.smsEnabled = sets['sms.enable'];
            if (!this.smsEnabled) { return; }

            this.pcrud.search('csc', {active: 't'}, {order_by: {csc: 'name'}})
            .subscribe(carrier => {
                this.smsCarriers.push({
                    id: carrier.id(),
                    label: carrier.name()
                });
            });
        });

        setTimeout(() => // Focus barcode input
            this.renderer.selectRootElement('#patron-barcode').focus());
    }
開發者ID:StephenGWills,項目名稱:Evergreen,代碼行數:37,代碼來源:hold.component.ts


注:本文中的@eg/core/org.service.OrgService.settings方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。