add-source-popup-old.php
4 weeks ago
add-source-popup.php
4 weeks ago
confirm-dialog-popup.php
4 weeks ago
embed-popup.php
4 weeks ago
extensions-popup.php
4 weeks ago
feedtemplates-popup.php
4 weeks ago
feedtypes-popup.php
4 weeks ago
index.php
4 weeks ago
install-plugin-popup.php
4 weeks ago
onboarding-customizer-popup.php
4 weeks ago
onboarding-popup.php
4 weeks ago
source-instances.php
4 weeks ago
temp-login-about.php
4 weeks ago
source-instances.php
70 lines
| 1 | <div class="sb-fs-boss cff-fb-center-boss" v-if="viewsActive.instanceSourceActive != null"> |
| 2 | <div class="cff-fb-popup-inside cff-fb-popup-feedinst"> |
| 3 | <div class="cff-fb-popup-cls" @click.prevent.default="switchScreen('instanceSourceActive', null)"><svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 4 | <path d="M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z" fill="#141B38"/> |
| 5 | </svg> |
| 6 | </div> |
| 7 | <div class="cff-fb-source-top cff-fb-fs"> |
| 8 | <h3>{{viewsActive.instanceSourceActive.username}}</h3> |
| 9 | <div class="cff-fb-fdinst-type sb-small">{{viewsActive.instanceSourceActive.account_type}}</div> |
| 10 | </div> |
| 11 | <div class="cff-fb-inst-tbl-ctn cff-fb-fs"> |
| 12 | <table aria-hidden="true"> |
| 13 | <thead class="cff-fd-lst-thtf cff-fd-lst-thead"> |
| 14 | <tr> |
| 15 | <th> |
| 16 | <span class="sb-caption sb-lighter">{{genericText.feedName}}</span> |
| 17 | </th> |
| 18 | <th> |
| 19 | <span class="sb-caption sb-lighter">{{genericText.id}}</span> |
| 20 | </th> |
| 21 | <th> |
| 22 | <span class="sb-caption sb-lighter">{{genericText.shortcodeText}}</span> |
| 23 | </th> |
| 24 | <th></th> |
| 25 | </tr> |
| 26 | </thead> |
| 27 | <tbody class="cff-fd-lst-tbody"> |
| 28 | <tr v-for="(instance, instanceIndex) in viewsActive.instanceSourceActive.instances"> |
| 29 | <td><a :href="cff_settings.builderUrl+'&feed_id=' + instance.id" class="cff-fd-lst-name sb-small-p sb-bold">{{instance.feed_name}}</a></td> |
| 30 | <td><span class="cff-fd-lst-shortcode sb-caption sb-lighter">{{instance.id}}</span></td> |
| 31 | <td> |
| 32 | <div class="cff-fb-inst-tbl-shrtc"> |
| 33 | <div class="sb-flex-center"> |
| 34 | <span v-if="instance.id !== 'legacy'" class="cff-fd-lst-shortcode sb-caption sb-lighter" v-html="'[custom-facebook-feed feed='+instance.id+']'"></span> |
| 35 | <span v-if="instance.id === 'legacy'" class="cff-fd-lst-shortcode sb-caption sb-lighter" v-html="'[custom-facebook-feed]'"></span> |
| 36 | |
| 37 | <div class="cff-fd-lst-shortcode-cp cff-fd-lst-btn cff-fb-tltp-parent"> |
| 38 | <div class="cff-fb-tltp-elem"><span>{{(genericText.copy +' '+ genericText.shortcode).replace(/ /g," ")}}</span></div> |
| 39 | <div v-html="svgIcons['copy']" @click.prevent.default="copyToClipBoard('[custom-facebook-feed feed='+instance.id+']')"></div> |
| 40 | </div> |
| 41 | </div> |
| 42 | </div> |
| 43 | </td> |
| 44 | <td> |
| 45 | <a :href="cff_settings.builderUrl+'&feed_id=' + instance.id" class="cff-fd-lst-btn sb-button-no-border sb-icon-small sb-dark-hover"> |
| 46 | <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 47 | <path d="M1.3332 0L0.158203 1.175L3.97487 5L0.158203 8.825L1.3332 10L6.3332 5L1.3332 0Z" fill="#8C8F9A"/> |
| 48 | </svg> |
| 49 | </a> |
| 50 | </td> |
| 51 | </tr> |
| 52 | </tbody> |
| 53 | <tfoot class="cff-fd-lst-thtf cff-fd-lst-tfoot"> |
| 54 | <tr> |
| 55 | <td> |
| 56 | <span class="sb-caption sb-lighter">{{genericText.feedName}}</span> |
| 57 | </td> |
| 58 | <td> |
| 59 | <span class="sb-caption sb-lighter">{{genericText.id}}</span> |
| 60 | </td> |
| 61 | <td> |
| 62 | <span class="sb-caption sb-lighter">{{genericText.shortcodeText}}</span> |
| 63 | </td> |
| 64 | <td></td> |
| 65 | </tr> |
| 66 | </tfoot> |
| 67 | </table> |
| 68 | </div> |
| 69 | </div> |
| 70 | </div> |